@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root{
    --font-family: "Roboto", sans-serif;
    --orange: #F15A24;
    --font-black: #1E1E1E;
    --bg-white: #D9D9D9;
    --white: #ffffff;
    --black: #000000;
    --bgblack: #262626;
}

*{
    font-family: var(--font-family);
	box-sizing: border-box;
	transition: all 0.4s;
}

body {
	background-color: var(--black);
	color: var(--white);
	box-sizing: border-box;
}

.container {
	max-width: 1600px;
	padding: 0 60px;
}

.button{
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--orange);
	background: transparent;
	color: white;
	border-radius: 500px;
	text-decoration: none;
	padding: 8px 20px;
    width: fit-content;
    font-size: 20px;
    font-weight: bold;
	cursor: pointer;
}

.button::after{
	position: relative;
	display: block;
	content: url(../image/button-arrow.svg);
	filter: brightness(1) invert(10);
	transform: rotate(0deg);
	transition: all 0.4s;
}

.button:hover::after{
	transition: all 0.4s;
	transform: rotate(45deg);
}

.top-heading {
    text-align: center;
    font-size: 128px;
    font-weight: bolder;
	opacity: 0.2;
    line-height: 90px;
	color: transparent;
    -webkit-text-stroke: 2px var(--bg-white);
}

.bottom-heading {
    font-size: 50px;
    text-align: center;
    font-weight: 300;
}

li,
p{
	font-size: 18px;
	color: var(--bg-white);
	line-height: normal;
}

b{
	color: var(--orange);
	font-weight: unset;
}

a {
	text-decoration: none;
	color: unset;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1500px;
	padding: 0 60px;
	margin: 0 auto;
}

section {
	padding: 100px 0;
}

body:after {
	position: fixed;
    content: '';
    backdrop-filter: blur(16px);
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    z-index: 0;
	transition: all 1s;
}

body.active-menu:after {
	left: 0;
	transition: all 1s;
}

body.active-menu {
    overflow: hidden;
    position: relative;
}

/* === Scrollbar === */

::-webkit-scrollbar {
    width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-white);
	border-radius: 500px;
	padding: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 500px;
	padding: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--bgblack);
}

/* === Scrollbar === */
/* === Header === */

header {
	position: fixed;
    top: 0;
    width: 100%;
	z-index: 999;
	padding: 0 60px;
	transition: all 0.4s;
}

header.header-white.active {
	transform: translateY(-100%);
	transition: all 0.4s;
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 30px 0;
}

header.header-white nav {
	background: #0000007a;
    padding: 10px 20px;
    border-radius: 500px;
    margin-top: 20px;
    backdrop-filter: blur(5px);
	box-shadow: 0 0 30px 6px #ffffff21;
}

header nav .logo {
	width: 70px;
	height: 70px;
	object-fit: contain;
	object-position: center;
	flex: 0 0 auto;
}

header.header-white nav .logo {
	width: 60px;
	height: 60px;
}

header nav .nav-menu {
	width: calc(100% - 70px - 150px - 15px);
}

header nav .nav-menu ul {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 30px;
}

header nav a {
	font-weight: bold;
	color: var(--bg-white);
	font-size: 18px;
}

header nav a:hover,
header nav a.active {
	color: var(--orange);
}

header nav .bookcall {
	width: 150px;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 30px;
}

header nav .bookcall a {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 10px;
}

header nav .bookcall a svg {
	transform: rotate(0);
	transition: all 0.4s;
}

header nav .bookcall a:hover svg {
	transform: rotate(45deg);
	transition: all 0.4s;
}

header nav .bookcall .menu-btn{
	background: transparent;
    border: 0;
    border-radius: 0;
}

header nav .bookcall button.menu-btn.active svg line{
	transform: none;
}

header nav .bookcall button.menu-btn.active svg line{
	transform: translateX(10px);
}

header nav .bookcall button.menu-btn.active svg line:first-child {
	transform: translateX(5px);
}

header nav .bookcall button.menu-btn.active svg line:last-child {
	transform: translateX(0px);
}

header nav .bookcall .menu-btn svg{
	stroke: var(--white);
	width: 40px;
	height: 40px;
}

header nav a.mobile-call,
header nav #toggle-menu {
	display: none;
}

header nav a.call {
	display: flex;
}

/* === Header === */
/* === Scroll To Top === */

#scrollToTop {
	position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 500px;
    padding: 10px;
    width: 44px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
}

#scrollToTop:hover {
	background-color: var(--bgblack);
	box-shadow: 0 0 30px 6px #ffffff21;
}

.active#scrollToTop {
	opacity: 1;
	transform: translateY(0);
}

/* === Scroll To Top === */
/* === Banner === */

.banner .banner-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner .experiences {
	font-size: 36px;
	font-weight: 300;
	margin-bottom: 50px;
}

.banner .experiences b {
	display: block;
}

.banner .hello {
	font-size: 100px;
	font-weight: 200;
	margin-bottom: 10px;
}

.banner h1 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.banner h2 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.banner h2 b {
	color: var(--white);
}

.banner .button-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	gap: 30px;
}

.banner .banner-inner .banner-img {
    width: 40%;
}

section.banner {
	padding-top: 150px;
}

/* === Banner === */

/* === About === */

.about .about-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.about .about-inner .about-img {
	width: 50%;
}

.about .about-inner .about-img figure {
	margin: 0;
}

.about .about-inner .about-img figure img {
	width: 60%;
}

.about .about-details {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.about .about-details p {
	font-size: 24px;
	line-height: 36px;
	font-weight: 300;
	margin-bottom: 50px;
}

/* === About === */

/* === Services === */

.services .services-inner {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
	overflow-x: auto;
	padding-bottom: 20px;
}

.services-img {
	min-width: 35%;
	max-width: 500px;
}

.services .services-inner h2 {
	font-size: 30px;
	text-align: center;
	color: var(--white);
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}

.services .services-inner p {
	font-size: 22px;
	text-align: center;
	color: var(--bg-white);
	font-weight: 300;
	margin: 0;
}

/* === Services === */
/* === Portfolio === */

.portfolio-inner{
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
}

.portfolio-inner .portfolio-card figure {
	border-radius: 30px;
	overflow: hidden;
	max-height: 300px;
}

.portfolio-inner .portfolio-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.portfolio-card .portfolio-card-inner{
	margin-top: 30px;
	display: block;
}

.portfolio-card .portfolio-card-inner h2 {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 10px;
}

.portfolio-card .portfolio-card-inner h2::after{
	position: relative;
	display: block;
	content: url(../image/button-arrow.svg);
	filter: brightness(1) invert(10);
	transform: rotate(0deg);
	transition: all 0.4s;
}

.portfolio-card .portfolio-card-inner:hover h2::after{
	transition: all 0.4s;
	transform: rotate(45deg);
}

.portfolio-card .portfolio-card-inner p {
	font-size: 24px;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 300;
	margin-bottom: 20px;
}


.portfolio-card .portfolio-card-inner ul {
	display: flex;
	justify-content: start;
	align-items: stretch;
	gap: 10px;
}

.portfolio-card .portfolio-card-inner ul li {
	font-size: 16px;
	letter-spacing: 1px;
	padding: 6px 10px;
	color: var(--white);
	background-color: var(--bgblack);
	border-radius: 4px;
	text-transform: capitalize;
	font-weight: 300;
	margin-bottom: 0;
}

/* === Portfolio === */

/* === Testimonials === */

.testimonials .testimonials-inner {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
}

.testimonials .testimonials-inner .testimonials-card {
	background-color: var(--bg-white);
	border-radius: 30px;
	padding: 25px;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-profile {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 20px;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-profile img{
	background-color: var(--bgblack);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-profile .testimonials-details h2 {
	font-size: 32px;
	color: var(--black);
	font-weight: bold;
	margin-bottom: 20px;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-profile .testimonials-details p {
	font-size: 24px;
	color: var(--font-black);
	font-weight: 500;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-text {
	margin-top: 30px;
}

.testimonials .testimonials-inner .testimonials-card .testimonials-text p {
	font-size: 22px;
	line-height: 28px;
	font-weight: 400;
	margin-top: 30px;
	color: var(--font-black);
	margin-bottom: 0;
}

/* === Testimonials === */

/* === Achievements === */

.achievements .achievements-inner {
	background-color: var(--bg-white);
	padding: 40px;
	border-radius: 30px;
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 0px;
}

.achievements .achievements-inner .achievements-card:not(:last-child) {
	border-right: 4px solid var(--font-black);
}

.achievements .achievements-inner .achievements-card h2 {
	font-size: 64px;
	font-weight: bold;
	color: var(--orange);
	text-align: center;
}

.achievements .achievements-inner .achievements-card p {
	font-size: 24px;
	font-weight: 300;
	text-align: center;
	color: var(--font-black);
}

/* === Achievements === */

/* === Contact === */

.contact .contact-inner {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 50px;
}

.contact .contact-inner p {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	text-transform: capitalize;
}

.contact .contact-inner .connect-card {
	background-color: var(--bg-white);
	border-radius: 20px;
	padding: 40px;
	position: relative;
	transition: all 0.4s;
}

.contact .contact-inner .connect-card:hover {
	transition: all 0.4s;
	background-color: var(--orange);
}

.contact .contact-inner .connect-card h2 {
	font-size: 50px;
	font-weight: 300;
	color: var(--font-black);
	margin-top: 20px;
	text-align: center;
}

.contact .contact-inner .connect-card img {
	position: absolute;
	top: 10px;
	right: 10px;
}

/* === Contact === */

/* === Footer === */

/* footer {
	background-color: var(--bgblack);
	padding: 40px 0;
} */

footer {
	margin-bottom: 50px;
}

footer .footer-social ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 10px 15px;
	width: fit-content;
	margin: 0 auto;
	border-radius: 500px;
	background: #0000007a;
    backdrop-filter: blur(5px);
	box-shadow: 0 0 30px 6px #ffffff21;
}

footer .footer-social ul li a {
	background-color: var(--orange);
	border-radius: 500px;
	aspect-ratio: 1 / 1;
	width: 50px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
}

footer .footer-social ul li a:hover {
	background-color: var(--bgblack);
}

footer .footer-social ul li a svg {
	filter: brightness(0) invert(10);
	width: 30px;
	height: 30px;
}

footer .copy-right {
	text-align: center;
	font-size: 18px;
	font-weight: 300;
	margin-top: 20px;
	color: var(--bg-white);
	margin-top: 50px;
}

/* === Footer === */

/* === Pop up === */

div#popupModal {
	position: fixed;
    bottom: 80px;
    right: 10px;
    backdrop-filter: blur(10px);
	box-shadow: 0 0 30px 6px #ffffff21;
    border-radius: 4px;
    padding: 20px 20px;
	transform: translateX(200%);
}

div#popupModal.show {
	transform: translateX(0);
	transition: all 0.4s;
}

div#popupModal .modal-content .popup-close {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 10px;
    cursor: pointer;
}

div#popupModal .modal-content #modalMessage {
    font-size: 18px;
    font-weight: 500;
}

/* === Pop up === */

/* === Form === */


form#contactForm {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    min-width: 500px;
    width: 40%;
    margin: 50px auto;
}

form#contactForm input {
    width: calc(50% - 15px);
	border-radius: 4px;
    background: transparent;
    color: white;
    border: 2px solid var(--orange);
    padding: 10px;
	font-size: 16px;
    font-weight: 500;
}

form#contactForm textarea#message {
    width: 100%;
	border-radius: 4px;
    background: transparent;
    color: white;
    border: 2px solid var(--orange);
    padding: 10px;
	font-size: 16px;
    font-weight: 500;
}

/* === Form === */