/* === General Reset and Global Styles === */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: poppins;
}

/* === Color Variables === */
:root {
    --bg-color:#080808;
    --second-bg-color:#101010;
    --text-color:white;
    --main-color:#ea580c;
}

/* === Base Font and Scroll === */
html{
    font-size: 60%;
    overflow-x: hidden;
}

/* === Body Styling === */
body{
    background: var(--bg-color);
    color: var(--text-color);
}

/* === Header (Navigation Bar) === */
.header{
    position:fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 4rem 15%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* === Hamburger Menu Icon (Hidden on Desktop) === */
#menu-icon{
    font-size: clamp(1.6rem, 2vw, 3rem);;
    color: var(--main-color);
    display: none;
}

/* === Logo Style === */
.logo{
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo:hover{
    transform: scale(1.1);
}

/* === Gradient Text Span === */
span{
    background:linear-gradient(
        270deg,
        #DF8908 10%,
        #ff1d15 100%
    );
    background-clip: text;
    color: transparent;
}

/* === Navbar Links === */
.navbar a{
    font-size :1.8rem;
    color: var(--text-color);
    margin-left:4rem;
    font-weight: 500;
    transition: 0.3s easr-in-out;
    border-bottom: 3px solid transparent;
}

.navbar a:hover{
    color:var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

/* === Gradient Button (Top Right "Contact Me" Button) === */
.gradient-btn{
    font-size: 1.8rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background:linear-gradient(
        270deg,
        #DF8908 10%,
        #ff1d15 100%
    );
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease-in;
    color: white;
    border: none;
    text-wrap: nowrap; 
}

.gradient-btn:hover{
    transform: scale(1.05);
}

/* === Sections Layout === */
section{
    min-height: 100vh;
    padding: 10rem 15%;
}

/* === Home Section Layout === */
.home{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

/* === Home Content Column === */
.home-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* === Home Text Sizes === */
.home-content h1{
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;

}

.home-content h3{
    margin: 1rem 0;
    font-size: 4rem;
}

.home-content p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

/* === Profile Image in Home Section === */
.home-img img{
    width:  30vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}

.home-img img:hover{
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color), 0 0 100px var(--main-color);
}

/* === Social Icons === */
.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover{
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
}

/* === Buttons Group in Home Section === */
.btn-group{
    display: flex;
    gap:1.5rem;
}

/* === Primary Buttons Style === */
.btn{
    display: inline-block;
    padding: 1rem 3rem; 
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color:black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn:hover{
    transform: scale(1.05);
    box-shadow:  0 0 25px var(--main-color),
    0 0 50px var(--main-color);
}

/* === Second Button in Group (Outlined Button) === */
.btn-group a:nth-of-type(2){
    background-color:black ;
    color:var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover{
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}

/* === About Section === */
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    background: var(--second-bg-color);
}


/* === About Image === */
.about-img img {
    width: 30vw;
    height: 30vw; /* Ensure height is equal to width */
    object-fit: cover; /* Ensures image fills the circle */
    border-radius: 50%; /* This makes it round */
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}


.about-img img:hover{
     box-shadow: 0 0 25px var(--main-color),
      0 0 50px var(--main-color),
       0 0 100px var(--main-color);
}

/* === About Content === */
.about-content h2{
    font-size:7rem;
    text-align: left;
}

.about-content p{
    font-size: 1.8rem ;
}

.about-content .btn{
    margin: 3rem 0;
}

/* === Scrollbar Styling === */
::-webkit-scrollbar{
    width:20px;
}

::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}

::-webkit-scrollbar-track{
    background-color: var(--bg-color);
}

/* === Headings General Style === */
.headings{
    text-align: center;
    font-size: 7rem;
    margin: 5rem 0;
}

/* === Services Section === */
.services{
    background-color: var(--bg-color);
    color:black;
}

.services h2{
    color: var(--text-color);
    align-items: center;
}

/* === Service Cards Layout === */
.services-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 2.5rem;
}

/* === Single Service Box === */
.services-box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    height: 600px;
    border-radius: 3rem;
    cursor: pointer;
    border: 5px solid transparent;
    transition: 0.4s ease-in-out;
}

.services-box:hover{
    background-color: var(--second-bg-color);
    color: var(--main-color);
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

/* === Content Inside Service Box === */
.services-info{
    display:flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

.services-info h4{
    font-size: 4rem;
    margin: 2rem 0;
    font-weight: 800;
}

.services-info p{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.7;
}

.services-info i{
    font-size: 8rem;
}

/* === Projects Section === */
.projects{
    background-color: var(--second-bg-color);
}

/* === Project Cards Grid === */
.project-box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}

/* === Single Project Card === */
.project-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem ,2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px var(--main-color);
}

.project-card:hover{
    box-shadow: 0 0 25px var(--main-color),
    0 0 50px var(--main-color);
    transform: scale(1.02);
}

/* === Project Image === */
.project-card img{
    max-width: 300px;
    border-radius: 2em;
    object-fit: cover;
}

.project-card h3{
    font-size: 3rem;
}

.project-card p{
    font-size: 1.6rem;
}



/* === Contact Section === */
.contact{
    background-color:var(--bg-color) ;
}

.contact h2{
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* === Contact Form === */
.contact form{
    display: flex;
    align-items:center ;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0;
    text-align: center;
}

.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    border-radius: 2rem;
    border:  2px solid var(--main-color);
    margin: 1.5rem 0;
    resize: none;
}

/* === Footer Section === */
.footer{
    background-color: var(--second-bg-color);
    padding: 50px 0;
}

.footer .social-icons{
    text-align: center;
}

.footer ul{
    text-align: center;
    font-size: 1.8rem;
}

.footer ul li{
    display: inline-block;
    margin-left: 20px;
}

.footer ul li a{
    color: white;
    border-bottom: 30px solid transparent;
    transition: 0.3s ease-in-out;
}

.footer ul li a:hover{
    border-bottom: 3px solid var(--main-color);
}

.footer .copyright{
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}

.footer p{
    text-align: center;
    font-size: 12px;
}

/* === Responsive Styles (Mobile View) === */
@media(max-width:1258px){


    /* === Show Menu Icon === */
    #menu-icon{
        display: block;
    }

    /* === Mobile Navbar === */
    .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        width:50% ;
        padding: 1rem 3rem;
        background: rgba(0,0,0,0.8);
        border-bottom-left-radius:2rem ;
        border-left: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
        display:none ;
    }

    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        columns: var(--text-color);
    }

    .navbar.active{
        display: block;
    }

    /* === Hide Top Button === */
    .gradient-btn{
        display: none;
    }

    /* === Stack Home Section Vertically === */
    .home{
        flex-direction: column-reverse;
        margin: 5rem 0;
        gap:5rem;
    }

    .home-content{
        align-items: center;
        text-align: center;
    }

    .home-img img{
        width: 56vw;
    }

    /* === Stack About Section Vertically === */
    .about{
        flex-direction: column-reverse;
        text-align: center;
    }

    .about h2{
        text-align: center0; /* Typo: should be center */
        margin: 2rem 0;
    }

    /*.about img{
        width: 52vw;*/
        
}

    /* === Stack Contact Form Inputs Vertically === */
    .contact form{
        flex-direction: column;
    }

