@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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins',sans-serif;
}
:root{
    --bg-color:#0a0a0a;
    --second-bg-color:#1a1a1a;
    --text-color:#fff;
    --main-color:#00d4ff;
    --accent-color:#ff6b6b;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    --gradient-tertiary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-primary: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-secondary: 0 0 30px rgba(255, 107, 107, 0.3);
    --shadow-tertiary: 0 0 40px rgba(102, 126, 234, 0.3);
}
html{
    font-size: 62.5%;
    overflow-x:hidden;
}
section {
    min-height: 100vh;
    color: var(--text-color);
    padding: 10rem 9% 2rem;
    position: relative;
}
body{
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--second-bg-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

/* Particle Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Header Styles */
.header{
   position: fixed;
   top: 0;
   left:0;
   width: 100%;
   z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.header.sticky{
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}
.logo{
    font-size: 2.8rem;
    color: var(--text-color);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}
.logo:hover::after {
    width: 100%;
}
.logo:hover {
    transform: scale(1.05);
}
.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}
.navbar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}
.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar a:hover::before,
.navbar a.active::before {
    opacity: 0.1;
}
.navbar a:hover::after,
.navbar a.active::after {
    width: 80%;
}
.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    transform: translateY(-2px);
}
#menu-icon {
    display: none;
    font-size: 2.4rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}
#menu-icon:hover {
    color: var(--main-color);
    transform: scale(1.1);
    background: rgba(0, 212, 255, 0.1);
}

/* Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.home::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    animation: homeGlow 4s ease-in-out infinite alternate;
}

@keyframes homeGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.home-img img {
    width: 35vw;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.home-img img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}
.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}
.home-content h3:nth-last-of-type(2){
    margin-bottom: 2rem;
}
span{
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}
span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
span:hover::after {
    transform: scaleX(1);
}
.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}
.social-media a {
    display: inline-flex;
    color: var(--main-color);
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}
.social-media a:hover::before {
    left: 0;
}
.social-media a:hover{
    color: var(--bg-color);
    box-shadow: var(--shadow-primary);
    transform: translateY(-5px) scale(1.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    box-shadow: var(--shadow-primary);
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* About Section */
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    background: var(--second-bg-color);
    border-radius: 20px;
    margin: 2rem 0;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.about:hover::before {
    transform: translateX(100%);
}
.about-img img {
    width: 35rem;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.about-img img:hover {
    transform: scale(1.05) rotate(-2deg);
}
.heading {
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.about-content h2 {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.about-content h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--main-color);
}
.about-content p{
    font-size: 1.8rem;
    margin: 2rem 0 3rem;
    text-align: center;
    line-height: 1.8;
    opacity: 0.9;
}
.about-content .btn {
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

/* Services Section */
.services{
    padding: 4rem 0;
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.services h2 {
    margin-bottom: 5rem;
}
.services-container{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.services-container .services-box {
    background: linear-gradient(145deg, var(--second-bg-color), var(--bg-color));
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    flex: 1 1 35rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.services-container .services-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}
.services-container .services-box:hover::before {
    left: 100%;
}
.services-container .services-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.services-container .services-box:hover::after {
    opacity: 0.05;
}
.services-container .services-box:hover {
    border-color: var(--main-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}
.services-box i {
    font-size: 7rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.services-box:hover i {
    transform: scale(1.1);
}
.services-box h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}
.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
    background: var(--second-bg-color);
    border-radius: 20px;
    margin: 2rem 0;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.portfolio h2 {
    margin-bottom: 4rem;
}
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.portfolio-container .portfolio-box {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 300px;
    background: var(--bg-color);
}
.portfolio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.portfolio-box:hover::before {
    opacity: 0.1;
}
.portfolio-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}
.portfolio-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
    position: relative;
    z-index: 2;
}
.portfolio-box:hover img {
    transform: scale(1.1);
}
.portfolio-box .portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(100%);
    transition: .5s ease;
    z-index: 3;
}
.portfolio-box:hover .portfolio-layer {
    transform: translateY(0);
} 
.portfolio-layer h4{
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--bg-color);
}
.portfolio-layer p {
    font-size: 1.6rem;
    margin: .3rem 0 2rem;
    color: var(--bg-color);
    line-height: 1.6;
}
.portfolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--bg-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.portfolio-layer a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.portfolio-layer a i {
    font-size: 2rem;
    color: var(--main-color);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.contact h2 {
    margin-bottom: 3rem;
}
.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--second-bg-color);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 212, 255, 0.1);
}
.contact form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}
.contact form:hover::before {
    opacity: 0.02;
}
.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--bg-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    margin: .7rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.contact form .input-box input:focus,
.contact form textarea:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    outline: none;
    transform: translateY(-2px);
}
.contact form .input-box input {
    width: 48%;
}
.contact form textarea {
    resize: none;
    min-height: 150px;
}
.contact form .btn {
    margin-top: 2rem;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 3rem 9%;
    background: var(--second-bg-color);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}
.footer-text p{
    font-size: 1.6rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}
.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.footer-iconTop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.footer-iconTop a:hover::before {
    left: 100%;
}
.footer-iconTop a:hover{
    box-shadow: var(--shadow-primary);
    transform: translateY(-3px);
}
.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

/* Animation classes */
.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

    .glow {
        animation: glow 2s ease-in-out infinite;
    }
    
    /* Enhanced cursor styles */
    .cursor-pointer {
        cursor: pointer;
    }
    
    /* Loading spinner */
    .loading {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Enhanced focus styles */
    .btn:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid var(--main-color);
        outline-offset: 2px;
    }
    
    /* Gradient borders */
    .gradient-border {
        position: relative;
        background: var(--second-bg-color);
        border-radius: 20px;
    }
    
    .gradient-border::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 2px;
        background: var(--gradient-primary);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
    }

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text animation */
.gradient-text {
    background: linear-gradient(45deg, var(--main-color), var(--accent-color), var(--main-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width:1200px) {
    html{
        font-size: 55%;
    }
    .home {
        gap: 2rem;
    }
}
@media (max-width:991px) {
    .header{
        padding: 2rem 3%;
    }
    section{
        padding: 10rem 3% 2rem;
    }
    .services {
        padding-bottom: 7rem;
    }
    .portfolio{
        padding-bottom: 7rem;
    }
    .contact{
        min-height: auto;
    }
    .footer{
        padding: 2rem 3%;
    }
}
@media (max-width:768px) {
    #menu-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
        display: none;
        border-radius: 0 0 20px 20px;
    }
    .navbar.active{
        display: block;
    }
    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 2rem 0;
    }
    .home{
        flex-direction: column;
        text-align: center;
    }
    .home-content h3 {
        font-size: 2.6rem;
    }
    .home-content h1{
        font-size: 4.5rem;
    }
    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }
    .about {
        flex-direction: column-reverse;
        text-align: center;
    }
    .about-img img{
        width: 70vw;
        margin-top: 4rem;
    }
    .services h2 {
        margin-bottom: 3rem;
    }
    .portfolio h2 {
        margin-bottom: 3rem;
    }
    .portfolio-container{
        grid-template-columns: repeat(2,1fr);
    }
    .contact form .input-box input {
        width: 100%;
    }
}
@media (max-width:617px) {
    .portfolio-container{
        grid-template-columns: 1fr;
    }
    .services-container .services-box {
        flex: 1 1 100%;
    }
}
@media (max-width:450px) {
    html{
        font-size: 50%;
    }
    .contact form {
        padding: 2rem;
    }
    .about {
        padding: 2rem;
    }
    .portfolio {
        padding: 2rem;
    }
}
@media (max-width:365px) {
    .home-img img {
        width: 90vw;
    }
    .about-img img {
        width: 90vw;
    }
    .footer{
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .footer p {
        text-align: center;
    }
}
