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


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';
    width: 100%;
    /* overflow-x: hidden; */
}




/* Preloader Base Styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, #4b321b 0%, #1C1C1C 100%); /* Upscayl Dark Theme */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    /* Zoom aur fade ka speed controls */
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1), 
                opacity 0.6s ease, 
                filter 0.6s ease,
                visibility 0.7s;
}
#preloader.zoom-out-explode {
    transform: scale(2.5); /* Screen badi hokar zoom out hogi */
    opacity: 0;
    filter: blur(15px); /* Phatne jaisa blur effect */
    visibility: hidden;
}



/* Content Layout */
.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Welcome Text Animation */
.preload-welcome {
    font-family: 'Monsieur La Doulaise', cursive; /* Ultra Elegant Cursive */
    color: #ffae00;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    font-weight: bold;
}

/* Image Glow & Shape */
.preload-img-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffae00; /* Aapka theme accent color */
    box-shadow: 0 0 25px rgba(255, 74, 87, 0.4);
    opacity: 0;
    transform: scale(0.5);
    animation: scaleUpReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

.preload-avatar {
    width: 100%;
    height: auto;
    object-position: center ;
}

/* Name Text Styling & Fade In */
.preload-name {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Line Loader Effect */
.preload-loader {
    width: 90%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 1.2s;
}

.preload-loader::after {
    content: '';
    position: absolute;
    left: -50%;
    height: 100%;
    width: 50%;
    background: #ffae00;
    border-radius: 2px;
    animation: loadingBar 1.5s infinite linear;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(-20px); }
}

@keyframes scaleUpReveal {
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes loadingBar {
    0% { left: -50%; }
    100% { left: 100%; }
}







/* ==========================================
   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: 90%;
    margin-top: 10px;
    border-radius: 200px;

   /* 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: 90%;
    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;
}

.logo:hover {
    transform: scale(1.03);
}

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

.logo:hover .hi-logo {
    transform: rotate(45deg);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;

    background: #ffae00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-text:hover{
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-links li {
    position: relative;
}

.nav-links a,
.dropdown-trigger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    font-size: 0.92rem;
    font-weight: 600;

    color: white;
    text-decoration: none;

    border-radius: 50px;
    border: 1.5px solid transparent;

    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-dropdown-item:hover .dropdown-trigger-link {
    background:#ffae00;
    color: #04261d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 240, 201, 0.25);
}

.nav-links a.active {
    background: #ffae00;
    color: #1d0f3d;
    pointer-events: none;
}

/* ==========================================
   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(15px);

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

    list-style: none;

    opacity: 0;
    visibility: hidden;

    border-radius: 20px;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(25px);

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

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

.nav-dropdown-menu li {
    width: 100%;
    display: block;
}

.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 a:hover {
    color: black;

}

.nav-clock {
    color: #ffae00; /* Aap apni website ke theme color ke mutabik badal sakte hain */
    font-weight: bold;
    font-size: 22px;
    padding: 0 10px;
    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);
    border-radius: 12px;

    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: #ffae00 !important;
    background: rgba(109, 240, 201, 0.06) !important;
    border-color: #ffae00 !important;
}

.mobile-nav .mobile-nav-links-list a.active {
    color: black !important;
    background: #ffae00 !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: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 40px;
    width: 100%;
    position: relative;
    margin-top: -30px;
}

/* .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: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;

}

.hero-content {
    flex: 1 1 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 680px;
    z-index: 2;
    margin: 0;
    margin-top: -50px;
}

.hero-content h1 {
    font-size: 100px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #fff;
}

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

.hero-content p {
    color: white;
    font-size: 20px;
    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;
}

.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;
}

.download {
    width: 200px;
    display: flex;
    justify-content: center;
    margin-top: 40px;

    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: #ffae00;
    border: 1px solid transparent;
    text-decoration: none;

    color: black;
    font-weight: bold;
    transition: 0.3s ease;
}

.download:hover {
    background: transparent;
    border: 1px solid #ffae00;
    color: #ffae00;
    transform: translateY(-3px);
}

.img1 {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 2;
    
}

.img1 img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* @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: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 2;

    width: 95%;
    margin-top: -70px;
}

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

    background: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: black;
    font-size: 28px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.social-media a:hover {
    color: #ffae00;
    background: transparent;
    border: 1px solid #ffae00;
    transform: translateY(-4px);
}
.social-media-logoo{
    width: 70px;
}

.star-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    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 transparent;

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

    border-radius: 50px;

    transition: all 0.4s ease;
}

.star-btn a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 1px 5px 20px #8158006b;
}




/* ==========================
   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: 40px;
    margin-top: 90px; 

}

.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: 96% !important;
    max-width: 1600px !important;
    margin: 0 auto 100px;
    
}
.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: 20px;
    width: 100%;
    margin-bottom: 20px; /* Image se door rakhne ke liye */
}

.logo-item {
    display: flex;
    flex-direction: column; /* एलिमेंट्स ऊपर से नीचे रहेंगे (लोगो फिर टेक्स्ट) */
    align-items: center;
    justify-content: center;
   
    width: 110px; /* बॉक्स को बड़ा/छोटा करने के लिए सिर्फ इस वैल्यू को बदलें */
    aspect-ratio: 1 /1.2; /* यह बॉक्स के अनुपात को परफेक्ट वर्टिकल रेक्टेंगल रखेगा */
    
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.logo-item:hover {
    transform: translateY(-7px);
    /* 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;
    border-radius: 50%; /* परफेक्ट राउंड लुक */
    background: transparent;
    
    margin-bottom: 8px; /* नीचे वाले टेक्स्ट से दूरी */
}
.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 rgba(255, 174, 0, 0.1);
    border-radius: 30px;
    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;
}
.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 {
    transform: translateY(-6px);
    border-color: #ffae00;
    box-shadow: 0 10px 30px rgba(255, 174, 0, 0.15);
}

/* 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;
    border-radius: 16px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 174, 0, 0.1);
}

.service-card:hover .service-icon {
    background: #ffae00;
    color: #11141a;
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.4);
}

/* Card Titles */
.service-card h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 10px;
    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: 15px;
}

/* 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;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 174, 0, 0.15);
}

/* 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
========================================== */

footer {
    background: #161616;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    padding: 30px 0;
    width: 100%;
    margin-top: 80px;
}

.footer-bottom {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-credit-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffae00, #f87000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    background: transparent;
    border-color:rgba(255, 255, 255, 0.363);
    transform: translateY(-2px);
    color:white;
}

.footer-credit-icon {
    color: inherit;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-credit-link:hover .footer-credit-icon {
    transform: scale(1.15);
}

.footer-divider {
    color:rgba(255, 255, 255, 0.623);
    font-size: 25px;
}