.skw__mm{
display:none;
}

.unreal__twins__content__sec{
    font-size: 24px;
}

.dhp__cont {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    color: #cdcdcd;
    font-weight: 600;
}

.dhp__cont__p {
    color: #cdcdcd;
}
.mission__lft{
	padding-top:10px;
	padding-left:40px;
}

.footer__dhp__design{
	padding-top: 60px;
    background: url(../images/footer-bg-dhp.jpg) center center;
    background-size: cover;
    background-color: #ddd;
    height: auto;
}

.sk__bg__connect{
    background-color:#0e0e0e !important;
}
.sk__mobile-main-logo{
display:none;	
}
@media (max-width: 767px) {
    .sk__mobile-menu-bar {
        height: 60px;
        z-index: -999;
    }
}
 .sk__mobile-menu-bar {
        height: 60px;
        z-index: -999;
    }



.hc-nav-trigger.hc-nav-trigger.hc-nav-1{
	display:none;
}
:root {
    --primary-color: #3f51b5;
    --secondary-color: #f5f5f5;
    --background-color: #1a1a2e;
    --text-color: #e0e0e0;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.sk__about-us-section {
    overflow-x: hidden;
    background-color: black;
}


/* Glassmorphism Header */
.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background:#0e0e0e;/* rgba(255, 255, 255, 0.1);*/
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.header.scrolled {
    background:#0e0e0e;/* rgba(255, 255, 255, 0.2);*/
    backdrop-filter: blur(15px);
}

/* Skeuomorphic Button Logo */
.logo-btn {
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    background:transparent;
    box-shadow: none;
    padding: 10px 20px;
    /*transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);*/
    display: inline-block;
}

.logo-btn:active {
    box-shadow: none; /*inset 3px 3px 6px rgba(0, 0, 0, 0.4), inset -3px -3px 6px rgba(255, 255, 255, 0.05);*/
}

/* Navigation Links */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #cdcdcd;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: transform 0.4s ease, color 0.4s ease;
    transform-style: preserve-3d;
    transform-origin: center;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
    transition: transform 0.4s ease;
}

/* 3D Transform on Hover (Desktop) and on touch (Mobile) */
.nav-link:hover, .nav-link:focus, .nav-link.active-touch {
    color: #cdcdcd;
    transform: rotateX(5deg) rotateY(5deg) scale(1.1);
}

.nav-link:hover i, .nav-link:focus i, .nav-link.active-touch i {
    transform: scale(1.2) translateY(-2px);
}

/* Mouse/Touch Trail Effect 
.mouse-trail {
    position: fixed;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}*/

/* Main Content */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #1a1a2e, #0f0f1b);
    color: var(--secondary-color);
    text-align: center;
}

.content-section {
    height: 150vh;
    background: linear-gradient(90deg, #1f1d2e, #2a2a47);
    padding: 100px 5%;
}

/* Hamburger Menu and Mobile Overlay */
.nav-toggle {
    display: none; /* Desktop par hide */
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0e0e0e;/*rgba(26, 26, 46, 0.95);*/
    backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: var(--primary-color);
}



@media screen and (min-width: 768px) and (max-width: 1024px) {

   .nav {
        display: none; /* Desktop nav ko mobile par hide */
    }

    .nav-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 101;
    }

    .hamburger {
        width: 100%;
        height: 3px;
        background: var(--secondary-color);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: var(--secondary-color);
        left: 0;
        transition: transform 0.3s ease;
    }

    .hamburger::before { top: -10px; }
    .hamburger::after { top: 10px; }

    .nav-toggle.open .hamburger {
        background: transparent;
    }
    .nav-toggle.open .hamburger::before {
        transform: translateY(10px) rotate(45deg);
    }
    .nav-toggle.open .hamburger::after {
        transform: translateY(-10px) rotate(-45deg);
    }
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    .nav {
        display: none; /* Desktop nav ko mobile par hide */
    }

.sub_heading__dhp {
    font-size: 14px;
    color: #000;
}
    .nav-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 101;
    }

    .hamburger {
        width: 100%;
        height: 3px;
        background: var(--secondary-color);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: var(--secondary-color);
        left: 0;
        transition: transform 0.3s ease;
    }

    .hamburger::before { top: -10px; }
    .hamburger::after { top: 10px; }

    .nav-toggle.open .hamburger {
        background: transparent;
    }
    .nav-toggle.open .hamburger::before {
        transform: translateY(10px) rotate(45deg);
    }
    .nav-toggle.open .hamburger::after {
        transform: translateY(-10px) rotate(-45deg);
    }
}



.voilet__c{
	background-color:#cbbdef;
	padding:50px 50px;
	
}
.voilet__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:40px;
line-height: 1.05;
color:#fff !important;
  
}
.voilet__c .vc__content{
	display: block;
    font-size: 40pt;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 50pt;
	color:#fff;
margin: 10px 40px 50px;

}
.voilet__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 50.05px;
	color:#341583;
	margin-left:40px;
	padding-top:2px;
	text-transform: uppercase;
}

.blue__c{
	background-color:#0641ff;
	padding:50px 50px;
}

.blue__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:40px;
line-height: 1.05;
color:#fff !important;
  
}
.blue__c .vc__content{
	display: block;
    font-size: 40pt;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 50pt;
margin: 10px 40px 50px;
color:#fff;
}
.blue__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 50.05px;
	color:#cdcdcd;
	margin-left:40px;
	padding-top:2px;
	text-transform: uppercase;
}


.red__c{
background-color:#e93e37;
padding:50px 50px;
}
.red__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:40px;
line-height: 1.05;
color:#fff !important;
  
}
.red__c .vc__content{
	display: block;
    font-size: 40pt;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 50pt;
margin: 10px 40px 50px;
color:#fff;

}
.red__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 50.05px;
	color:#5e1615;
	margin-left:40px;
	padding-top:2px;
	text-transform: uppercase;
}


.teal__c{
	background-color:#aad1d6;
	padding:50px 50px;
}
.teal__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:40px;
line-height: 1.05;
color:#fff !important;
  
}
.teal__c .vc__content{
	display: block;
    font-size: 40pt;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 50pt;
margin: 10px 40px 50px;
color:#fff;

}
.teal__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 50.05px;
	color:#29646b;
	margin-left:40px;
	padding-top:2px;
	text-transform: uppercase;
	
}


.drk_r__c{
	
	background-color:#88211c;
	padding:50px 50px;
}
.drk_r__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:40px;
line-height: 1.05;
 color:#fff !important; 
}
.drk_r__c .vc__content{
	display: block;
    font-size: 40pt;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 40pt;
	color:#fff;
margin: 10px 40px 50px;

}
.drk_r__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 50.05px;
	color:#d46b66;
	margin-left:40px;
	padding-top:2px;
	text-transform: uppercase;
}

.unreal__twin__c{
	padding-top:50px;
}
.tean__dhp__bg{
	width: 370px;
    margin-right:30px;

}



@media screen and (min-width: 768px) and (max-width: 1024px) {
	.voilet__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
	
	.voilet__c .vc__content {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19pt;
    color: #fff;
    margin: 10px 0px 20px;
}
.voilet__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 18px;
	color:#341583;
	margin-left:4px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt
}



.teal__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.teal__c .vc__content{
	display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19pt;
margin: 10px 0px 20px;
color:#fff;

}
.teal__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 18px;
	color:#29646b;
	margin-left:4px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}
.blue__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.blue__c .vc__content{
	display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19pt;
margin: 10px 0px 20px;
color:#fff;
}
.blue__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 18px;
	color:#cdcdcd;
	margin-left:4px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}



.red__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.red__c .vc__content{
	display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19pt;
margin: 10px 0px 20px;
color:#fff;

}
.red__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 18px;
	color:#5e1615;
	margin-left:4px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}


.drk_r__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
 color:#fff !important; 
}
.drk_r__c .vc__content{
	display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19pt;
	color:#fff;
margin: 10px 0px 20px;

}
.drk_r__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 18px;
	color:#d46b66;
	margin-left:4px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt
}

}

/*370---------------------to560-------------------*/

@media screen and (max-width: 600px)  {
	.voilet__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
	
	.voilet__c .vc__content {
    display: block;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28pt;
    color: #fff;
    margin: 0px 0px 0px;
}
.voilet__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 24px;
	color:#341583;
	margin-left:0px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt
}



.teal__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.teal__c .vc__content{
	display: block;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28pt;
margin: 0px 0px 0px;
color:#fff;

}
.teal__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 24px;
	color:#29646b;
	margin-left:0px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}
.blue__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.blue__c .vc__content{
	display: block;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28pt;
margin: 0px 0px 0px;
color:#fff;
}
.blue__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 24px;
	color:#cdcdcd;
	margin-left:0px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}



.red__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
color:#fff !important;
  
}
.red__c .vc__content{
	display: block;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28pt;
margin: 0px 0px 0px;
color:#fff;

}
.red__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 24px;
	color:#5e1615;
	margin-left:0px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt;
}


.drk_r__c h1{
	    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 8rem;
    letter-spacing: -5.1px;
    text-transform: inherit;
	margin-left:0px;
line-height: 1.05;
 color:#fff !important; 
}
.drk_r__c .vc__content{
	display: block;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28pt;
	color:#fff;
margin: 0px 0px 0px;

}
.drk_r__c .vc__btm__contnent{
	 font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 24px;
	color:#d46b66;
	margin-left:0px;
	padding-top:2px;
	text-transform: uppercase;
	line-height:1.5pt
}

}



/*-----------bottom code is-updated css code on 9th feb------------------------------*/



.stage {
    
    padding: 26px 18px 18px;
    display: grid;
    gap: 16px;
}
.card {
    /* Tweakables */
    --b: 8px; /* border thickness */
    --r: 24px; /* radius */
    --x: 50%; /* mouse X */
    --y: 50%; /* mouse Y */
    --spin: 0deg; /* rotation */
    --glow: 1;
    --runner: 1;

    border-radius: var(--r);
    border: var(--b) solid transparent;
    position: relative;
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease;
    outline: none;

    /* 2 layers: inner fill + border gradient */
    background: linear-gradient(
                180deg,
                rgba(14, 14, 18, 0.88),
                rgba(6, 6, 8, 0.8)
            )
            padding-box,
        /* main border */
            conic-gradient(
                from var(--spin) at var(--x) var(--y),
                rgba(255, 45, 210, 1),
                rgba(120, 60, 255, 1),
                rgba(40, 170, 255, 1),
                rgba(0, 255, 200, 1),
                rgba(255, 230, 0, 1),
                rgba(255, 106, 0, 1),
                rgba(255, 45, 210, 1)
            )
            border-box;

    background-clip: padding-box, border-box;
    background-origin: border-box;

    /* Strong glow so it's clearly visible */
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 42px rgba(80, 180, 255, calc(0.26 * var(--glow))),
        0 0 64px rgba(255, 45, 210, calc(0.2 * var(--glow)));
    overflow: hidden;
}




/* outer glow hotspot */
.card::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 18px);
    background: radial-gradient(
        closest-side at var(--x) var(--y),
        rgba(255, 45, 210, calc(0.22 * var(--runner))),
        rgba(40, 170, 255, calc(0.16 * var(--runner))),
        transparent 62%
    );
    filter: blur(14px);
    opacity: 0.98;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-2px);
    --glow: 1.35;
    --runner: 1.25;
}

.card:focus-visible {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 42px rgba(80, 180, 255, calc(0.26 * var(--glow))),
        0 0 64px rgba(255, 45, 210, calc(0.2 * var(--glow)));
}

.card__inner {
    padding: 0px 0px 28px;
    border-radius: calc(var(--r) - var(--b));
    background: #fff;
    /* backdrop-filter: blur(10px); */
max-height:435px;
}
.team_heading__dhp{
	color:#0e0e0e;
	font-family: 'Poppins', sans-serif;
    font-size: 20px;
   
	font-weight:600;
}
.sub_heading__dhp{
	font-size: 16px;
	color:#000;
}
.team__arw{
	color:#000;
	font-size:45px;
}
.kpi {
    padding: 12px 12px 10px;
  
   
}

.kpi__label {
    font-size: 12px;
    color: var(--muted2);
   
}

/*-----------------closed of the css styles-----------------------------------------*/

