@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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');

:root{
    --bg-black-900:#f2f2fc;
    --bg-black-100:#fdf9ff;
    --bg-black-50:#e8dfec;
    --text-black-900:#302e4d;
    --text-black-700:#504e70;

}

html, body {
    /* overflow: hidden; */
    margin: 0; /* Optional: Remove default margin */
    
}


body{
    margin:0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins' sans-serif;
    
}

*{
    margin:0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

::before,::after{
    box-sizing: border-box;
}

/* change color white to black  */
.section{
    background: rgb(0, 0, 0);
    min-height: 100vh;
    padding: 0 30px;
    z-index: 0;
    opacity: 1;
    position: fixed;
    left: 270px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.section.back-section{
    z-index: 1;
}
.section.active{
    z-index: 2;
    opacity: 1;
    animation: slideSection 1s ease;
}

@keyframes slideSection{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}
 
.hidden{
    display: none !important;
}

.padd-15{
    padding-left: 15px;
    padding-right: 15px;
}

.ul{
   list-style: none;
}

.container{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    /* padding-left: 40px; */
}
 
.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.section .container{
    padding-top: 60px;
    padding-bottom: 70px;
}

.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 5vh;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 45px;
    color: white;
    /* color: #ec1839; */
    font-weight: 700;
    position: relative;
}

.section-title h2::after{
    content: "";
    height: 4px;
    width: 50px;
    background-color: #ec1838;
    position: absolute;
    top: 100%;
    left: 0;
}

.section-title h2::before{
    content: "";
    height: 4px;
    width: 25px;
    background-color: #ec1838;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

/* aside */
 
.aside{
    width: 270px;
    height: 100%;
    background-color: rgba(255, 145, 0, 0.905);
    position:fixed;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 30px;
    top: 0;
    z-index: 10;
    flex-direction: column; /* Stack children vertically */
    align-items: flex-start; /* Align items to the start */
    padding: 1rem; /* Add some padding */
}

.aside .logo{
    position: absolute;
    top: 85px; 
}

.aside .logo a{
    color: var(--text-black-900);
    font-weight: 550;
    /* background-color: red; */
    font-size: 20px;
    letter-spacing: 1.5 px;
    position: relative;
}

.aside .logo span {
    font-weight: 700;
    font-family: 'Clicker Script';
    font-size: 46px;
    margin-right: 8px;
    letter-spacing: 3px;
}

.nav-toggler {
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    background-color: #000000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease ;
} 

.aside .nav-toggler span {
    height: 2px;
    width: 18px;
    background: red;
    display: inline-block;
    position: relative;
}

.aside .nav-toggler.open span{
    background-color: transparent;
}

.nav-toggler .bar {
    height: 3px; /* Thickness of the bars */
    width: 30px; /* Width of the bars */
    background: #ec1838; /* Color of the bars */
    border-radius: 5px; /* Optional rounded corners */
    position: relative; /* Required for positioning pseudo-elements */
    margin: 10px 2.2px; /* Space between bars */
}

.nav-toggler .bar::before{
    content: '';
    height: 2px; /* Thickness of the pseudo-elements */
    width: 18px; /* Width of the pseudo-elements */
    background: #ec1838; /* Color of the pseudo-elements */
    position: absolute; /* Positioning within the bar */
    top: -6px;
    left: 0;
    
}

.aside .nav-toggler.open span::before{
    transform: rotate(45deg);
    top: 0;
}

.nav-toggler .bar::after{
    content: '';
    height: 2px; /* Thickness of the pseudo-elements */
    width: 18px; /* Width of the pseudo-elements */
    background: #ec1838; /* Color of the pseudo-elements */
    position: absolute; /* Positioning within the bar */
    top: 6px;
    left: 0;
    
}

.aside .nav-toggler.open span::after{
    transform: rotate(-45deg);
    top: 0;
}

.nav-toggler .bar::before {
    top: -6px; /* Position above the bar */
}

.nav-toggler .bar::after {
    bottom: -6px; /* Position below the bar */
}

.aside .nav{
    margin-top: 220px;
     padding-left: 20px;
     
}

.nav a {
    color: black; /* Default color */
    text-decoration: none;
}

.aside .nav li{
    margin-bottom: 50px;
    display: block;
}

.fa{
    margin: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.nav a.active {
    color: red; /* Active color */
    font-size: 20px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    padding: 5px 15px;
}

 .not-active{
    font-size: 20px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    color: #302e4d;
    padding: 5px 15px;
}

.active{
    color: red;
    font-size: 20px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    padding: 5px 15px;
} 

.footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
}

.footer-content {
    display: flex;
    gap: 1.2rem; /* Space between icons */
}

.social-icon {
    color: #272222; /* Default icon color */
    font-size: 2rem; /* Icon size */
    text-decoration: none; /* Remove underline */
    transition: color ease-in-out 0.5s; /* Smooth color transition */
}

.social-icon:hover {
    color: #888; /* Color on hover */
}

.btn{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: #fefbfb;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    background: #e1092a;
}

/* HOME */

.home{
 min-height: 100vh;
 display: flex;
}

.home .home-info{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 8vh;
}

.hello-1{
  font-size: 20px;
  font-weight: 400;
  margin: 15px 0;
  color: #ced0e2;
  font-family: Roboto;
}

.my-proffesion{
    
    font-size: 30px;
    margin: 15px 0;
    color: #e8dfec;
    font-family: Poppins;
    /* padding-bottom: 50px; */
}

.typing{ 
    font-family: Poppins;
    font-size: 38px;
    color: red;
}

.home-info p{
    font-family: Roboto;
    margin-bottom: 70px;
    font-size: 20px;
    color: gray;
}

.home .home-img{
    margin-top: 0.5vh;
    flex:0 0 40%;
    max-width: 40%;
   height: 400px;
   position: relative;
   animation: floatImage 4s ease-in-out infinite;
   animation-delay: 1s;
}

.home-img img{
    margin-left: 6vh;
    height: 55vh;
    border-radius: 50%;
    background-color: black;
    /* box-shadow: 5px 10px 40px rgba(255, 247, 247, 0.3);  */
}

@keyframes floatImage {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-34px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* About */
 
 .about .about-content{
   flex:0 0 100%;
   max-width: 100%;
  }

.about .about-content .about-text{
    flex: 0 0 100%;
    max-width:100%;
    margin-top: 4vh;
}

.about .about-content .about-text h3{
    font-size: 27px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    font-family: Poppins;
}

.about .about-content .about-text h3 span{
    font-size: 4.5vh;
    color: #ec1838;
    font-family: Poppins;
}

.about .about-content .about-text p{
    font-size: 18px;
    font-weight: 500;
    line-height: 3.3vh;
    letter-spacing: 0.7px;
    color: rgba(246, 246, 246, 0.507);
    font-family:serif;
    margin-top: 4vh;
    font-family: Roboto;
}

.about .about-content .personal-info{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 5vh;
}

.about .about-content .personal-info .info-item{
    flex: 0 0 50%;
    max-width: 50%;
    
}

.about .about-content .personal-info .info-item p{
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 0, 0, 0.769);
    border-bottom:  1px solid black;
}

.about .about-content .personal-info .info-item p span{
    font-weight: 500;
    color: rgb(128, 115, 96);
    margin-left: 5px;
    /* display: inline-block; */
} 

/* About Percussion */

.about-p .about-p-content{
    flex:0 0 100%;
    max-width: 100%;
   }
 
 .about-p .about-p-content .about-p-text{
     flex: 0 0 100%;
     max-width:100%;
     margin-top: 4vh;
}
 
.about-p .about-p-content .about-p-text h3{
     font-size: 20px;
     margin-bottom: 8px;
     font-weight: 700;  
}
 
 .about-p .about-p-content .about-p-text h3 span{
     color: #ec1838;
     font-size:  35px;
     font-family: Poppins;
 }
 
 .about-p .about-p-content .about-p-text p{
     font-size: 17px;
     font-weight: 500;
     line-height: 25px;
     color: rgba(246, 246, 246, 0.507);
     font-family: Roboto;
 }

 .extra{
    margin-top: 4vh;
 }

 /* Glimpse */

.service {
    background-color: black;
    color: white;
    min-height: 100vh;
    padding: 2rem 1rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.service-item {
    width: 100%;
    width: 33.3%;
    padding: 1rem;
    margin-bottom: 2rem;
}

.service-item-inner {
    background-color: #e6ae6ee5; 
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.6s ease-in-out;
}

.service-item-inner h4 {
    color: rgba(0, 0, 0, 0.811);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

/* Hover effect */
.service-item-inner:hover {
    transform: scale(1.12);
}

/* Responsive styles */


@media (max-width:1199px){
    .aside{
        left: -270px;
    }
    .btn{
        margin-left: 15px;
    }
    
    /* .main-content{
        padding-left: 0;
    } */
     .aside.open {
        left: 0;
     }

     .aside .nav-toggler.open{
        left: 300px;
     }

    .aside .nav-toggler{
        display: flex;
        left: 30px;
    }
    .section{
        left: 0;
    }
    .section.open{
        left: 270px;
    }
     
}

@media(max-width:991px)
{
    .home .home-img{

        display: none;
    }
    .home .home-info{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .btn{
        margin-left: 15px;
    }


    .service .service-item{
        flex: 0 0 50%;
        max-width: 50%;
    }
}



 @media (max-width:1530px)
{
    .aside{
        left: -270px;
    }
    .main-content{
        padding-left: 0;
    }
    .btn{
        margin-left: 15px;
    }
}

@media (max-width:767px)
{
    .service .service-item,
    .about .about-content p{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .service .service-item{
        padding-right:35px ;
    }
    .btn{
        margin-left: 15px;
    }
}


 @media (max-width: 767px) {
    .nav-toggler {
        display: block; 
        cursor: pointer; 

    }
    .btn{
        margin-left: 15px;
    }
    /* .home-info p{
       margin-top: 200px;
    } */

}
  













