*{
    margin:0;
    padding: 0;
    font-family: 'Open Sans', 'Helvetica', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    background: #000000;
    color:#000000;
}

#header{
    #header {
    background: transparent;
    height: auto;
}

}
.container{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #080808;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 10%; 
}

.logo{
    width: 140px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color:#fff;
    text-decoration: none;
    font-size:18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #43e97b;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width:100%;
}
/*-------------about----------*/
#about{
    padding:60px 0;
    color: #ababab;
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}

.about-col-1{
    flex-basis: 35%;
}

.about-col-1 img{
    width: 100%;
    border-radius: 15px;
    background-color: #303030;
}

.about-col-2{
    flex-basis: 60%;
}

.sub-title{
    font-size: 60px;
    font-weight: 600;
    color:#fff
}

.tab-titles{
    display: flex;
    margin:20px 0 40px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #43e97b;
    position:absolute;
    left:0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width:50%;
}

.tab-contents ul li{
    list-style: none;
    font-size: 15px;
    margin: 10px 0;   
}

.tab-contents ul li span{
    color:#43e97b;
    font-size: 16px;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display:block;
}

/* ------------services------------*/
#services{
    color:#ffffff;
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size:13px;
    font-weight:300;
    border-radius:10px;
    transition: background 0.5s, transform 0.5s;
}

.services-list div i{
    font-size: 50px;
    margin-bottom:30px;
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a{
    text-decoration:none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;

}
.services-list div:hover{
    background: #43e97b;
    transform:translateY(-10px);
}

/* ---------portfolio-------------- */
#portfolio{
    padding: 50px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.work img{
     width: 100%;
     border-radius: 10px;
     display:block;
     transition: transform 0.5s;
}
.layer{
    color:#fff;
    width:100%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.6), #43e97b);
    border-radius: 10px;
    position:absolute;
    left:0;
    bottom:0;
    overflow: hidden;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size:13px;
    transition: height 0.5s;
}

.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a{
    margin-top: 20px;
    color: #43e97b;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align:center;
}

.work:hover img{
    transform: scale(1.1);
}

.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border:1px solid #43e97b;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color:#fff;
    transition: background 0.5s;
}
.btn:hover{
    background:#43e97b;
}

/*-----------------contact-----------------*/
.contact-left{
    flex-basis: 35%;
    color:#ffffff
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}

.contact-left p i{
    color:#43e97b;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size:  30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover{
    color: #43e97b;
    transform: translateY(-5px);

}

.btn.btn2{
    display: inline-block;
    background: #43e97b;
}

.contact-right form{
   width:100%;
}
 
form input, form textarea{
    width:100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius:6px;
}

form btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.copyright{
    width: 100%;
    text-align:center;
    padding: 25px;
    color:#ffffff;
    background: #555555;
    font-weight: 300;
    margin-top: 30px;
}

/*-------------------css for small screen------------------*/
nav .fas{
    display: none;
}
@media only screen and (max-width: 709px){
    #header{
        background: transparent;

    }
    .header-text{
        margin-top: 140%;
        font-size: 16px;
    }
    .header-text h1{
        font-size: 30px;
    }
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }


    .hero-content {
        order: 2;
        text-align: center;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        overflow-wrap: break-word;
    }



    .large-image-container {
        width: 100%;
        max-width: 380px;
        height: auto;
        margin: auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .profile-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        -webkit-text-fill-color: white;
        color: white;
        background: none;
        word-break: break-word;
    }

    .subtitle {
        font-size: 1.1rem;
        margin: 0.4rem 0;
        color: #00d4ff;
    }

    .description {
        font-size: 0.95rem;
        color: #cccccc;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        background: #00d4ff;
        border-radius: 25px;
        text-decoration: none;
        color: white;
        display: inline-block;
    }



    nav .fa-solid{
        color:#ffffff;
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: #43e97b;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }

    nav ul .fa-solid{
         position: absolute;
         top: 25px;
         left: 25px;
         cursor: pointer;
    }
    .sub-title{
        font-size:40px
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size:17px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .copyright{
        font-size: 17px;
    }

}

#msg{
    color:#61b752;
    margin-top: -40px;
    display: block;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #43e97b;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #43e97b;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #43e97b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 50px;
    position: relative;
    overflow: hidden;
    
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInLeft 1s ease;
    font-weight: 700;
    background: linear-gradient(135deg, #43e97b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #43e97b;
    animation: fadeInLeft 1s ease 0.2s both;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInLeft 1s ease 0.4s both;
    line-height: 1.8;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #43e97b 0%, #0099cc 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInLeft 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.large-image-container {
    position: relative;
    width: 450px;
    height: 580px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #43e97b 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(0, 212, 255, 0.2),
        inset 0 0 0 2px rgba(0, 212, 255, 0.3);
    animation: fadeInRight 1s ease 0.3s both;
}

.large-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.1);
}

.large-image-container:hover .profile-image {
    transform: scale(1.02);
}

.professional-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 212, 255, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 15%;
    left: -10px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 50%;
    right: -5px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: -15px;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 80%;
    right: -8px;
    animation-delay: 6s;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
