/*

project name : Touchcrypto blog
start date : 12-03-25 
author: Ganesh C

*/

/* COMMMON CSS */


.top-40 {
    top: 40%;
}

.fs-14 {
    font-size: 14px;
}

.z-4{
    z-index: 4;
}

/*======================= Typography ==========================*/

h1, h2, h3, h4, h5, h6, p, span{   
    color: #F9F9F9;
    font-family: "Poppins", serif;
}

p{
    color: #D9D9D9;
    line-height: 2;
    text-align: justify;
}

/* fixed icons */
.section__fixed-icons {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.rounded{
    background-color: white;
    padding: 3px;
    border-radius: 5px;
}
.section__fixed-right {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}


/* navbar custom */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: #efe7fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    transition: 0.4s ease;
    z-index: 999;
}

.navbar-custom.scrolled {
    top: 20px;
    width: 88%;
    border-radius: 22px;
    padding: 0 30px;
    backdrop-filter: blur(10px);
    background: rgba(239, 231, 252, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.logo img {
    width: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    position: relative;
}

a {
    text-decoration: none;
}

li{
    list-style: none !important;
}
.nav-main-link,
.dropdown-btn,
.nav-links li a {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: 0.3s;
}

.nav-item-dropdown {
    height: 80px;
    display: flex;
    align-items: center;
}

.dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    position: relative;
}

.dropdown-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: #7220ff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-wrapper::after,
.nav-item-dropdown.active .dropdown-wrapper::after {
    width: 100%;
}

.nav-item-dropdown:hover .nav-main-link,
.nav-item-dropdown:hover .dropdown-btn,
.nav-item-dropdown.active .nav-main-link,
.nav-item-dropdown.active .dropdown-btn {
    color: #7220ff;
}

.dropdown-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.arrow-icon {
    transition: 0.3s;
}
.arrow-icon i{
    color: #000;
}

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

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 950px;
    max-width: 90vw;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    z-index: 999;
}

.nav-item-dropdown:first-child .submenu {
    left: 0;
    transform: translateY(20px);
}

.nav-item-dropdown:nth-child(2) .submenu {
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.nav-item-dropdown:hover .submenu,
.nav-item-dropdown.active .submenu {
    opacity: 1;
    visibility: visible;
}

.nav-item-dropdown:first-child:hover .submenu,
.nav-item-dropdown:first-child.active .submenu {
    transform: translateY(10px);
}

.nav-item-dropdown:nth-child(2):hover .submenu,
.nav-item-dropdown:nth-child(2).active .submenu {
    transform: translateX(-50%) translateY(10px);
}

.submenu li a {
    display: block;
    padding: 14px 16px;
    background: #faf8ff;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    transition: 0.3s;
    height: 100%;
}

.submenu li a:hover {
    background: #f1e7ff;
    color: #7220ff;
    transform: translateY(-2px);
}

.btn-stroke {
    border: 1.5px solid #7220ff;
    padding: 5px 5px;
    border-radius: 5px;
}

.btn-violet {
    background: #7220ff;
    padding: 12px 22px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: inset 8px 4px 26px rgba(255, 255, 255, 0.18);
}

.btn-violet:hover {
    transform: translateY(-2px);
}

.menu-icon {
    font-size: 32px;
    color: #000;
}

.offcanvas {
    background: #fff;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.mobile-links li a {
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.mobile-dropdown {
    background: #f8f4ff;
    border-radius: 16px;
    padding: 16px;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.mobile-dropdown-btn i {
    transition: 0.3s;
}

.mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 0.4s ease;
}

.mobile-submenu-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-submenu a {
    display: block;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 15px;
}

.mobile-dropdown.active .mobile-submenu {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.cursor-pointer {
    cursor: pointer;
}

.contact-dropdown {
    position: relative;
}

.contact-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1100;
}

.contact-dropdown:hover .dropdown-menu {
    display: block;
}

.link-text {
    line-height: 3;
}

.card-three-grp .d-flex .img-fluid {
    height: 150px !important;
}


/*======================= Typography ==========================*/

/*======================= Theme CSS Start ====================*/

body{
    background-color: #f7f7f7 !important;
}

.banner-heading{
    font-family: 'Orbitron' !important;
}

.btn-pink{
    background-color: #7220FF;
    color: white;
}

.btn-pink:hover{
    opacity: 0.8;
    background-color: #7220FF;
    color: white;
}

.btn-1{
    background: #7220FF;
    background: linear-gradient(90deg, rgba(82, 0, 133, 0.2) 0%, rgba(144, 0, 255, 0.2) 100%); 
    box-shadow: inset -1px 1px 3px #ffffffba;
    border: 1px solid #7220FF;
    border-top: none;   
    border-right: none;   
}

.btn-2{
    background: rgb(77,77,77);
    background: linear-gradient(180deg, rgba(77,77,77,0.2) 0%, rgba(202,202,202,0.2) 100%);
    box-shadow: inset -1px 1px 3px #ffffffba;
    border: 1px solid rgba(226, 226, 226, 0.59);
    border-top: none;   
    border-right: none; 
}

.btn-1:hover{
    background: #7220FF;
    transition: all 0.5s;    
    box-shadow: inset -1px 1px 3px #ffffffba;
    border: 1px solid rgba(126, 29, 236, 0.59);
    border-top: none;   
    border-right: none;   
}

.text-pea{
    color: #20727E;
}

.text-gradient{
    background: -webkit-linear-gradient(0deg, rgba(236,29,121,0.25) 0%, rgba(223,223,223,0.25) 68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-pink-50{
    border-color: #7220FF !important;
}

.border-pink{
    border-color: #7220FF !important;
}

.dark-bg{
    background-color: #0F0F0F;
}

.scroll{
    height: 400px;
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* width */
.scroll::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
.scroll::-webkit-scrollbar-track {
    background-color: #333333;
    border-radius: 10px;
}
   
  /* Handle */
.scroll::-webkit-scrollbar-thumb {
    background: #7220FF; 
    border-radius: 10px;
}
  
/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
    background: #7220FF; 
} 

/*======================= Theme CSS End ====================*/
.bg-banner{
    background: rgb(29,34,46);
    background: linear-gradient(100deg, rgb(38, 29, 46) 64%, rgb(119, 29, 236) 64%);
}

.top-10{
    top: 20%;
}

/* ===================== TAB START ===================== */

#services-tab .nav-link img{
    transform: rotate(-45deg);
    filter: grayscale(1);
}

#services-tab .nav-link.active img{
    transform: none;
    filter: none;
}

#services-tab .nav-link{
    color: #ffffffca;
}

#services-tab .nav-link:hover{
    color: #ffffff;
}

.process {
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(11,11,11,0.5) 100%);
}

.process h4{
    font-size: 22px;
}

.div:hover{
    transform: translate(0px, -10px);
    transition: all 0.5s;
}

#choose-tab .nav-link.nav-link img{
    display: none;    
}

#choose-tab .nav-link.nav-link.active img{
    display: inline-block;  
    transition: inline-block 0.5s; 
}

/* START FAQ */

.bg-faq{
    background-color: #0B0B0B !important;
}

.accordion-body{
    background-color: #c2c2c2;
}

.accordion-button::after{
    background-image: url('/assets/img/plus.png') !important;
}

.accordion{
    --bs-accordion-btn-icon-width: 48px;
}

.accordion-button:not(.collapsed)::after{
    background-image: url('/assets/img/ei_plus.png') !important;
}
/* END FAQ */

.dropdown-menu[data-bs-popper] {
    top: 140%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: #7220FF;
}

.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #660ced2e;
}

.dropdown-item:active{
    background-color: #7220FF;
}

.navbar-nav .nav-link.active, .nav-link{
    color: #F9F9F9 !important;
}

.navbar-nav .dropdown-item{
    padding: 15px 20px;
}

.navbar{
    background-color: #00000047;
}

.navbar .dropdown-menu{
    background-color: #00000038;
    backdrop-filter: blur(30px);
    border: 1px solid #ffffff47;
}

.bg-card{
    background-color: #00000045 !important;
    border: 1px solid #1d1d1d;
}

#tech-tab .nav-link.active{
    background-color: #7220FF;
}

#tech-tab .nav-link {
    border: 1px solid #7220FF;
}

.technology-stack {
    filter: grayscale(1) !important;
}

.card-two-div{
    background-color: #2f0024;
    border-color: #D7D7D7;
    padding: 30px 20px;
    border-radius: 8px;
}

.custom-btn-clr{
    background-color: #20727E;
    outline: none;
    border: none;
    border-radius: 5px;
}
.form-control  {
    background-color: #000 !important;
    color: #fff !important; 
    border: 1px solid #ccc; 
    box-shadow: none !important;
}
.form-control:focus {
    border: none !important; 
    outline: none !important;
}
.form-control::placeholder {
    color: #aaa !important; 
}
.form-select{
    background-color: #000 !important;
    color: #fff !important; 
    border: 1px solid #ccc; 
    box-shadow: none !important;
}
.form-select:focus {
    border: none !important; 
    outline: none !important;
}

.bg404{
    background-image: url('/assets/img/404-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}


.form-phone-number {
	display: table;
	width: 100%
}

/* .form-phone-number .dropdown,
.form-phone-number input {
	display: table-cell;
	position: relative
} */

.form-phone-number .dropdown button {
	height: 38px;
	/* border: unset; */
	padding: 10px 20px 2px 10px;
	/* width: 100%; */
	/* border-radius: 25px 0 0 25px */
    background-color: transparent;
}

.form-phone-number .dropdown span {
	font-size: 12px;
	position: relative;
	top: -5px;
	/* color: #fff */
}

.form-phone-number .dropdown {
    /* width: auto; */
    /* top: 0; */
    /* border-bottom: 1px solid; */
    margin-bottom: 15px;
}

.form-phone-number .dropdown-toggle::after {
	top: 37%;
	position: inherit;
	color: #ffffff00;
	padding-bottom: 3px
}

.form-phone-number .dropdown-item {
	color: #000;
    white-space:normal !important;
}

.form-phone-number .dropdown-menu {
	height: 110px;
	overflow: hidden auto;
	will-change: transform;
	top: 0;
	left: 0;
	transform: translate3d(0, 38px, 0);
	background-color: #041124;
	width: 50px;
    color: #FFFFFF;
}

.form-phone-number .dropdown-item:hover {
	color: #1e2125;
	background-color: #009efc
}

/* .form-phone-number input {
	border-radius: 0 25px 25px 0 !important
} */

.form-phone-number .dropdown-menu::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5
}

.form-phone-number .dropdown-menu::-webkit-scrollbar {
	width: 5px;
	background-color: #f5f5f5
}

.form-phone-number .dropdown-menu::-webkit-scrollbar-thumb {
	background-color: #000;
	border: 2px solid #555
}

label {
    display: inline-block;
    color: rgb(132, 31, 232);
}


/* responsive */

@media (max-width: 992px){
    #services-tab .fs-5{
        font-size: 16px !important;
    } 
} 

@media (max-width: 567px){
    .display-1 {
        font-size: calc(1.625rem + 1.5vw);
    }
}

@media only screen and (max-width: 1440px) and (min-width: 1200px) {
    .display-1 {
        font-size: 3rem;
    }
    .img-res{
        width: 460px;
    }
}

