/* 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 */
.connect-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:30px ;
    padding: 10px;
}

.left-side {
    flex: 1;
    text-align: left;
    padding: 20px 20px 20px 90px;
    color: white;
    font-size: 40px;

}

.right-side {
    flex: 1;
    text-align: center;
    padding: 20px;
}
.right-side img {
   width: 400px;
   height: auto;
}

@media screen and (max-width: 768px) {
    .connect-section {
        flex-direction: column-reverse;
        padding: 30px;
        margin-top:30px;
    }

    .left-side, .right-side {
        padding: 0;
    }
}


/****************************************** Section-2 */

  
.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
   
    color: #fff; /* Light text color */
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Space items evenly */
    margin-bottom: 10px;
    flex-direction: row;
}

::placeholder {
    color: rgba(255, 239, 232, 0.763);
    opacity: 1; /* Firefox */
    }

.form-col {
    flex: 0 0 calc(48% - 10px); /* Two columns with gap */
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}
.form-name {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 10px;
}

.form-control,
select,
textarea,
.btn {
    width: 98%;
    padding: 20px 10px 20px 10px;
    border: 1px solid #ff5d2c00; /* Dark border color */
    border-radius: 5px;
    transition: border-color 0.3s;
    background-color: #252525; /* Dark background color */
    color: #fff; /* Light text color */
    font-size: 15px;
    font-weight: bold;
}

.form-control:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #007bff; /* Accent color */
}

.btn {
    margin-top: 20px; /* Add margin to the top of the button */
    width: 20%;
    background-color: #FF3C00;
   
}


.invalid {
    border-color: #ff0000;

}

@media screen and (max-width: 600px) {
    .form-row {
        flex-direction: column; /* Arrange items in column on mobile */
    }
    
    
    .form-col {
        flex: 1 0 100%; /* Full width on mobile */
        margin-right: 0;
        flex-direction: column;
    }
    .form-name {
    
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }
    .btn {
        margin-top: 20px; /* Add margin to the top of the button */
        width: 100%;
    }
}

/****************************************** Section-3 */
.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;
    }
}



