/* NAvbar */

/* Navbar styling */
.navbar-connect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    background-color: white;
    border-bottom: 1px solid #eee;
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

/* Add shadow when the page is scrolled */
.navbar-connect.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-connect {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Logo styling */
.navbar-logo img {
    height: 230px; /* Logo size for larger screens */
    display: block;
    margin: 0;
    padding: 0;
    max-width: 1500px;
}

/* Center Menu Styling */
.navbar-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center; /* Center the menu items */
    flex-grow: 1; /* Makes the menu grow to fill available space */
}

.navbar-menu li {
    margin: 0 15px; /* Space between menu items */
}

.navbar-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.navbar-menu li a:hover {
    color: #2c9ec6;
}

/* Login Button */
.navbar-login a {
    text-decoration: none;
    color: white;
    background-color: #62975f;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.navbar-login a:hover {
    background-color: #005b33;
    color: white;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu li {
        margin: 15px 0;
    }

    /* Logo size adjustment for mobile */
    .navbar-logo img {
        height: 130px; /* Logo size for mobile */
    }

    /* Place the login button above the menu */
    .navbar-login {
        display: flex;
        justify-content: center;
        /* margin-bottom: 20px; */
    }

    .navbar-menu.active .navbar-login {
        order: -1; /* Moves the login button above the menu items */
    }
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .navbar-connect {
        padding: 0 20px;
    }

    .navbar-login a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .navbar-logo img {
        height: 130px;
    }
}

/* navbar end
 */


/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f2f4f8;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Section */
/* Top Section */
.top-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px;
    background-color: #299dc6;
    color: white;
    height: 205px;
    /* padding-top: 160px; */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Contact Info Styling */
.contact-info-left h1 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-info-left p {
    font-size: 16px;
    color: #f2f2f2;
    margin-bottom: 30px;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    justify-content: left;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px; /* Make sure the icon is centered inside the circle */
    transition: background-color 0.3s;
}

.social-icons a i {
    font-size: 20px;
}

.social-icons a:hover {
    background-color: #f25c54; /* Change icon background color on hover */
}

/* Responsive Styles */

/* For Tablets (768px and below) */
@media (max-width: 768px) {
    .top-section {
        padding: 40px;
        height: auto; /* Allow height to adjust */
        padding-top: 120px; /* Adjust the top padding for smaller screens */
    }

    .contact-info-left h1 {
        font-size: 28px; /* Reduce font size */
    }

    .contact-info-left p {
        font-size: 14px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .social-icons a i {
        font-size: 18px;
    }
}

/* For Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .top-section {
        padding: 30px;
        height: auto;
        /* padding-top: 100px; */
        text-align: center; /* Center-align text for mobile */
        justify-content: center; /* Center the content on mobile */
    }

    .contact-info-left h1 {
        font-size: 24px;
    }

    .contact-info-left p {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center; /* Center the icons */
        gap: 15px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .social-icons a i {
        font-size: 16px;
    }
}

/* end top section */
/* Contact Section */
/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #fff;
}

/* Left Side */
.left-side {
    width: 30%;
    padding: 20px;
}

.left-side h2 {
    font-size: 24px;
    color: #2d2f7b;
    margin-bottom: 15px;
}

.left-side p {
    color: #4a4b63;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Styling for the Steps List */
.steps-list {
    list-style: none; /* Remove default list markers */
    padding-left: 0; /* Remove extra padding */
}

.steps-list li {
    margin-bottom: 40px;
    padding-left: 40px;
    position: relative;
}

.steps-list .step-number {
    background-color: #005b33;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}


/* Right Side */
.right-side {
    width: 40%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    height: 600px;
    margin-top: -147px;
}

.form-heading h3 {
    font-size: 23px;
    color: #333;
    margin-bottom: 20px;
}

.form-heading span {
    color: #f25c54;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-row input,
select {
    width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
    height: 140px;
}

button {
    background-color: #62975f;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #005b33;
}

.form-row label {
    font-size: 14px;
    margin-bottom: 0px;
    display: block;
}

.captcha-row {
    display: flex;
    align-items: ;
    margin-bottom: 15px;
}

.captcha-row label {
    font-size: 16px;
    /* font-weight: bold; */
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.captcha-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}




/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .left-side,
    .right-side {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 30px; /* Add space between the sections */
    }

    .form-row {
        display: block; /* Stack form fields vertically */
    }

    .form-row input,
    textarea {
        width: 100%; /* Full width for inputs and textarea */
    }

    .right-side {
        margin-top: 0; /* Remove negative margin on smaller screens */
        box-shadow: none; /* Reduce shadow on smaller screens */
        padding: 20px;
    }

    .form-heading h3 {
        font-size: 18px; /* Adjust heading size */
    }

    .form-row input {
        margin-bottom: 10px; /* Add some spacing between fields */
    }

    button {
        width: 100%; /* Full width button */
        padding: 12px;
    }
}

/* end contact section */


 /* footer */
 
 .footer-container {
    background-color: #f5f5f5;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Makes sure the content stays on its respective side */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    flex: 1;
    text-align: left;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 14px;
}

.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-contact {
    flex: 1;
    text-align: left; 
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom {
    font-size: 14px;
    background-color: #eaeaea;
    padding: 10px 0;
    text-align: center;
}

h5 {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .footer-contact {
        text-align: center;
        align-items: center; /* Align center on smaller screens */
    }
}


 /* end fooyter */
