@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* === General Styles === */
*{
	margin: 0;
	padding: 0;
	font-family: "Manrope", sans-serif;
	box-sizing: border-box;
}

body{
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    user-select: none;
} 

/* Container for cells - positioned behind content */
.cells-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: grid;
    background-color: rgba(28, 26, 26, 0.392) !important;
    overflow-x: hidden;
}

.cell {
    border: 1px solid rgba(31, 29, 29, 0.255);
    transition: border-color 0.3s ease;
    background-color: rgba(35, 33, 33, 0.093) !important;
}

/* The moving line */
.snake-line {
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #f0f2f6;
    border-radius: 1px;
    box-shadow: 0 0 8px #dde0e4, 0 0 12px rgba(247, 248, 249, 0.5);
    z-index: 1000;
    pointer-events: none;
    transition: transform 0.1s linear;
}

/* === Header === */
.widget{
    min-height: 100vh; 
	background: url(../assets/images/Element/Hero1.png) #050505 no-repeat center center;
    background-size: cover;
    padding: 10px 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header { 
    width: 60%;
    background: #050505;
    border-radius: 8vw;
	box-shadow: 0 0 2px 0 rgba(204, 204, 214, 0.295); 
	position: fixed;
    top: 20px;
	z-index: 1111111111111;
    padding: .1rem 3vw;
}

.header-container {  
	display: flex;
	align-items: center;
	justify-content: space-between;  
} 

.logo img{
    width: 100px;
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 1rem; 
	align-items: center;
}
.main-nav a {
	text-decoration: none;
	color: #bdb9b9;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.2s;
	padding: 0.4rem 0.7rem;
	border-radius: 4px;
}
.main-nav a:hover {
    color: white;
    font-weight: 700;
}
.dropdown-arrow {
	font-size: 0.8em;
	margin-left: 0.2em;
}
.highlight a {
    background: #050505;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.7rem 1.1rem;
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.highlight a::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 20px;  
    background:  linear-gradient(90deg, #1c02c882, #405ef7, #2a02c8ac); 
    filter: blur(5px);
    border-radius: 10px;
    z-index: -1;
    pointer-events: none;
    animation: border-rotate 2s linear infinite; 
}

.highlight a::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 6px;
    background: #171616; 
    z-index: -1;
}

.highlight a > span {
    position: relative;
    z-index: 1;
}

@keyframes border-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
 
/* === Hero Section === */
.hero-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;  
    min-height: 100vh;
	text-align: center;
}
.hero-content { 
	margin: 0 auto;
    z-index: 1;
}
.hero-headline {
	font-size: 2.7rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.2rem 0;
	color: #fbfbfe;
	letter-spacing: -0.01em;
}
.headline-line1 {
	color: #fafafd;
    font-size: 1.5rem;
}
.headline-line2 {
    font-weight: 800;
    font-size: 4rem;
	color: #5494fb;
    text-transform: uppercase;
    word-spacing: 1.5rem;
}

.headline-line2 i{
    color: #afa7abcc;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #5494fb;
    font-size: 1.2em;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.headline-line3 {
	color: #fafafd;
}
.hero-subheading {
	font-size: 1.15rem;
	color: #fbfbfc;
	margin-bottom: 2.2rem;
	font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6rem;
}
.hero-btn {
	background: rgba(60, 58, 58, 0.251);
    backdrop-filter: blur(3px);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.85rem 2.2rem;
	cursor: pointer;
	box-shadow: 0 0px 4px rgba(235, 236, 239, 0.627);
	transition: background 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
    z-index: 111;
}
.hero-btn:hover {
	border: 1px solid #fbfbfb;
    background: transparent;
    color: white;
	box-shadow: 0 4px 16px 0 rgba(98, 74, 2, 0.232);
}

.tools {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 10vw;
    max-width: 80%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    z-index: 1;
    text-align: center;
}

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

.tools h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #767171;
}

.tools .tools-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: continuous 25s linear infinite;
}

@keyframes continuous {
    0% {
        transform: translateX(60%);
    }
    100% {
        transform: translateX(-40%);
    }
} 

.tools .image-container {
    width: unset;
    height: 100px;
    border-radius: 8px;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out;
}

.tools .image-container:hover {
    transform: scale(1.05);
}

.tools .image-container img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

img.invert{
    filter: invert(1);
}

.whyUs{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #0a0a0a;
    padding: 4rem 5vw;
}

.whyUs .title{
    font-size: 1.2rem;
    color: #fefdfd;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(3px);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    background-color: #040404;
    box-shadow: 0 -2px 2px rgba(248, 247, 247, 0.2);
    margin-bottom: 2rem;
}

.whyUs .header h1{
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fbfbfe;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.whyUs .header p{
    font-size: 1.2rem;
    color: #808084;
    margin-bottom: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6rem;
    text-align: center;
}

.whyUs .card-item{
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    width: 70%;
    gap: 1rem;
    margin-top: 1rem;
}

.whyUs .card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(45deg, #0b0b0bbc, #181819, #0b0b0be0);
    box-shadow: 0 0 1px rgba(252, 250, 250, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    z-index: 1;
}

.whyUs .card:hover {
    transform: translateY(-10px); 
}

.whyUs .card .img-sec {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: url(../assets/images/Element/Grid\ Background.png) #050505;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1111111;
}

.whyUs .card .img-sec img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    padding: 1rem;
}

.whyUs .card .text-sec h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbfbfe;
    margin-bottom: 0.5rem;
}

.whyUs .card .text-sec p {
    font-size: 1rem;
    color: #808084;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6rem;
    padding-inline: 1rem;
}

.mission .header h1{
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fbfbfe;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    width: 70%;
    justify-self: center;
}

.mission .header h1 span{
    font-weight: 600;
    color: #5494fb;
}

.mission .header p{
    font-size: 1.2rem;
    font-weight: 300;
    color: #808084;
    line-height: 1.8rem;
    width: 75%;
    justify-self: center;
}

.services .card-item{
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    width: 85%;
    gap: 1rem;
    margin-top: 1rem;
}

.services .sub-card-item{
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    justify-content: center;
    width: 80%;
    gap: 1rem;
    margin-top: 2rem; 
}

.sub-card-item .card{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 3rem;
}

.services .sub-card-item .card .icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5494fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.services .sub-card-item .card h5{
    flex: 3;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 0;
    background: url(../assets/images/Element/Hero1.png)#050505 no-repeat top center;
    background-size: 60%;

    color: #fbfbfe;
    text-align: center;
}

footer h1{
    font-size: 4rem;
    line-height: 4.2rem;
}

footer .main-nav{
    margin-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.267);
    padding-top: 2rem;
    z-index: 1111111;
}

/* === Responsive === */
@media (max-width: 900px) { 
    .site-header{
        position: relative;
    }

	.header-container {
        position: relative;
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}
	.main-nav ul {
		gap: 1.2rem;
	}
	.hero-headline {
		font-size: 2.1rem;
	}
}
@media (max-width: 600px) {
    .widget {
        padding: 10px 2.3vw;
    }
    .site-header {
        width: 100%;
        padding: 0.1rem 1vw;
    }
    .header-container {
        padding: 0.7rem 0.5rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .main-nav ul {
        gap: 0.7rem;
    }

    .hero-section{
        min-height: unset;
    }

    .hero-headline {
        font-size: 1rem;
    }

    .headline-line1{
        font-size: 1rem;
    }

    .headline-line2{
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 0.2rem 1rem 0.2rem;
    }

    .hero-subheading{
        font-size: 0.9rem;
    }

    .whyUs{
        min-height: unset;
    }

    .whyUs .header p{
        margin-bottom: 1rem;
    }

    .whyUs .card-item {
        width: 90%;
        grid-template-columns: 1fr;
        padding: 20px 2vw;
    }

    .mission .header h1{
        font-size: 2rem;
        width: 100%;
    }

    .mission .header p{
        font-size: 0.9rem;
        line-height: 1.2rem;
        width: 100%;
    }

    .services .sub-card-item{
        grid-template-columns: 1fr;
        width: 90%;
    }

    .services .sub-card-item .card h5{
        flex: 4;
        text-align: left;
    }
}
