@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Poppins:wght@600&family=Roboto+Mono:wght@300;500&display=swap');

/* Variables */
:root {
	--primary-color: #5924ed;
	--secondary-black: #0d081a;
	--secondary-gray: #48464b;
	--body-bg: #efebfa;
}

/* global styles */
*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-family: 'Roboto Mono', sans-serif;
    font-size: 10px;
}
body{
    background-color: var(--body-bg);
}
img {
	width: 100%;
	height: 100%;
}
a{
    color: black;
	text-decoration: none;
}
p{
    font-size: 1.6rem;
    color: var(--secondary-black);
}
section{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    width: 90%;
    margin: 0 auto;
    max-widht:1000px;
}
.primary-btn{
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    padding: 0.6em 1.6em;
    border-radius: 50px; 
}
.buttons{
	margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}
.buttons svg{
    width: 50px;
    color: var(--primary-color);
}
.section-heading{
    font-size: clamp(2rem,10vw,8rem);
    text-transform: uppercase;
    font-family: 'Montserrat';
    letter-spacing: 0.2rem;
    text-align: center;
    position: relative;
    margin-bottom: 10rem;
}
.section-heading::before{
    content: attr(data-outline);
    position: absolute;
    left: 2%;
    top: -20%;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat';
    letter-spacing: 0.2rem;
    color: transparent;
    -webkit-text-stroke: 1.5px #5a24ed2f;
    z-index: -1;
}

/* Hero Section */
#hero{
    height:100vh;
    widht:100%;
    padding-top:10rem;
    display:flex;
    align-items: center;
    justify-content: center;
}
#hero .container {
    display:flex;
    align-items:center;
    justify-content:center;
    
}
#hero .container .left {
	flex: 8;
    /*padding-right: 3rem; */
}
#hero .container .right {
	flex: 7;
}
#hero .left .subheading {
	font-size: 1.8rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
    opacity: 0;
    animation : fade 0.3s ease-in forwards;
    animation-delay: 1s;
}
#hero .left .heading {
	font-size: 6rem;
	font-family: 'Montserrat';
	font-weight: 900;
}
#hero .left .heading .wrapper{
    display: inline-block;
    overflow : hidden;
    /*border: 1px solid red; */
}
#hero .left .heading .wrapper span{
    position: relative;
    bottom: -70px;
    animation: reveal 1s ease-in-out forwards;
}
@keyframes reveal{
    0% {
        bottom: -70px;
    }
    100% {
        bottom: 0;
    }
}
@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
#hero .left .desc{
    margin-top: 2.5rem;
    max-width: 400px;
    opacity: 0;
    animation : fade 0.3s ease-in forwards;
    animation-delay: 1s;
}
#hero .left .buttons{
    opacity: 0;
    animation : fade 0.3s ease-in forwards;
    animation-delay: 1s;
}
#hero .right{
text-align:right;
}
#hero .right img{
    widht:100%;
    max-widht:450px;
    height:600px;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 12px;
}
@media only screen and (max-widht:768px){
    html {
        font-size: 9px;
    }
#hero .container{
    flex-direction: column-reverse;
    }
#hero .container .right{
    text-align: center;
    flex: 1;
    margin-bottom: 2rem;
}
#hero .container .right img{
    widht:100%;
    height: 400px;
}
#hero .container .left{
    text-align: center;
    padding-right: 0;
    flex: 1;
    height: fit-content;
}
#hero .left.buttons{
    justify-content: center;
}
#hero .container .left .heading{
    font-size: 4rem;
    margin: 0 auto;
}
#hero .container .left .desc{
    margin: 0 auto;
    margin-top: 2rem;
}
}
@media only screen and (max-widht:950px) {
    #hero .container .right {
        flex: 6;
    }
}
/*End of Hero Section*/

/* Services Section */
#services {
	padding: 15rem 0;
}

#services .all-items {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
#services .item {
	padding: 1.5rem;
	transition: 0.3s ease-in-out background-color;
	border-radius: 12px;
	flex: 1;
}
#services .item:nth-child(1):hover {
	background-color: rgb(8 69 241 / 35%);
}
#services .item:nth-child(2):hover {
	background-color: rgba(0, 255, 115, 0.151);
}
#services .item:nth-child(3):hover {
	background-color: #cbbef093;
}
#services .item .icon {
	width: 50px;
	height: 50px;
	padding: 0.8rem;
	/*background-color: rgba(255, 0, 0, 0.24);*/
	border-radius: 50%;
	margin-bottom: 1rem;
}
#services .item-heading {
	font-weight: 500;
	font-size: 2rem;
	/* text-transform: uppercase; */
	margin-bottom: 1.5rem;
	font-family: 'Poppins';
}
#services .item-desc {
	color: var(--secondary-gray);
}
#services .item:nth-child(1) .icon {
	background-color: rgb(7 106 255 / 37%);
}
#services .item:nth-child(2) .icon {
	background-color: rgba(0, 255, 115, 0.493);
}
#services .item:nth-child(3) .icon {
	background-color: #4705fc80;
}
@media only screen and (max-width: 768px) {
	#services .all-items {
		flex-direction: column;
		text-align: center;
	}
	#services .item .icon {
		margin: 0 auto;
		margin-bottom: 1rem;
	}
	#services .item {
		margin: 2rem 0;
	}
	#services .item:nth-child(1) {
		background-color: rgb(8 69 241 / 35%);
	}
	#services .item:nth-child(2) {
		background-color: rgba(0, 255, 115, 0.151);
	}
	#services .item:nth-child(3) {
		background-color: #cbbef093;
	}
}
/* Footer Section */
#footer {
	background-color: #311580;
	color: white;
	padding: 10rem 0 5rem 0;
}
#footer footer {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2rem;
}
#footer footer .col-1 {
	flex: 3;
}
#footer footer .col-2,
#footer footer .col-3,
#footer footer .col-4 {
	flex: 2;
}
#footer footer .col-4 {
	flex: 1;
}

#footer footer .col-1 .logo img {
	max-width: 100px;
	margin-bottom: 2rem;
}
#footer footer .col-1 p {
	color: white;
}

#footer footer .column-heading {
	font-family: 'Montserrat';
	font-size: 2rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
	line-height: 1.5em;
}
#footer footer ul {
	list-style: none;
}
#footer footer ul li {
	border-radius: 4px;
}
#footer footer ul li:hover {
	background-color: white;
}
#footer footer ul li:hover a {
	color: var(--primary-color);
}
#footer footer ul li a {
	display: inline-block;
	width: 100%;
	color: white;
	font-size: 1.7rem;
	padding: 0.5rem;
}
#footer footer .col-4 ul {
	display: flex;
	flex-wrap: wrap;
}
#footer footer .col-4 ul li a {
	min-width: 50px;
}
@media only screen and (max-width: 768px) {
	#footer footer {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	#footer footer .col-1,
	#footer footer .col-2,
	#footer footer .col-3,
	#footer footer .col-4 {
		width: 100%;
		margin-bottom: 3rem;
	}
	#footer footer .col-4 ul {
		width: fit-content;
		margin: 0 auto;
	}
}

/* copyright Section */
#copyright {
	padding: 1rem 0;
	background-color: #221052;
}
#copyright p {
	color: white;
	margin: 1rem;
	font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
	#copyright p {
		text-align: center;
	}
}
body{
	background-image: url('../Background.png');
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;
}




