@import url('https://fonts.googleapis.com/css2?family=Belanosima&family=Poppins:wght@300;400;500;600;700;800;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: #081b29;
    --second-bg-color: #112e42;
    --text-color: #ededed;
    --main-color: #00abf0;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}

 /* ===========================================  1.home ======================================  
    ===========================================  1.home ======================================   */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: #112e42;
    display: flex;
    justify-content: space-between;
    align-items:end;
    z-index: 100;
    transition: .3s;

    display: flex;
    align-items: center;
    height: 100px;
}

.header.sticky{
    background: #112e42;
}

.logo{ 
    height: 80px;
    width: auto;
}

.navbar{
    display: flex;
    justify-content: flex-end;
    margin-left:65rem;
   
}

.navbar a{
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active{
    color: var(--main-color);
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none; 
}

section{
    min-height: 100vh;
    padding: 10rem 9% 7rem; 
}

.home{
    display: flex;
    align-items: center;
    padding: 0 9%;
    position: relative; 
}
.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg\ 1920x1080.png') no-repeat;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s; /* Added transition property for opacity */
    opacity: 0.8; /* Set the initial opacity */
    z-index: 1; /* Ensure the overlay is behind other content */
}

/* Hover effect for the overlay */
.home:hover::before {
    opacity: 1; /* Change the opacity on hover */
}

.home-content {
    z-index: 1; /* Ensure the content is above the overlay */
    /* Your existing styles for home-content */
}
.home-content h3{
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h1{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p{
    font-size: 1.6rem;
    text-align: justify;
    padding-right: 500px;
    /* margin: 2rem 0 4rem; */
}


.btn {
    background-color: transparent; /* Transparent initially */
    border: 2px solid transparent; /* Add transparent border initially */
    color: 112e42;
    text-anchor: #112e42;
    padding: 15px 32px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00abf0; /* Blue color */
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 0.8s;
    z-index: -1; /* Push it behind the button text */
    border-radius: 8px; /* Match button's border-radius */
}

.btn:hover::after {
    left: 0;
}

.btn>span {
    position: relative;
    z-index: 1; /* Ensure the text is above the pseudo-element */
}

.fixed-border {
    border-color: #00abf0; /* Red border color */
}


.btn-box.btn a::before{
    background-color:#00abf0;
}






/* ============================================ 2.about ============================================ */
/* ============================================ 2.about ============================================ */

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--second-bg-color);
    padding: 6rem;
}

.heading{
    position: relative;
    font-size: 5rem;
    margin: 3rem;
    margin-top: 2em;
    text-align: center;

}

span{
    color: var(--main-color);
}

.about-img{
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img{
    width: 90%;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
}

.about-img .circle-spin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid var(--second-bg-color);
    border-bottom: .2rem solid var(--second-bg-color);
    border-left: .2rem solid var(--main-color);
    border-right: .2rem solid var(--main-color);
    animation: aboutSpinner 8s linear infinite;
}
.img_class{
    display: flex;
    justify-content: space-evenly;
}

.about-image{
    display: flex;
    justify-content: space-evenly;
    gap: 170px;
}

.about-image-name{
    display: flex;
    justify-content: space-evenly;
    font-size: 2em;
    font-weight: 600;
    gap: 180px;
}

.about-content{
    
    text-align: justify;
}

.about-content h3{
    font-size: 2.6rem;
}

.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.btn-box.btns{
    display: inline-block;
    width: 15rem;
}

.btn-box.btn a::before{
    background: var(--second-bg-color);
}

.education{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 5rem;

}

.education .education-row{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.education-row .education-column{
    flex: 1 1 40rem;
}

.education-column .title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}

.education-column .education-box{
    border-left: .2rem solid var(--main-color);
}

.education-box .education-content{
    position: relative;
    padding-left: 2rem; 
}

.education-box .education-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--main-color);
    border-radius: 50%;
}

.education-content .content{
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.education-content .content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.education-content .content:hover::before{
    width: 100%;
}

.education-content .content .year{
    font-size: 1.5rem;
    color: var(--main-color);
    padding-bottom: .5rem;
}

.education-content .content .year i{
    padding-right: .5rem;
}


.education-content .content h3{
    font-size: 2rem;
}


.education-content .content p{
    font-size: 1.6rem;
    padding-top: .5rem;
    text-align: justify;
}

/* =============================================  3.Services   ============================================= */
/* =============================================  3.Services   ============================================= */

.myworks{
    background: var(--bg-color);
}

.myworks-container h2{
    margin-bottom: 4rem;
}

.myworks-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.myworks-container .myworks-box{
    position: relative;
    height: 60vh;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    border: 2px solid white;
    overflow: hidden;
    display: flex;
}

.myworks-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.myworks-img img{
    width: 100%;
}

.myworks-box .myworks-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
}

.myworks-layer h4{
    font-size: 2.7rem;
}

.myworks-layer p{
    font-size: 1.4rem;
    margin: .3rem 0 1rem;
}

.myworks-layer a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--text-color);
    border-radius: 50%;
}

.myworks-layer a i{
    font-size: 2rem;
    color: var(--second-bg-color);
}

.contact{
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--second-bg-color);
}

.contact form{
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.contact form .input-box{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box .input-field{
    position: relative;
    width: 49%;
    margin: .8rem 0;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea{
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
}

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder{
    color: var(--text-color);
}

.contact form .textarea-field{
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
}

.contact form .focus{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}

.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus,
.contact form .textarea-field textarea:focus~.focus,
.contact form .textarea-field textarea:valid~.focus{
    width: 100%;
}

.contact form .textarea-field textarea{
    resize: none;
}

.contact form .btn-box.btns .btn{
    cursor: pointer;
}



/* ====================  footer 1 =================== */
/* ====================  footer  1=================== */

.footer_class{
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: flex-start;
    color: white;
    margin-top: 10em;
    padding-bottom: 120px;
    /* position: fixed; */
    margin-top: 0em;
    margin-bottom: 100px;

    background-color:  #081b29;
}

.footer_info{
  
    color: white;
    font-size: 1.1em;
    height: 100px;
    width: 900px;
    text-align: justify;
    font-family: 'Poppins',sans-serif;
    padding-top: 1em;
    padding-bottom: 5em;
    line-height: 1.5em ;
}


.site_map{
    color: white;
    font-size: 1.1em;
    height: 100px;
    width: 200px;
    
    font-family: 'Poppins',sans-serif;

    padding-top: 1em;
    padding-bottom: 5em;
    line-height: 1.8em ;
    
}
.site_map a{
    color: white;
    text-decoration: none;
}
.site_map a:hover{
    color: #00abf0;
}

.working_hours{
    color: white;
    font-size: 1.1em;
    text-align: center;
    height: 100px;
    width: 200px;
    
    font-family: 'Poppins',sans-serif;

    padding-top: 1em;
    padding-bottom: 5em;
    line-height: 1.5em ;
}

.underline{
   
    text-decoration: underline;
    text-decoration-color: orange;
    text-underline-offset: 0.3em;
}

.icon{
    display: flex;
    justify-content: flex-start;
    gap: 1em;
    font-size: 1.7em;
    
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    cursor: pointer;
}


/* =============== footer 2 =============== */
/* =============== footer 2 =============== */

.icon_content i {
    font-size: 5rem; /* Adjust as needed */
}

.footer_class {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    color: white;
    padding: 0em;
    background-color: #081b29;
}

.footer_info{
    font-size: 1.5em;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    padding: 1em;
    line-height: 1.5em;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1em;
}

.site_map{
    font-size: 1.5em;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    padding: 1em;
    line-height: 1.8em;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1em;
}

.working_hours {
    font-size: 1.5em;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    padding: 1em;
    line-height: 1.8em;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1em;
}

.site_map a {
    color: white;
}
.site_map a:hover{
    color: #00abf0;
}

.underline {
    text-decoration: underline;
    text-decoration-color: orange;
    text-underline-offset: 0.3em;
}

.icon {
    display: flex;
   
    justify-content: center;
    gap: 1em;
    font-size: 1.7em;
    margin-top: 1em;
    margin-bottom: 1em;
}

        /* ====================  map  =================== */
/* ====================  map  =================== */

#pune_map{
    color: #00abf0;
    height: 50px;
    width: 50px;
    margin-left: 100px;
    /* margin-top: 100px; */
    margin-bottom: 900px;
    font-size: 10px;
}
.pune_p{
    color: white;
    font-size: 15px;
    height: 10px;
    width: 300px;
    margin-bottom: 70px;
    font-weight: 300;
}

#mumbai_map{
    color: #00abf0;
    height: 50px;
    width: 50px;
    margin-left: 100px;
    margin-top: 70px;
    margin-bottom: 500px;
    font-size: 10px
    
}

.mumbai_p{
    color: white;
    font-size: 15px;
    height: 10px;
    width: 300px;
    margin-bottom: 70px;
    font-weight: 300;
}


#map{
    

    height: 300px;
    width: auto;
    margin-top: 250px;
    margin-bottom: 6000px;
    
}


/* ====================  help whatsapp  =================== */
/* ====================  help whatsapp  =================== */


.help-section {
    position: fixed;
    
    bottom: 20px;
    right: 20px;
    font-weight: 700;
    z-index: 1000;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366; 
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-button:hover {
    
    background-color: green;
}

.whatsapp {
    width: 40px; 
    height: auto;
    margin-right: 10px;
    vertical-align: middle; 
    border-radius: 50%;
    z-index: 1000;
}


/* ====================  map  =================== */
/* ====================  map  =================== */

#pune_map{
    color: #00abf0;
    height: 50px;
    width: 50px;
    margin-left: 100px;
    margin-top: 200px;
    margin-bottom: 200px;
    font-weight: 900;
}

#mumbai_map{
    color: #00abf0;
    height: 50px;
    width: 50px;
    margin-left: 100px;
    margin-bottom: 100px;
    font-weight: 900;
}
#map{
    

    height: 300px;
    width: auto;
    margin-bottom: 400px;
    
}

/* BREAKPOINTS */

/* ============================================  responsive  ============================================ */
/* ============================================  responsive  ============================================ */

@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width: 991px){
    .header{
        padding: 2rem 4%;
    }

    section{
        padding: 10rem 4% 2rem;
    }

    .home{
        padding: 0 4%;
    }

    .myworks{
        padding-bottom: 7rem;
    }

    .footer{
        padding: 2rem 4%;
    }
}

@media (max-width: 870px){
    .animate.home-img{
        width: 55%;
    }
    .myworks h2{
        margin-bottom: 3rem;
    }

    .myworks-container{
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px){
    .header{
        background: var(--bg-color);
    }

    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        z-index: 1;
        transition: .25s ease;
        transition-delay: .25s;
    }

    .navbar.active{
        left: 0;
        transition-delay: 0s;
    }

    .navbar .active-nav{
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav{
        left: 0;
        transition-delay: .25s;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }

    .home-imgHover{
        pointer-events: none;
        background: var(--bg-color);
        opacity: .6;
    }
}

@media (max-width : 617px ){
    html{
        font-size: 50%;
    }
}

@media (max-width : 520px){
    html{
        font-size: 50%;
    }

    .home-content h1{
        display: flex;
        flex-direction: column;
    }

    .home-sci{
        width: 160px;
    }

    .home-sci a{
        width: 38px;
        height: 38px;
    }
}

@media(max-width: 462px){
    html{
        font-size: 50%;
    }

    .home-content h1{
        font-size: 5.2rem;
    }

    .education{
        padding: 10rem 4% 5rem 5%;
    }

    .contact form .input-box .input-field{
        width: 100%;
    }

    .myworks-container{
        grid-template-columns: 1fr;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 371){
    .home{
        justify-content: center;
    }

    .home-content{
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .home-content{
        font-size: 5rem;
    }
}

/* KEYFRAMES ANIMATION */

@keyframes aboutSpinner{
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
        border-radius: 50%;
    }
   
}
.icon_content i {
    font-size: 5rem; /* Adjust as needed */
}
 
/* ...................................................To make Responsive .................................................... */



/* Existing Styles */

/* ... (Your existing styles remain unchanged) ... */

/* BREAKPOINTS */

/* ============================================  responsive  ============================================ */
/* ============================================  responsive  ============================================ */

@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width: 991px){
    .header{
        padding: 2rem 4%;
    }

    .navbar{
        margin-left: 0; /* Adjusted for smaller screens */
        display: flex;
        flex-direction: column;
    }
    
    section{
        padding: 10rem 4% 2rem;
    }

    .home{
        padding: 0 4%;
    }

    .myworks{
        padding-bottom: 7rem;
    }

    .footer{
        padding: 2rem 4%;
    }
}

@media (max-width: 870px){
    .animate.home-img{
        width: 55%;
    }
    .myworks h2{
        margin-bottom: 3rem;
    }

    .myworks-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .header{
        background: var(--bg-color);
    }

    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        z-index: 1;
        transition: .25s ease;
        transition-delay: .25s;
        margin-left: 0; /* Adjusted for smaller screens */
    }

    .navbar.active{
        left: 0;
        transition-delay: 0s;
    }

    .navbar .active-nav{
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav{
        left: 0;
        transition-delay: .25s;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }

    .home-imgHover{
        pointer-events: none;
        background: var(--bg-color);
        opacity: .6;
    }
}

@media (max-width : 617px ){
    html{
        font-size: 50%;
    }
}

@media (max-width : 520px){
    html{
        font-size: 50%;
    }

    .home-content h1{
        display: flex;
        flex-direction: column;
    }

    .home-sci{
        width: 160px;
    }

    .home-sci a{
        width: 38px;
        height: 38px;
    }
}

@media(max-width: 462px){
    html{
        font-size: 50%;
    }

    .home-content h1{
        font-size: 5.2rem;
    }

    .education{
        padding: 10rem 4% 5rem 5%;
    }

    .contact form .input-box .input-field{
        width: 100%;
    }
    .about-image{
        max-width: 100%;
        height: auto;
    }
    /* .circle-spin{
        max-width: 200%;
        max-height: 100%;
        height: auto;
        border-radius: 100%;
    } */

    .myworks-container{
        grid-template-columns: 1fr;
    }

    .footer{
        flex-direction: column-reverse;
        margin-bottom: 100px;
    }

    .footer p{
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 371px){
    .home{
        justify-content: center;
    }

    .home-content{
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .home-content{
        font-size: 5rem;
    }
}



/* BREAKPOINTS */

/* Responsive styles for medium-sized screens (max-width: 768px) */
@media (max-width: 768px) {
    
    .footer_info{
        max-width: 100%;
        margin-bottom: 8em; 
    }
    
    .site_map{
        max-width: 100%;
        margin-top: 55px;
        margin-bottom: 1.5em; 
        text-align: center;
        
    }
    .site_map a{
        text-align: center;
    }
    .site_map a:hover{
        color: #00abf0;
    }
    
    .working_hours {
        max-width: 100%;
        margin-bottom: 2em; 
        text-align: center;
        
    }
}



/* Responsive styles for small-sized screens (max-width: 520px) */
@media (max-width: 520px) {
    .icon {
        flex-direction: column;
        align-items: center;
    }
}


/* ........................................horizontal................... */
.icon {
    display: flex;
    justify-content: space-between; /* Add this line to distribute icons horizontally */
    align-items: center;
    gap: 1em;
    font-size: 1.7em;
    margin-top: 1em;
    margin-bottom: 1em;
}


/* Responsive styles for small-sized screens (max-width: 520px) */
@media (max-width: 520px) {
    .icon {
        flex-direction: row;
        justify-content: center;
    }
}

/* @media (max-width: 520px) {
    #map {
        margin-bottom: 10px; 
    }
} */

@media (max-width: 768px) {

    .footer_class{
        margin-top: 10px;
        margin-bottom: 100px;
        
    }
    .working_hours {
        margin-bottom: 1em; 
    }

    #map {
        margin-top: 2em;
        margin-bottom: 70em; 
    }

    #pune_map{
        margin-bottom: 25em;
        margin-left: 1em;
    }
    #mumbai_map{
        margin-bottom: 55em;
        margin-left: 1em;
    }
}

@media (max-width: 768px) {
    .circle-spin {
        max-width: 150%;
        max-height: 40%;
    }
}

@media (max-width: 520px) {
    .circle-spin {
        max-width: 150%;
    }
}

@media (max-width: 768px) {
    
    .footer_info,
    .site_map,
    .working_hours {
        max-width: 100%;
        margin-bottom: 2em; /* Add margin at the bottom */
    }

    #map {
        margin-top: 2em; /* Adjust the top margin for smaller screens */
        margin-bottom: 55em; /* Adjust the bottom margin for smaller screens */
    }

    #pune_map {
        margin-top: 5em;
        margin-bottom: 25em;
        margin-left: 1em;
    }

    #mumbai_map {
        margin-bottom: 55em;
        margin-left: 1em;
    }
}

/* Responsive styles for small-sized screens (max-width: 520px) */
@media (max-width: 520px) {
    .icon {
        flex-direction: row;
        justify-content: center; /* Center the icons horizontally */
    }
}



@media (max-width: 768px) {
    .home {
        padding: 0 3%; /* Adjust padding for even smaller screens */
    }

    .home-content {
        max-width: 100%; /* Allow content to take full width on smaller screens */
    }

    .home-content h1 {
        font-size: 4rem; /* Decrease font size for smaller screens */
    }

    .home-content p {
        padding-right: 1rem; /* Adjust padding for smaller screens */
    }
}