/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    margin: 0 0 0.5em 0;
}

p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 1em 0;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    color: #007bff;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2em;
}

nav ul li a {
    font-size: 1em;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('images/hero-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,123,255,0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.btn {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #fff;
    color: #007bff;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #e6e6e6;
    transform: scale(1.05);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1em;
    position: relative;
    color: #007bff;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background: #007bff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 4em 0;
}

.light-section {
    background-color: #fff;
}

section p {
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* Advantages */
.advantages {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3em;
}

.advantage-item {
    flex: 0 0 30%;
    text-align: center;
    margin-bottom: 2em;
    background-color: #fff;
    padding: 2em 1em;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-item i {
    color: #007bff;
    margin-bottom: 1em;
}

.advantage-item h3 {
    margin-bottom: 0.5em;
    color: #333;
}

.advantage-item p {
    color: #666;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3em;
}

.step {
    flex: 0 0 23%;
    text-align: center;
    padding: 1em;
    margin-bottom: 2em;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em auto;
    font-size: 2em;
}

.step h3 {
    margin-bottom: 0.5em;
    color: #333;
}

.step p {
    color: #666;
}

/* Team Section */
.team {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3em;
}

.team-member {
    flex: 0 0 30%;
    text-align: center;
    margin-bottom: 2em;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1em;
}

.team-member h3 {
    margin-bottom: 0.5em;
    color: #333;
}

.team-member p {
    color: #666;
}

/* Contact Form */
.contact-form {
    background-color: #007bff;
    color: #fff;
}

.contact-form form {
    max-width: 600px;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
}

.contact-form p {
    color: #fff;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.contact-form label i {
    margin-right: 0.5em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 0.8em;
    background-color: #fff;
    color: #007bff;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #e6e6e6;
    transform: scale(1.02);
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    padding: 2em 0;
}

footer .container {
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1em;
}

footer ul li {
    display: inline;
    margin: 0 1em;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #007bff;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}
ul{
list-style:none}

.animate {
 
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .advantages, .process-steps, .team {
        flex-direction: column;
        align-items: center;
    }
    .advantage-item, .step, .team-member {
        flex: 0 0 80%;
    }
    nav ul li {
        margin-left: 1em;
    }
    .hero h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    nav {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        transition: left 0.3s;
    }
    nav.showing {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    nav ul li {
        margin: 1em 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .advantage-item, .step, .team-member {
        flex: 0 0 100%;
    }
    .hero h2 {
        font-size: 1.5em;
    }
    .btn {
        padding: 0.7em 1.5em;
        font-size: 0.9em;
    }
}
