@charset "utf-8";
::-webkit-scrollbar {
  width: 10px; 
  background-color: #1b4c39;
}
::-webkit-scrollbar-thumb {
  background-color: #1b4c39;
  border-radius: 15px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
body {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #080603;
  color: #fff;
}
/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}
.logo-container {
  position: relative;
  width: 100px;
  height: 100px;
}
.pre-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.pre-logo.active {
  opacity: 1;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
	background: #080904b3;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 clamp(1rem, -.699rem + 7.2492vw, 8rem);
}
.logo img {
	width: 70px;
}
.logo h1 {
    font-size: 18px;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  cursor: pointer;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
}
main {
  position: relative;
  background: #080904;
  width: 100%;
}
i.fas.fa-download.download-icon {
    font-size: 14px;
}
.hero-section-one {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.section-one {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.main-ring {
    position: relative;
    aspect-ratio: 1;
    z-index: 1;
    height: auto;
    width: 100%;
}
.hero {
    position: relative;
    height: 100vh;
	background: url("../images/code-bg-new.jpg") no-repeat center center;
	background-size: cover;
}
.center {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	width: 30%;
}
.name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 3.5rem;
    text-align: right;
    justify-content: center;
}
.name h1 {
    font-size: clamp(24px, 5vw, 36px);
	margin: 5px auto;
}
.name-info {
	font-size: 15px;
}
.role {
    padding-left: 3.5rem;
    display: flex;
    text-align: left;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.heading h1 {
    font-size: clamp(24px, 5vw, 36px);
	text-align: center;
	margin: 0;
}
.heading p {
	text-align: center;
    font-size: 16px;
}
.profile-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #319B72, #267355, #1A4C39);
  background-size: 200% 200%;
  animation: moveGradient 8s ease infinite;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.profile-circle-stroke {
    border: 1px solid #9cbcff;
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    box-sizing: border-box;
    transition-origin: center center;
}
.profile-circle::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, #ffffff55, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  border-radius: 50%;
  z-index: 0;
}
.profile-circle img {
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}
.main-ring img {
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 80vh;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.menu-toggle {
	display: none;
}
.about-secc {
    padding: 50px 0px;
    background: #080904 !important;
}
.about-main {
    display: flex;
    margin: 0 40px;
}
.about {
    width: 60%;
    padding: 15px;
	margin: auto;
}
.one p {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
}
/****Slider****/
.swiper { width: 100%; height: auto; }
.swiper-slide { width: 60%; }
.slide-inner {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease;
}
.slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-slide-active .slide-inner {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 3;
}
.swiper-slide-next .slide-inner,
.swiper-slide-prev .slide-inner {
  transform: scale(0.85);
  opacity: 0.55;
}
/**************/
.about-secc .heading {
    margin-bottom: 50px;
}
.heading p {
    text-align: center;
    font-size: 16px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.contact {
    width: 90%;
    margin: auto;
    padding: 70px 0px;
    background: #3f3f3f69;
    border-radius: 20px;
    border: 1px solid #424242;
}
.contact .heading {
	margin-bottom: 0px;
}
.get-in-touch {
    display: flex;
    justify-content: center;
    background: #449676;
    width: 200px;
    margin: auto;
    padding: 12px;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    margin: 30px auto 0px auto;
}
@media only screen and (max-width: 990px) {
	.hero-section-one {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.center {
		width: 250px;
		margin: 50px auto;
	}
	.name {
		padding: 0px;
		text-align: center;
		align-items: center;
	}
	.role {
		padding: 0px;
		justify-content: center;
		text-align: center;
	}
	.main-ring img {
		width: 320px;
	}
	 nav ul {
		 flex-direction: column;
		 background: #000000c7;
		 position: absolute;
		 top: 60px;
		 left: 0;
		 width: 100%;
		 padding: 0 1rem;
		 overflow: hidden;
		 max-height: 0;
		 transition: max-height 0.3s ease-in-out;
	}
	nav ul.show {
		max-height: 300px;
		padding: 1rem;
	}
	.logo {
		width: 50%;
	}
	.menu-toggle {
		display: block;
		cursor: pointer;
		font-size: 24px;
		width: 50%;
        text-align: right;
	}
	.about-secc {
		padding: 30px 0;
	}
	.about-main {
		margin: 0 20px;
	}
	.about {
		width: 100%;
	}
	.one p {
		font-size: 18px;
		line-height: 24px;
	}
	.swiper-slide { width: 95%; }
	.contact {
		padding: 60px 10px;
	}
	.get-in-touch {
		width: 130px;
		font-size: 16px;
	}
}