@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
due to branding, deep-pink is now navy blue, light-pink is now yellow, brown is now a variation of blue


*/


:root{
	--ash : #EBE8DB;
	--light-pink: #fad442;
	--deep-pink: #013161;  
	--brown: #7c9afc;
}

.text-shadow {
	text-shadow: 2px 2px 3px black;
}

p, li {
    font-size: 20px;
}

a {
	text-decoration: none;
}

.glow {
  box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
}

.small-text {
	font-size: 13px;
}

/*text colors*/

.primary-text {
	color: var(--deep-pink);
}

.secondary-text {
	color: var(--light-pink);
}

.accent-text {
	color: var(--brown);
}

.neutra-text {
	color: var(--ash);
}
/*text colors ends*/

.primary_bg {
    background-color: var(--deep-pink);
}

.secondary-bg {
    background-color: var(--light-pink);
}

/*buttons*/

.primary-button, .secondary-button {
	padding: 10px 30px;
	border: none;
	color: white;
	font-size: 20px;
}

.primary-button {
	background-color: var(--light-pink);
}

.secondary-button {
	background-color: var(--deep-pink);
}

.primary-button:hover, .secondary-button:hover {
	background-color: var(--brown);
}

/*buttons*/

body {
	font-family: "inter", sans-serif;
}

/*navbar style starts*/
#navbar {
	background-color: var(--deep-pink);
	padding-top: 5px;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 45px;
	top: 0;
	left: 0;
	z-index: 2;
}

#menu > ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	color: var(--ash);
}

#menu > ul > li:not(:last-child) {
	margin-right: 15px;
}

#menu > ul > li > a {
	text-decoration: none;
	color: white;
}

#menu > ul > li > a:hover {
	background-color: var(--brown);
	padding: 5px;
}

/*navbar style ends*/

/*index style starts*/
#hero-section {
	text-align: center;
	padding-top: 5em;
	padding-bottom: 10em;
	background-image: url('./../assets/background3.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	max-width: 100%;
	position: relative;
	
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 0;
}

#hero-section > div > h1 {
	font-weight: 800;
	font-size: 55px;
	z-index: 2;
}

#hero-section > div > ul {
	list-style-type: none;
	z-index: 2;
}

.hero-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 2;
}

/*.hero-buttons-container:nth-child(1){*/
/*    margin: 10px;*/
/*}*/

/*index style ends*/

/*animations*/

/* General animation delay classes */
.delay-100 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-500 { animation-delay: 0.5s; transition-delay: 0.5s; }
.delay-1000 { animation-delay: 1s; transition-delay: 1s; }
.delay-3000 { animation-delay: 3s; transition-delay: 3s; }

.animated {
	opacity: 0;
	transition: opacity 1s ease-in-out, transform 3s ease-in-out;
}

/* Fade In */
.fade-in {
	transform: translateY(20px);
}
.show.fade-in {
	opacity: 1;
	transform: translateY(0);
}

/* Slide In From Left */
.slide-in-left {
	transform: translateX(-100px);
}
.show.slide-in-left {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-top {
	transform: translateY(-200px);
}
.show.slide-in-top{
	opacity: 1;
	transform: translateY(0);
}

/* Slide In From Right */
.slide-in-right {
	transform: translateX(100px);
}
.show.slide-in-right {
	opacity: 1;
	transform: translateX(0);
}

/* Zoom In */
.zoom-in {
	transform: scale(0.8);
}
.show.zoom-in {
	opacity: 1;
	transform: scale(1);
}

/*animations end*/

#about_me_image {
	width: 90%;
	height: auto;
}

#services {
	background-image: url('./../assets/bg5.avif');
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 100%;
	position: relative;
	z-index: 1;
}

#services::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .5);
	z-index: -1;

}


#contact {
	background-image: url('./../assets/bg9.webp');
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 100%;
}

#floating-icons-left {
	position: fixed;
	bottom: 1em;
	right: 10px;
	padding: 0;
	margin: 0;
	z-index: 2;
}

#footer {
	background-color: black;
	max-width: 100%;
	width: 100%;
	bottom: 0;
}

.show-on-mobile {
	display: none;
}

.show {
	display: block;
}

.hide {
	display: none;
}

.small-line-height {
	line-height: 1px;
}

footer {
	justify-items: center;
	padding: 1em 0 ;
}

footer > ul {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	text-align: center;
}

footer > ul > li > a {
	color: var(--ash);
}

footer > ul > li > a:hover {
	background-color: var(--deep-pink);
}

footer > ul > li:not(:last-child){
	padding-right: 1em;
}

#spinner {
    display: none;
    animation: spin 2s linear infinite ;
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
}

#slider-track {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
#slider-track .card {
  /*scroll-snap-align: start;*/
}

@-moz-keyframes spin { 
    from { -moz-transform: rotate(0deg); } 
    to {-moz-transform: rotate(360deg);}
}
@-webkit-keyframes spin { 
    0% { -webkit-transform: rotate(0deg); } 
    100% { -webkit-transform: rotate(360deg); } 
}

@keyframes spin {
    100% {
        transform: rotate(0deg); 
    }
    
    to {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 375px){
    footer > ul {
    	display: block;
    	flex-direction: column;
    	list-style-type: none;
    	text-align: center;
    }
    
    footer > ul > li:not(:last-child){
    	padding-right: 0;
    }
    
    .testimonial-container {
        
    }
}


@media only screen and (max-width: 768px){
    footer > ul > li:not(:last-child){
    	padding-right: 1em;
    }
    
	.show-on-mobile {		
		z-index: 3;
		display: block;
	}

	#menu {
		position: absolute;
		width: 100vw;
		height: 100vh;
		background-color: lightgray;
		opacity: 0.97;
		z-index: 1;
	}

	#menu > ul {
		position: relative;
		list-style-type: none;
		display: block;
		flex-direction: column;
		color: var(--ash);
		top: 40%;
		text-align: center;
	}

	#menu > ul > li {
		margin-top: 1.5em;
		color: black;

	}

	#menu > ul > li > a {
		color: var(--deep-pink);
	}

	footer > ul {
		display: block;
		flex-direction: column;
		list-style-type: none;
	}

}