@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
}

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0); /* Transparent initially */
    color: #fff;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav.affix {
    background-color: #000; /* Black background when scrolled */
    padding: 10px 0; /* Adjust padding on scroll */
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: steelblue;
}

.nav div.main_list {
    height: 65px;
    float: right;
    transition: height 0.3s ease; /* Add transition for smooth expansion */
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
    color: steelblue;
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    display: none; /* Initially hidden */
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
}

.navTrigger.active i:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
}

.navTrigger.active i:nth-child(2) {
    transform: rotate(45deg);
}

.navTrigger.active i:nth-child(3) {
    transform: translateY(-9px) rotate(135deg);
}

@media screen and (max-width: 768px) {
    .navTrigger {
        display: block;
    }

    .nav div.logo {
        margin-left: 1px;
        padding-left: 2rem;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.main_list.expanded {
        height: 100vh; /* Expand to full screen height */
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: #111; /* Same background color as navbar */
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }

    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
}

/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80);
    background-position: center top;
    background-size: cover;
}

/* Centered Text Styles */

.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Ensure text stays within container */
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem; /* Base font size */
    color: #000;
    text-align: center;
    font-weight: bold;
    z-index: 1;
    white-space: nowrap;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .centered-text {
        font-size: 4rem; /* Adjusted font size for tablets and small screens */
    }
}

@media screen and (max-width: 480px) {
    .centered-text {
        font-size: 3rem; /* Adjusted font size for mobile devices */
        padding: 0 10px; /* Add padding to prevent text from hitting the screen edges */
    }
}

/* Search Container */

.search-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* VYUGen Text */
.vyugen-text {
    font-size: 150px;
    font-weight: bold;
    color: steelblue;
    margin-bottom: 20px;
}

.search-bar {
    width: 50%;
    padding: 10px;
    font-size: 18px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.button-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px; /* Adds space between buttons */
}

.search-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: steelblue;
    border: none;
    border-radius: 50px; /* Fully rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: black;
    transform: scale(1.1);
    transition: 0.3s;
}
.contact-section{
    display: flex;
    justify-content: space-between;
    /* background-color: black; */
}
.contact-left{
    display: flex;
    flex-direction: column;
    margin-left: 9rem;
   
}
.contact-left h2{
    font-size: 80px;
    font-weight: 600;
    background: linear-gradient(264deg, #096fbd -5.09%, #0d0013 106.28%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards{
    display: flex;
}

.contact-right form{
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.contact-right h2{
    font-size: 80px;
    font-weight: 600;
    background: linear-gradient(260deg, #0c96ff -2.09%, #15021e 106.28%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-right label{
    color: #0f0f0f;
    font-size: 22px;
    font-weight: 500;
}
.contact-right input{
    border: none;
    width: 500px;
    height: 78px;
    padding-left: 20px;
    border-radius: 20px;
    background: #0d0013;
    color: #096fbd;
    font-family: outfit;
    font-size: 20px;
}.contact-right textarea{
    width: 500px;
    height: 200px;
    border: none;
    padding: 25px;
    border-radius: 4px;
    background: #0d0013;
    color: #096fbd;
    font-family: outfit;
    font-size: 20px;
}
.contact-submit{
    border: none;
    color: rgb(17, 16, 16);
    border-radius: 50px;
    background: linear-gradient(264deg, steelblue -5.09%, white 186.28%);
    font-size: 22px;
    padding: 20px 60px;
    margin-bottom: 50px;
    cursor: pointer;
    transition: 0.3s;
    width: 250px;
    margin-top: 1.2rem;
}
.contact-submit:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    align-items: center;
}
.footer-bottom-right{
    display: flex;
    gap: 34px;
    font-size: 14px;
}
/* .footer-bottom-left {
    margin: 10px 0;
} */



.footer-bottom-right p {
    margin: 0;
    cursor: pointer;
    transition: color 0.3s;
}



@media screen and (max-width: 768px) {
    .vyugen-text {
        font-size: 64px;
    }

    .search-bar {
        width: 80%;
        font-size: 16px;
    }

    .search-button {
        width: auto; /* Ensure buttons stay the same size */
        font-size: 14px;
    }

    .button-container {
        flex-direction: row; /* Keep buttons on the same line */
        justify-content: center;
        gap: 10px;
    }
    .contact-section{
        flex-direction: column;
        /* align-items: baseline; */
        
    }
    .contact-left{
        margin-left: 4rem;
        
    }
    .contact-left h2{
        font-size: 54px;
        font-weight: 600;
        margin-left: 1rem;
    }
    .cards{
        display: flex;
        flex-direction: column;
        align-content: center;
    }
    .cards div{
        margin-left: 1rem;
    }
    .contact-right{
        margin-left: 2rem;
    }
    .contact-right h2{
        font-size: 54px;
        font-weight: 600;
    }.contact-right label{
        color: #0f0f0f;
        font-size: 20px;
        font-weight: 500;
        padding: 6px;
    }
    .contact-right input{
        border: none;
        width: 300px;
        height: 78px;
    }.contact-right textarea{
        width: 28rem;
        height: 9rem;
        border-radius: 2px;
    }
    .contact-submit{
        border: none;
        color: rgb(17, 16, 16);
        border-radius: 50px;
        background: linear-gradient(264deg, steelblue -5.09%, white 186.28%);
        font-size: 22px;
        padding: 20px 60px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: 0.3s;
        width: 250px;
        margin-top: 1.2rem;
    }
    .footer{
        margin: 20px;
    }
    .footer-bottom{
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        align-items: center;
        padding: 5px;
    }
}