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

    -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}



body,html {
    /* 🌟 SOLID DEEP SPACE DARK: Aapka real matching canvas line theme */
    background: linear-gradient(
       135deg,   
        #1b190c 0%,
        #1C1C1C 10%,
        #1C1C1C 55%, 
        #1C1C1C 90%,
        #332E16 100% 
    );
    /* background: #1C1C1C; */
    color: #ffffff;
    margin: 0;
    padding: 0;
     font-family: 'SF Pro Display', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    /* overflow-x: hidden; */
}




/* --- नियोब्रूटलिज्म थीम प्रीलोडर बार --- */
#bh-preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px; /* आपकी पसंद की ऊंचाई */
    background-color: #ffae00; /* आपकी वेबसाइट का पीला रंग */
    width: 0%; /* शुरुआत में 0% रहेगी */
    z-index: 99999; /* यह पक्का करेगा कि बार सबसे ऊपर दिखे */
    transition: width 0.4s ease-out, opacity 0.3s ease-in-out; /* स्मूथ एनीमेशन के लिए */
    box-shadow: 0 0 8px rgba(255, 174, 0, 0.5); /* हल्का सा ग्लो इफ़ेक्ट */
}








/* ==========================================
   NAVBAR
========================================== */

nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1300;
    padding: 10px 0;
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid var(--border); */

    transition:
        width .5s ease,
        border-radius .5s ease,
        margin-top .5s ease,
        background .5s ease,
        box-shadow .5s ease;

    will-change: transform, width, border-radius;
}

nav.scrolled {
    width: 100%;
    /* margin-top: 10px; */


   /* background: linear-gradient(
       135deg, 
        #040525 0%,   
        #1f0000 35%,  
        #866300 90%, 
        #ffae00 100% 
    ); */
    background: rgba(66, 66, 66, 0.692);
    border: 1px solid var(--border-strong);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
    backdrop-filter: blur(15px);
}

.nav-container {
    width: 97%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================
   LOGO
========================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}


.hi-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.3s ease;
}


.logo-text {
    /* Arial हर डिवाइस में पहले से होता है, इसलिए यह बिना इंटरनेट के तुरंत लोड होगा */
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 26px;
    font-weight: 800 !important; /* एक्स्ट्रा ब्लैक/बोल्ड लुक */
    letter-spacing: -1px; /* अक्षरों को पास लाकर प्रीमियम लुक के लिए */

    /* आपका टेक्स्ट क्लिप इफेक्ट */
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.dropdown-trigger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    font-size: 1rem;

    color: white;
    text-decoration: none;

    border: 1px solid transparent;

    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-dropdown-item:hover .dropdown-trigger-link {
    background:#ffffff;
    color: #04261d;
    transform: translateY(-1px -1px);
    box-shadow: 3px 3px #ffae00;
}

.nav-links a.active {
    background: #ffae00;
    color: #1d0f3d;
    pointer-events: none;
    box-shadow: 3px 3px #ffffff;
}

/* ==========================================
   DROPDOWN
========================================== */

.nav-dropdown-item {
    position: relative;
}

.dropdown-trigger-link {
    cursor: pointer;
    user-select: none;
}

.dropdown-arrow-icon {
    margin-left: 8px;
    font-size: 10px;
    color: white;
    transition: 0.3s ease;
}

.nav-dropdown-item.active .dropdown-arrow-icon {
    transform: rotate(180deg);
    color: black;
}

.nav-dropdown-item:hover .dropdown-arrow-icon {
    transform: rotate(180deg);
    color: black;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    width: 150px !important;
    padding: 12px 0 !important;

    list-style: none;

    opacity: 0;
    visibility: hidden;

    background: rgba(77, 77, 77, 0.103);
    backdrop-filter: blur(25px);

    border: 1px solid var(--text-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;

    gap: 500px !important;
}

.nav-dropdown-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 6px !important;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4 !important;

    transition: 0.3s ease;
    width: 90%;
    margin: 0 auto;
}
.nav-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.nav-dropdown-menu li a:hover {
    color: black;

}

.nav-clock {
    color: #ffae00; /* Aap apni website ke theme color ke mutabik badal sakte hain */
    font-weight: bold;
    font-size: 20px;
    padding: 0 5px;
    font-variant-numeric: tabular-nums; /* Isse numbers shift nahi honge ticker chalne par */
}

/* Mobile menu ke clock ki styling */
.nav-clock-mobile {
    color: #ffae00;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    padding-left: 20px; /* Baki menu links ki padding se align karne ke liye */
}

/* ==========================================
   MOBILE HAMBURGER BUTTON
========================================== */

.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 1px 1px #ffffff4c;

    z-index: 1300;
    transition: all 0.3s ease;
}



.mobile-menu-btn span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ffae00;
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background:#ffae00;
}

/* ==========================================
   MOBILE DRAWER
   z-index order: overlay < drawer < navbar < hamburger button
========================================== */

.mobile-nav {
    position: fixed;
    top: 0px !important;
    right: -100vw;
    left: auto !important;
    width: 50%;
    max-width: 85%;
    height: calc(100vh - 0px) !important;

    z-index: 1200;

    background: #1C1C1C !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border-left: 1px solid #ffae00b6;
    box-shadow: -15px 10px 40px rgba(0, 0, 0, 0.658);
    transition: right 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    pointer-events: none;
    padding-top: 40px !important;
    overflow-y: auto;
}



.mobile-nav.active {
    right: 0 !important;
    pointer-events: auto !important;
    transform: translateX(0%);
}

.mobile-nav .mobile-nav-links-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding-top: 70px !important;
    margin: 0 !important;
    width: 100%;
    list-style: none;
}

.mobile-nav .mobile-nav-links-list li {
    width: 100% !important;
    text-align: center !important;
    opacity: 0;
    transform: translateX(25px) !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav.active .mobile-nav-links-list li {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.mobile-nav.active .mobile-nav-links-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(5) { transition-delay: 0.24s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(6) { transition-delay: 0.28s; }
.mobile-nav.active .mobile-nav-links-list li:nth-child(7) { transition-delay: 0.32s; }

.mobile-nav .mobile-nav-links-list a {
    font-size: 19px !important;
    font-weight: bold !important;
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
    padding: 4px 10px !important;
    /* border-radius: 50px !important; */
    background: transparent !important;
    border: 1.5px solid transparent !important;
    display: inline-block !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.mobile-nav .mobile-nav-links-list a:not(.active):hover {
    color: black !important;
    background: #ffffff !important;
    box-shadow: 3px 3px #ffae00 !important;
}

.mobile-nav .mobile-nav-links-list a.active {
    color: black !important;
    background: #ffae00 !important;
    box-shadow: 3px 3px #ffffff !important;
}

.mobile-nav-overlay {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 65px);

    background: rgba(2, 4, 8, 0.55) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.mobile-nav-lock {
    touch-action: none !important;
}

/* ==========================================
   BACKGROUND DECORATION
========================================== */

/* =======================================================
   BACKGROUND PARTICLES & GEOMETRIC SHAPES STYLING
   ======================================================= */

/* Container Setup: Taaki shapes section se bahar na bhaagein */
.bg-particle-and-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Content ke peeche rahega */
    pointer-events: none; /* Mouse clicks ko block nahi karega */
}

/* Ensure main section content stays on top */


/* --- Geometric Ambient Glow Shapes --- */
.geo-shape {
    position: absolute;
    /* NAYA BADLAAV: Shape ko halka irregular (Blob) banaya taaki rotation perfectly visible ho */
    border-radius: 43% 57% 51% 49% / 41% 45% 55% 59%; 
    filter: blur(10px);       /* BADLAAV: Blur ko aur kam karke 20px kiya taaki shapes ekdum crisp aur solid dikhein */
    opacity: 0.15;            /* Opacity ko 28% kiya taaki chamak barkarar rahe */
    mix-blend-mode: screen;
    z-index: 1;               
}

/* Shape 1: Top Left Glowing Orb */
/* Shape 1: Top-Left Organic Blob */
.geo-1 {
    top: 60%;                  
    left: 20%;                
    width: 240px;             
    height: 240px;
    border-radius: 43% 57% 51% 49% / 41% 45% 55% 59%;
    background: linear-gradient(135deg, #ffae00, #ff7b00); 
    animation: continuousRotate 12s linear infinite; 
}

/* Shape 2: Top-Right Rounded Square */
.geo-2 {
    top: 8%;                  
    right: 5%;               
    width: 300px;             
    height: 300px;
    border-radius: 30%;         
    background: linear-gradient(135deg, #ff7b00, #ff0055);
    animation: continuousRotateReverse 18s linear infinite; 
}

/* Shape 3: BADLAAV - Top-Right se halka neeche align kiya hai */
.geo-3 {
    top: 2%;                 /* BADLAAV: 8% se badha kar 35% kiya taaki ye geo-2 se halka neeche dikhe */
    left: 7%;                /* Halka sa andar side kiya taaki depth mile */
    width: 230px;             /* Size thoda chota kiya taaki layers cool lagein */
    height: 230px;
    border-radius: 30%;         
    background: linear-gradient(135deg, #ff0055, #7000ff); /* NAYA RANG: Isme purple touch diya hai premium look ke liye */
    animation: continuousRotate 15s linear infinite; /* Ise clockwise ghumaya hai mix pattern ke liye */
}
@keyframes continuousRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Ulta Ghumne Ke Liye (Anti-Clockwise) */
@keyframes continuousRotateReverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* --- Floating Particles System --- */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffae00;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px #ffae00, 0 0 20px #ff7b00;
    animation: floatUp 8s linear infinite;
}

/* Staggering Particles (Har particle ko alag position aur smooth delay dena) */
.particle:nth-child(1)  { left: 10%;  animation-delay: 0s;   animation-duration: 7s;  width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 25%;  animation-delay: 1.5s; animation-duration: 9s;  width: 5px; height: 5px; }
.particle:nth-child(3)  { left: 40%;  animation-delay: 0.5s; animation-duration: 8s;  width: 2px; height: 2px; }
.particle:nth-child(4)  { left: 55%;  animation-delay: 3s;   animation-duration: 11s; width: 4px; height: 4px; }
.particle:nth-child(5)  { left: 70%;  animation-delay: 2s;   animation-duration: 7.5s;width: 3px; height: 3px; }
.particle:nth-child(6)  { left: 85%;  animation-delay: 4.5s; animation-duration: 10s; width: 5px; height: 5px; }
.particle:nth-child(7)  { left: 95%;  animation-delay: 1s;   animation-duration: 6.5s;width: 2px; height: 2px; }
.particle:nth-child(8)  { left: 18%;  animation-delay: 5s;   animation-duration: 12s; width: 4px; height: 4px; }
.particle:nth-child(9)  { left: 33%;  animation-delay: 2.5s; animation-duration: 8.5s;width: 3px; height: 3px; }
.particle:nth-child(10) { left: 48%;  animation-delay: 6s;   animation-duration: 10.5s;width: 5px; height: 5px; }
.particle:nth-child(11) { left: 63%;  animation-delay: 3.5s; animation-duration: 7s;  width: 2px; height: 2px; }
.particle:nth-child(12) { left: 78%;  animation-delay: 1.8s; animation-duration: 9.5s;width: 4px; height: 4px; }
.particle:nth-child(13) { left: 90%;  animation-delay: 5.5s; animation-duration: 11.5s;width: 3px; height: 3px; }

/* --- HIGH PERFORMANCE ANIMATIONS (Using transforms only) --- */

/* Deep Glowing Orbs Animation */
@keyframes ambientFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(30px) scale(1.1) rotate(10deg);
    }
}

/* Dust Particles Floating Up Animation */
@keyframes floatUp {
    0% {
        transform: translateY(105vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6; /* Beech me thoda visible hoga */
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-5vh) scale(1.2);
        opacity: 0; /* Top par jaakar smoothly fade out ho jayega */
    }
}

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

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 100px 0 40px; */
    width: 100%;
    position: relative;
    margin-top: 0px;
}

/* .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(109, 240, 201, 0.16) 0%, transparent 50%);
    pointer-events: none;
} */

.photo-hero {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 93%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;

}

.hero-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    z-index: 10;
    margin: 0;
    margin-top: -300px;


}

.hero-content h1 {
    font-size: 110px; /* नाम को और बड़ा किया */
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    line-height: 0.95;
    color: #fff;
    text-transform: capitalize;
    white-space: nowrap; /* नाम को एक ही लाइन में रखने के लिए ताकि ओवरलैप बढ़िया दिखे */
    position: relative;
    z-index: 11;
    margin-bottom: 10px;
}

.hero-content .subtitle {
    font-size: 35px;
    color: #ffae00;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 25px;
}

.hero-content p {
    color: white;
    font-size: 22px;
    line-height: 2.2rem;
    margin-bottom: 2rem;
    max-width: 680px;
    letter-spacing: 0.3px;
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    font-size: 18px;
}

.cta-primary {
    background: #ffae00;
    color: black;
    border: 1px solid #ffae00;
}

.cta-primary:hover {
    transform: translateY(-2px);
    background: transparent;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-secondary {
    background:transparent ;
    color: white;
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(20px);
}

.cta-secondary:hover {
    border: 1px solid #ffae00;
    transform: translateY(-2px);
    color: #ffae00;
}

.stats-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.stat-card {
    background:transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    min-width: 120px;
    transition: 0.3s ease;
}

.stat-card:hover {
    border: 1px solid #ffae00;
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}
.stat-card:hover .stat-number{
    color: #ffae00;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.726);
}
.stat-card:hover .stat-label{
    color: #ffae00;
}





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

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
    position: relative;

    width: 95%;
    top: 160px;
}

.social-media a {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

    background: white;
    border: 1px solid black;


    font-size: 28px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 5px 5px #ffae00;
}

.social-media a:hover {
    color: #ffae00;
    background: transparent;
    border: 1px solid #ffae00;
    /* transform: translateY(-3px); */
    box-shadow: 3.5px 3.5px #ffae00;
}
.social-media-logoo{
    width: 69px;
}

.star-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;

    

}

.star-btn a {
    text-decoration: none;
    padding: 14px 30px;

    background: linear-gradient(
        135deg,
        #ffae00,
        #f87000
    );
    border: 1px solid black;

    color: black;
    font-size: 18px;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: 0.05em;

    transition: all 0.1s ease;

    box-shadow: 6px 6px #ffffff;
}

.star-btn a:hover {
    /* transform: translateY(-3px) scale(1.02); */
    background: linear-gradient(
        135deg,
        #f87000,
        #ffae00
    ); 
    box-shadow: 4px 4px #ffffff;
    border: 1px solid black;
}




/* ==========================
   WHAT I DO SECTION
========================== */
/* ==========================
   WHAT I DO SECTION
========================== */

#What-i-do{
    width: 100%;
    position: relative;
    overflow: visible !important;
}

#What-i-do .container{
    width: 90%;
    max-width: none;
    margin: auto;


}

/* ==========================
   SECTION HEADER
========================== */

.section-header{
    text-align: center;
    width: 96%;
    margin: 0 auto;
}

.section-title{
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after{
    content: "";
    display: block;
    width: 60%;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #ffae00,
        #ff7b00
    );
}

.section-subtitle{
    max-width: none;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
    
    color: rgba(255,255,255,0.8);
    width: 100%;
}

/* what ido section */
.ido-conatainer h1 {
    color: #ffae00;
    text-align: center;
    font-size: 50px;

    margin-bottom: 60px;
    margin-top: 100px; 

}
.naames{
    border: 1px solid rgba(255, 255, 255, 0.162);
    width: fit-content;
    margin: 0 auto;
    padding:  10px 20px;
    box-shadow: 3px 3px #ffffff;
   
}

.ido-conatainer, .os-layout-wrapper {
    position: relative;
    z-index: 2;
}
.os-layout-wrapper{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;

    width: 94% !important;
    max-width: 1600px !important;
    margin: 0 auto ;

padding: 40px;
    
}
.os-layout-wrapper.reverse{
    flex-direction: row-reverse;
}


/* Poore left block ko screen ke left me stretch na hone dene ke liye width set ki hai */
.logos-image {
    flex: 1;
    background: transparent;
    width: 100%; /* Baad me jab right side banaoge, toh ye 50% perfect kaam karega */
    display: flex;
    flex-direction: column; /* Logos upar aur Image neeche lane ke liye */
    align-items: center; /* Sab kuch left me align rakhne ke liye */
    justify-content: center;
    
}

/* Logos ka horizontal box */
.all-logo-box {
    display: flex;
    flex-wrap: wrap; /* Agar logos zyada hon toh automatically next line me aa jayein */
    align-items: center;
    justify-content: center; /* Logos ko left se shuru karega */
    gap: 50px;
    width: 100%;
    margin-bottom: 20px; 
}

.logo-item {
    display: flex;
    flex-direction: column; /* एलिमेंट्स ऊपर से नीचे रहेंगे (लोगो फिर टेक्स्ट) */
    align-items: center;
    justify-content: center;
   
    width: 90px; /* बॉक्स को बड़ा/छोटा करने के लिए सिर्फ इस वैल्यू को बदलें */
    aspect-ratio: 1 /1.2; /* यह बॉक्स के अनुपात को परफेक्ट वर्टिकल रेक्टेंगल रखेगा */
    
    transition: all 0.2s ease;
    box-sizing: border-box;

    
}
.logo-item:hover {
    transform: translateY(-4px);
    /* border-color: #ffae00;
    box-shadow: 0 8px 20px rgba(255, 174, 0, 0.2); */
}
.logo-text-flag {
    font-size: 18px;
    color: #ffae00;
    text-align: center;
    font-weight: bold;
    display: block; /* Text ko logo ke neeche lane ke liye */
    margin-top: 0px;
}
.logo-bg-shape {
    width: 100%; /* बॉक्स की कुल चौड़ाई का 70% हिस्सा लेगा */
    aspect-ratio: 1 / 1; /* परफेक्ट गोल या चौकोर रखने के लिए */
    display: flex;
    justify-content: center;
    align-items: center;
   
    background: transparent;
    box-shadow: 4px 4px #ffae00;
    margin-bottom: 8px; /* नीचे वाले टेक्स्ट से दूरी */
    border:1.5px solid black;
    
}
.logo-item:hover .logo-bg-shape {
      box-shadow: 4px 4px #ffffff;
      border:1.5px solid black;
}
.logo-bg-shape img{
    width: 100%; 
    height: 100%;
    object-fit: contain; 
    display: block;
    background: #ffffff;
}

/* Image Box jo logos ke neeche hai */
.services-image-box {
    width: 100%;
    max-width: auto; /* Image ka size control karne ke liye */
    margin-top: 10px;
    
}

.services-image-box img {
    width: 100%; /* Box ke hisab se auto-adjust hoga */
    height: auto;
    display: block;
}

/* =======================================================
   YAHAN SE AAPKA NAYA LAYOUT AUR RIGHT SIDE CARDS CODE HAI
   ======================================================= */

/* Main Flex Wrapper - Jo Left side aur Right side dono ki height barabar rakhega */
.os-layout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Left aur Right boxes ki height hamesha equal rahegi */
    max-width: 94%;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

/* Right Side Cards Wrapper (2x2 Grid Layout) */
.services-right-cards {
    flex: 1;
    max-width: 45%; 
    display: grid;
    grid-template-columns: 1fr;           /* BADLAAV: Ab 1 row me sirf 1 hi card aayega */
    grid-template-rows: repeat(4, 1fr);   /* BADLAAV: 4 rows banengi jo left height me barabar fit ho jayengi */
    gap: 15px;                            /* Gap thoda kam kiya taaki vertical height me easily adjust ho sake */
}

/* Premium Tech Card Style */
.service-card {
    background: rgba(255, 255, 255, 0.04); 
    border: 1px solid #ffffff82;

    padding: 20px 25px; 
    display: flex;
    flex-direction: column; /* Element upar se neeche flow karenge: Header -> Para -> Tag */
    justify-content: space-between; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;

    box-shadow: 6px 6px #ffae00;
}
.card-top-bar {
    display: flex;
    justify-content: space-between; /* Heading left me aur Icon right me push ho jayega */
    align-items: center; /* Dono vertically ek barabar line me rahenge */
    width: 100%;
    margin-bottom: 12px; /* Paragraph se gap */
}
/* Card Glow and Lift Effect on Hover */
.service-card:hover {
    box-shadow: 3.5px 3.5px #ffffff;
    transform: translateY(-1px);
}

/* Tech Icon Glow Styles */
.service-icon {
    font-size: 22px;
    color: #ffae00;
    background: rgba(255, 174, 0, 0.06);
    width: 44px;
    height: 44px;
    min-width: 44px; /* Icon dbe nahi isliye fixed width */
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: 0.3s ease;
    border:1px solid #ffae009e;
}

.service-card:hover .service-icon {
    background: #ffffff;
    color: black;
   border: 1px solid black;
}

/* Card Titles */
.service-card h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 600;
    font-family: sans-serif;
}

/* Card Descriptions */
.service-card p {
    color: rgba(255, 255, 255, 0.836);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 1.1px;
    margin-bottom: 25px;
}

/* Card Badges / Bottom Tags */
.service-tag {
    align-self: flex-start;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color:black;
    background: #ffae00;
    padding: 4px 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 174, 0, 0.15);
    box-shadow: 2px 2px #ffffff;
}

/* Mobile Responsive Setup (Media Queries) */
@media (max-width: 768px) {
     .os-layout-wrapper,
    .os-layout-wrapper.reverse {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        gap: 40px; /* Image aur cards section ke beech */
    }

    .logos-image,
    .services-right-cards {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .services-right-cards {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px; /* ← Cards ke beech ka gap */
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding: 18px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
}









/* ==========================================
   FOOTER
========================================== */
/* Base Footer Styling */
.professional-footer {
    background-color: #1C1C1C; /* Premium Dark Slate Blue */
    color: #cbd5e1;
    /* font-family: 'Segoe UI', Roboto, sans-serif; */
    padding: 40px 0 0 0;
    margin-top: 40px;

    border-top:1px solid #64748b9c;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;

    width: 90%;
}

/* Column Elements */
.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

/* Underline effect for headers */
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: #ffae00; /* Modern Blue Accent */
}

.footer-logo {
    color: #ffae00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffffc0;
}


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

.social-links a {
    color: #94a3b8;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffae00;
    transform: translateY(-1px);
}

/* Links Layout */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    /* transition: color 0.3s ease, padding-left 0.3s ease; */
}

.footer-links a:hover {
    color: #ffae00;
    text-decoration: underline;
    text-decoration-style: unset;
    text-underline-offset: 4px; /* Line ko text se thoda neeche rakhne ke liye */
}


.getintouchp{
    margin-bottom: 10px !important;
}
.work-us{
    padding-top: 100px !important;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
}
.work-us:hover {
    color: #ffae00;
    text-decoration: underline;
    text-decoration-style: unset;
    text-underline-offset: 4px; /* Line ko text se thoda neeche rakhne ke liye */
}








/* Hire Me Button (CTA) */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffae00;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    
    box-shadow: 5px 5px #ffffff;
}

.footer-cta-btn:hover {
    box-shadow: 3.5px 3.5px #ffffff;
}

/* Footer Bottom Area */
.footer-bottom {
    background-color: #1C1C1C; /* Darker shading for contrast */
    padding: 20px 0;
    border-top: 1px solid #1e293b;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #ffffffa6;
    margin: 0;
}

.footer-legal a {
    color: #ffffffa6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-style: unset;
}

.footer-legal .divider {
    color: #1e293b;
    margin: 0 10px;
}

/* Responsive Grid for Mobile Screens */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 2fr; /* बाकी सब single column */
        gap: 20px;
        padding: 0;

    }

    
}

/* Floating Trigger Button */
.floating-trigger-btn {
  position: fixed;
  top: 15px;
  right: 20px;
  background: #e11d48;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
  transition: transform 0.3s ease;
}

.floating-trigger-btn:hover {
  transform: scale(1.05);
}

/* Banner Main Outer Container */
.top-banner {
  position: fixed;
  margin-top: 0px;
  top: -250px; /* Fully Hidden Top State */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  width: 700px;
  background: transparent;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* border-radius: 16px; */
  box-shadow: 5px 5px #ffae00fd;
  z-index: 9999;
  transition: top 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* Slide Down Trigger */
.top-banner.show {
  top: 10px;
}

/* Inner Layout: Left DP & Right Content */
.banner-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 20px;
}

/* Outer DP Ring (Left Side) */
.dp-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffae00, #ffffff);
  padding: 3px;
  box-shadow: 0 0 5px #ffffff;
  flex-shrink: 0;

  margin-right: 20px !important;
  
}

.banner-dp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ffffff;
  
}

/* Right Side Container (Text Above, Buttons Below) */
.right-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Text Section Styling */
.banner-text {
    font-size: 50px;
    color: #f8fafc;
}

.banner-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.banner-text h4 span {
    font-size: 25px;
  font-weight: bold;
  color: #ffae00;
}

.banner-text p {
  margin: 4px 0 0 0;
  font-size: 15px;
  color: #ffffffd3;
  line-height: 1.4;

}

/* Buttons Styling Under Text */
.banner-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.btn-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffae00;
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 25px;

  box-shadow: 3.5px 3.5px #ffffff;
  transition: all 0.3s ease;
}

.btn-sub:hover {
  box-shadow: 2.5px 2.5px #ffffff;
}

.btn-cancel {
  background: transparent;
  color: #ffffff;
  box-shadow: 3.5px 3.5px #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 25px;

  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  box-shadow: 2.5px 2.5px #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
  .banner-content {
    gap: 12px;
    padding: 14px;
  }
  .dp-wrapper {
    width: 55px;
    height: 55px;
  }
  .banner-text h4 {
    font-size: 13px;
  }
  .banner-text p {
    font-size: 11px;
  }
}








.marquee-container-double {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Dono rows ke beech ka space */
}

/* Outer Container */
.marquee-wrapper {
  position: relative;
  width: 100%;
  padding: 5px 0;
  overflow: hidden;
  /* Hover pause aur box shadow hata diya gaya hai */
}

/* Side Blur Effects (Aapka Yellow Fade Color) */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffae001a, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffae001a, transparent);
}

/* Animated Tracks Base */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
}

/* 1. Left to Right Motion */
.track-ltr {
  animation: scroll-ltr 100s linear infinite;
}

/* 2. Right to Left Motion */
.track-rtl {
  animation: scroll-rtl 100s linear infinite;
}

/* Text Item Styling (Aapka Color aur Size) */
.marquee-item {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #ffffff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Keyframes for Left to Right */
@keyframes scroll-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Keyframes for Right to Left */
@keyframes scroll-rtl {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}








/* massege box section */

.support-section{
    position:relative;
    width:100%;
    padding: 20px;
    background:transparent;
    color:var(--text,#ffffff);
    overflow:hidden;
    margin-top: 50px;
}
.support-content{
    width:min(1100px,100%);
    margin:0 auto;
    text-align:center;
    
}
.support-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    padding:7px 14px;
    border:1px solid rgba(255,255,255,.12);
    
    background:rgba(255,255,255,.035);
    color:var(--accent,#f5c518);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    box-shadow: 2px 2px #ffffff;
}
.support-content h2{
    margin:0;
    font-size:clamp(35px,4vw,60px);
    line-height:1.05;
    font-weight:bold;
    letter-spacing:-2px;
    color:var(--text,#fff);
}
.support-content>p{

    margin:22px auto 30px;
    color:rgba(255,255,255,.5);
    font-size:18px;
    line-height:1.8;
}
.coffee-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 25px;

    background:linear-gradient(135deg, #ff7b00, #ffae00, #ffae00);
    box-shadow: 4px 4px #ffffff;
    color:black;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.coffee-button:hover{
    box-shadow: 3px 3px #ffffff;
}
.heart-icon{
    font-size:25px;
    line-height:1;
}
.support-feed{
    position:relative;
    width:min(760px,100%);
    height:300px;
    margin:55px auto 0;
    overflow:hidden;
    text-align:left;
    -webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 78%,rgba(0,0,0,.8) 90%,transparent 100%);
    mask-image:linear-gradient(to bottom,#000 0%,#000 78%,rgba(0,0,0,.8) 90%,transparent 100%);

    padding: 10px;

}
.support-feed-track{
    display:flex;
    flex-direction:column;
    gap:14px;
    width:100%;
    will-change:transform;
}
.support-item{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:15px;
    width:100%;
    min-height:88px;
    padding:17px 19px;
    border:1px solid rgba(255, 255, 255, 0.363);

    background:transparent;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:3px 3px #ffae00;
    box-sizing:border-box;
}
.support-avatar{
    flex:0 0 46px;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:23px;
    border:1px solid rgba(255,255,255,.1);
}
.avatar-yellow{
    background:rgba(245,197,24,.12);
}
.avatar-green{
    background:rgba(34,197,94,.12);
}
.avatar-orange{
    background:rgba(249,115,22,.12);
}
.avatar-blue{
    background:rgba(59,130,246,.12);
}
.avatar-pink{
    background:rgba(236,72,153,.12);
}
.support-text{
    min-width:0;
    flex:1;
}
.support-text>div{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:7px;
    line-height:1.4;
}
.support-text strong{
    color:var(--text,#fff);
    font-size:14px;
    font-weight:700;
}
.support-text span{
    color:rgba(255,255,255,.35);
    font-size:12px;
}
.support-text p{
    margin:7px 0 0;
    color:rgba(255,255,255,.5);
    font-size:13px;
    line-height:1.6;
}
.support-item:hover{
    border-color:rgba(255,255,255,.14);
    background:rgba(255,255,255,.05);
}
@media(max-width:768px){
    .support-section{
        padding:90px 16px;
    }
    .support-content h2{
        font-size:clamp(34px,10vw,48px);
        letter-spacing:-1.5px;
    }
    .support-content>p{
        font-size:14px;
        line-height:1.7;
    }
    .support-feed{
        height:270px;
        margin-top:45px;
    }
    .support-item{
        min-height:84px;
        padding:14px;
        gap:12px;
        border-radius:15px;
    }
    .support-avatar{
        flex-basis:40px;
        width:40px;
        height:40px;
        border-radius:11px;
        font-size:20px;
    }
    .support-text strong{
        font-size:13px;
    }
    .support-text p{
        font-size:12px;
    }
}
@media(max-width:480px){
    .support-section{
        padding:75px 14px;
    }
    .support-feed{
        height:250px;
    }
    .support-item{
        min-height:82px;
    }
}



.support-source{
    flex:0 0 34px;
    width:34px;
    height:34px;
    margin-left:auto;
    align-self:center;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:rgba(255,255,255,.035);
    color:rgba(255,255,255,.55);
    font-size:16px;
    transition:transform .3s ease,color .3s ease,background .3s ease,border-color .3s ease;
}
.support-source:hover{
    transform:translateY(-2px);
    color:#ffae00;
    background:rgba(255,174,0,.08);
    border-color:rgba(255,174,0,.25);
}
.support-source.whatsapp{
    color:#25d366;
}
.support-source.instagram{
    color:#e4405f;
}
.support-source.email{
    color:#ffae00;
}
.support-source.github{
    color:#fff;
}
.support-source.linkedin{
    color:#0a66c2;
}