/* RESET */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI',sans-serif;
}

.navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        color: #0d1b2a;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: #00b4d8;
        }
.contact-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

    .contact-header h2 {
        font-size: 42px;
        color: #1E3A78;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .contact-item i {
        font-size: 30px;
        color: #F4C20D;
    }

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .contact-form button {
        width: 100%;
        background: #1E3A78;
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
    }

        .contact-form button:hover {
            background: #F4C20D;
            color: #1E3A78;
        }

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 20px;
    background: #f5f8ff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
}

    .section-title::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #007bff;
        display: block;
        margin: 10px auto 0;
        border-radius: 5px;
    }

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #222;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 15px;
    }

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .about-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #0056b3;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}
/* HERO */

.hero {
    min-height: 90vh;
    background: linear-gradient( 135deg, #0f1f42, #1E3A78, #0c1733);
    overflow: hidden;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(244,194,13,.08);
        top: -150px;
        right: -100px;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        left: -100px;
        bottom: -100px;
    }

.hero-container {
    max-width: 1400px;
    margin: auto;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
}

.hero-logo {
    width: 220px;
    margin-bottom: 25px;
}

.hero-left h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-left h1 span {
        color: #F4C20D;
    }

.hero-left p {
    color: #d8dfeb;
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
}

.hero-buttons {
    margin-top: 35px;
}

.btn-main {
    display: inline-block;
    background: #F4C20D;
    color: #1E3A78;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 15px;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #F4C20D;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
}

.hero-right {
    flex: 1;
    text-align: center;
}

    .hero-right img {
        width: 100%;
        max-width: 650px;
        animation: floatImage 4s infinite ease-in-out;
    }

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* SERVICES */

.services {
    padding: 100px 8%;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    color: #1E3A78;
    margin-bottom: 60px;
    font-size: 42px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card i {
        font-size: 50px;
        color: #F4C20D;
        margin-bottom: 20px;
    }

    .service-card h3 {
        color: #1E3A78;
        margin-bottom: 15px;
    }

/* WHY CHOOSE US */

.why-us {
    padding: 100px 8%;
    background: #1E3A78;
    color: white;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
}

    .stat-box h2 {
        color: #F4C20D;
        font-size: 3rem;
    }

/* TESTIMONIALS */

.testimonials {
    padding: 100px 8%;
    background: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .testimonial h4 {
        color: #1E3A78;
        margin-top: 20px;
    }

/* CTA */

.cta {
    padding: 100px 8%;
    background: linear-gradient( 135deg, #1E3A78, #0f1f42);
    text-align: center;
    color: white;
}

    .cta h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

/* WHATSAPP */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
}

/* MOBILE */

@media(max-width:991px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-logo {
        width: 180px;
    }
}
.creative-services {
    padding: 100px 8%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        color: #1E3A78;
        font-size: 42px;
    }

    .section-header p {
        max-width: 800px;
        margin: auto;
        color: #666;
    }

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.creative-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .3s;
}

    .creative-card:hover {
        transform: translateY(-10px);
    }

    .creative-card i {
        font-size: 55px;
        margin-bottom: 20px;
    }

    .creative-card h3 {
        margin-bottom: 20px;
    }

    .creative-card ul {
        list-style: none;
        padding: 0;
    }

    .creative-card li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

.business {
    background: #1E3A78;
    color: white;
}

    .business i {
        color: #F4C20D;
    }

.marketing {
    background: #F4C20D;
    color: #1E3A78;
}

.personal {
    background: #f7f9fc;
    color: #1E3A78;
}

    .personal i {
        color: #F4C20D;
    }