/* === Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
    color: #1a1a1a;
}

/* === Navbar === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}
.heading {
    margin-left: 10px;
}
.p p{
    margin-left: 65px;
}
.projects h2 {
    margin-left: 65px;
    padding-top: 15px;
}
.section-4 h1{
     margin-left: 65px;
    padding-top: 15px;
}

.logo img {
    height: 40px;
}

.navlinks ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navlinks a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.navlinks a:hover {
    color: #0077b6;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* === Buttons === */
.buttons {
    display: flex;
    gap: 15px;
}

.buttons button {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.buttons button:hover {
    background-color: #333;
}

/* === Hero Section === */
.parent-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #C1DEE8 0%, #FBD9B9 100%);
    padding: 60px 80px;
}

.left-hero {
    flex: 1;
    padding-right: 40px;
}

.left-hero h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.left-hero p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-img {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* === Projects === */
.models {
    display: flex;
    justify-content: space-between;
    padding: 40px 80px;
    gap: 30px;
}

.model1, .model2, .model3 {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    text-align: left;
}

.model1 img, .model2 img, .model3 img {
    width: 100%;
    border-radius: 10px;
}

.model1 h3, .model2 h3, .model3 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.model1 p, .model2 p, .model3 p {
    font-size: 14px;
    color: #444;
    margin-top: 8px;
}

.Stars img {
    height: 20px;
    margin-top: 10px;
}

/* === Verifications Section === */
.parent-verifications {
    text-align: center;
    padding: 60px 100px;
}

.part-2 h1 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
}

.parent-image {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.image-1, .image-2, .image-3 {
    flex: 1;
    text-align: center;
}

.image-1 img, .image-2 img, .image-3 img {
    width: 60px;
    margin-bottom: 10px;
}

/* === Transfer Section === */
.transfer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 100px;
    gap: 50px;
}

.transfer-left, .transfer-right {
    flex: 1;
}

.transfer-left h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.transfer-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.transfer-buttons {
    display: flex;
    gap: 20px;
}

.transfer-buttons button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
}

.transfer-buttons button:hover {
    background-color: #222;
}

.transfer-right img {
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
}

/* === Footer === */
footer {
    background: linear-gradient(90deg, #C1DEE8 0%, #FBD9B9 100%);
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: 15px 15px 0 0;
}

.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.subscribe-form input {
    flex: 3;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.subscribe-form button {
    flex: 1;
    padding: 12px 16px;
    background-color: #0077b6;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.subscribe-form button:hover {
    background-color: #005f8f;
}

.footer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

/* === Responsive === */
@media screen and (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .models,
    .parent-hero,
    .transfer-section,
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        text-align: center;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .navlinks,
    .buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header {
        padding: 20px;
    }

}
.stats {
   margin-top: 30px;
    display: flex;
    align-items: center;
    gap:60px;

}
.stats-row {
     margin-top: 30px;
    display: flex;
}