html {
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}
:root{
    --bg-color:#080808;
    --second-bg-color:#131313;
    --text-color:white;
    --main-color:#00a2ff;
}
body{
    background: var(--bg-color);
    color: var(--text-color);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
}
.logo span{
    color: var(--main-color);
}
nav a{
    font-size: 1.1rem;
    color: var(--text-color);
    margin-left: 2.5rem;
    font-weight: 500;
    transition: 0.3s ease;
}
nav a:hover, nav a.active{
    color: var(--main-color);
}
.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    gap: 2rem;
    background: var(--bg-color);
    height: 100vh;
    padding: 0 9% 0;
}
.home-content h3{
    font-size: 1.5rem;
    font-weight: 700;
}
.home-content h1{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
}
.home-head{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
span{
    color:var(--main-color);
}
.home-content p{
    font-size: 1.1rem;
    margin: 2rem 0;
}
.social-icons{
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.social-icons a img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: invert(53%) sepia(87%) saturate(2855%) 
    hue-rotate(178deg) brightness(101%) contrast(106%);
    transition: 0.3s ease;
    object-fit: cover;
}
.social-icons a img:hover{
    filter: invert(70%) sepia(90%) saturate(3000%) 
    hue-rotate(180deg) brightness(120%);
    transform: scale(1.1);
    box-shadow: 0 0 15px #00a2ff;
}
.btn{
   position: relative;
   z-index: 100;
   display: inline-block;
   padding: 15px 25px;
   margin: 10px;
   display: inline-block;
   background: var(--main-color);
   border-radius: 3rem;
   color: var(--bg-color);
   font-size: 1rem;
   font-weight: 600;
   transition: 0.5s ease;
}
.btn:hover{
    box-shadow: 0 0 20px var(--main-color);
}
.home-img .img-box{
    position: relative;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
}
.home-img img{
    width: fit-content;
    height: fit-content;
    object-fit: cover;
}
header{
    z-index: 1000;
}
.services {
    padding: 100px 7%;
    background: #080808; /* Dark background like your home page */
}

.heading {
    font-size: 4.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}

.heading span {
    color: #00abf0; /* Oyage blue color eka */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-box {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: 0.4s ease-in-out;
}

.services-box:hover {
    border-color: #00abf0;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.services-box i {
    font-size: 5rem;
    color: #00abf0;
    margin-bottom: 1rem;
}

.services-box h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.services-box p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.services-box .btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: #00abf0;
    border-radius: 4rem;
    color: #080808;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn {
    background: transparent;
    border: 2px solid #00a2ff;
    color: #00a2ff;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn:hover {
    background: #00a2ff;
    color: #080808;
    box-shadow: 0 0 20px rgba(0,242,254,0.4);
}
body {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
body.page-loaded {
    opacity: 1;    
}
.fade-up{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: large;
}

