/* Font system */
html, body {
    font-family: "Segoe UI Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #161616;
   
    width: 100%;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 430px) {
    html, body {
        font-family: "Segoe UI Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        background-color: #161616;
       
        width: 120%;
       
        padding: 0;
    }
   
}
    




/* Navbar styles */
.navbar {
    background-color: #161616;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Make navbar fixed */
    top: 0;
    left: 0;
    width: 100%; /* Cover the whole screen */
    z-index: 1000; /* Ensure navbar is on top of other content */
}
.orange-text {
    color: #FF3C00; /* Set color to orange */
}

.navbar img {
    width: 180px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}
.navbar left {
    width: 180px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.navbar-center ul {
    list-style-type: none;
    display: flex;
    margin-right: 60px;
   
}

.navbar-center ul li {
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

.navbar-center ul li:last-child {
    margin-right: 0;
}

.navbar-center ul li a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.navbar-center ul li a:hover {
    color: #FF3C00;
}

.navbar-right .contact-btn {
    padding: 10px 20px;
    border: solid #FF3C00;
    color: #FF3C00 ;
    border-width: thin;
   background-color: #66666600;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 40px;
    padding-left: 40px;
    padding-right: 40px;

}

.navbar-left {
    display: flex;
    justify-content: center;
    padding: 4px;
    align-items: center;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 6px;
 }


#hideprop{
    display: none;
}
#hidetemp{
    display: none;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-right: 20px;
}

.line {
    width: 25px;
    height: 3px;
    background-color: #FFF;
    margin: 3px;
    transition: background-color 0.3s ease; /* Smooth transition for background color change */
}

/* Responsive navbar */
@media screen and (max-width: 768px) {
    .navbar-center ul {
        display: none;
    }

    .navbar-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .active {
        display: block;
    }
    #hideprop{
        display: flex;
    }

    .navbar-center.active ul {
         display: flex;
        background-color: #161616;
        padding: inherit;
        padding-top: 20px;
        padding-bottom: 20px;
        height: 140vh;
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5%;
        justify-content: flex-start;
        font-size: 40px;
        left: 0;
        top:40%;
        width: 96%;
        animation: slideDown 0.3s ease; /* Smooth slide down animation */
    }

    .navbar-center.active ul li {
        margin: 10px 0;
    }

    /* Update hamburger menu color */
    .line {
        background-color: #FFF;
    }
}

@media screen and (max-width: 400px) {
    .navbar-center.active ul {
        display: flex;
        background-color: #161616;
        padding: inherit;
        padding-top: 20px;
        padding-bottom: 20px;
        height: 140vh;
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5%;
        justify-content: center;
        font-size: 40px;
        left: 0;
        width: 96%;
        top:40%;
        animation: slideDown 0.3s ease; /* Smooth slide down animation */
    }
   
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/****************************************** Section-1 */
   /* Styles for the Projects section */
   .projects-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
    align-items: flex-start;
}

/* Styles for the Image section */
.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.big-image {
    width: 550px;
    height: auto;
    margin-bottom: 20px;
}
#big-image {
    width: 550px;
    height: auto;
    margin-bottom: 20px;
}
.small-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.small-image {
    width: 80px;
    height: auto;
    cursor: pointer;
}

/* Styles for the Content section */
.content-section {
    flex: 1;
    padding: 20px;
    color: #FFF;
    border-radius: 5px;
    text-align: left;
    justify-content: left;
    align-items: flex-start;
}

.project-title {
    font-size: 44px;
    margin-bottom: 4px;
    margin-top: 0px;
}

.project-description {
    margin-bottom: 20px;
    margin-top: 12px;
    font-size: large;
    padding-right: 25px;
}

.tick-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffffc8;
    margin: 10px 0px 10px 0px;
}

.tick-icon {
    margin-right: 10px;
}

/* Responsive layout */
@media screen and (max-width: 768px) {
    .projects-section {
        flex-direction: column;
    }
    .big-image {
        width: 450px;
        height: auto;
        margin-bottom: 20px;
    }
    .project-description {
        
        padding-right: 2px;
    }
}

/****************************************** Section-2 */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
   
    color: white;
}

.footer-left img {
    width: 200px; /* Adjust width as needed */
    height: 100%;
}

.footer-left p {
    margin: 0;
    font-size: small;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    color: white;
    margin: 0;
}

.footer-right ul li {
    display: inline;
    text-decoration: none;
    color: white;
    font-weight:normal;
    margin-right: 20px; /* Adjust spacing between links */
}
.footer-right ul li a{
    
    text-decoration: none;
    color: white;
    font-weight: bold;
  
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px; /* Adjust spacing between sections */
    }

    .footer-right ul li {
        display: block;
        margin: 10px 0;
    }
}



