@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: #a7bdef;
}

/* NAV */
.navbar {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

/* HAMBURGER */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #111;
    margin: 4px 0;
}

/* HERO */
.hero {
    padding: 90px 20px;
    text-align: center;
    background: #f8fafc;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: #4164b4;
    color: #fff;
}

.secondary {
    border: 2px solid #4164b4;
    color: #4164b4;
}

/* SECTIONS */
.steps,
.offers,
.contact {
    padding: 80px 20px;
}

.steps h2,
.offers h2,
.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 10px;
}

/* OFFERS */
.offer-list {
    max-width: 600px;
    margin: auto;
    list-style: none;
    text-align: center;
}

.offer-list li {
    margin-bottom: 15px;
    font-weight: 500;
}

/* CONTACT */
.contact {
    text-align: center;
    background: #f8fafc;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
    }

    .nav-links {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    #menu-toggle:checked + .menu-icon + .navbar {
        display: block;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
}

/* new  */

/* how we work  */

/* HOW WE WORK – IMAGE STYLE MATCH */
.how-style {
    padding: 120px 20px;
    background: #fff;
}

.how-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.4;
}

.how-heading span {
    color: #4164b4; 
}

/* Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Items */
.how-item {
    position: relative;
    padding-left: 25px;
}

.how-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4164b4;
}

.how-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.how-item strong {
    font-weight: 900;
    font-size: larger;
    color: #4164b4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how-heading {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* our work  */

/* WHAT WE OFFER – VIDEO SECTION */
.offer-style {
    padding: 120px 20px;
    background: #fff;
}

.offer-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
}

/* GRID */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.offer-card h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* MEDIA CONTAINER (VIDEO + IMAGE) */
.offer-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

/* VIDEO */
.offer-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* IMAGE (ADDED — matches video exactly) */
.offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BACKGROUND FALLBACKS */
.offer-media.yellow { background: #ffe600; }
.offer-media.purple { background: #4164b4; }
.offer-media.gray { background: #e5e7eb; }
.offer-media.checker {
    background: repeating-linear-gradient(
        45deg,
        #e9d5ff,
        #e9d5ff 40px,
        #f8fafc 40px,
        #f8fafc 80px
    );
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .offer-heading {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}


/* home */

.hero-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* VIDEO */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

/* CONTENT */
.hero-content-bg {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content-bg h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content-bg p {
    font-size: 1.05rem;
    max-width: 700px;
    line-height: 1.7;
}

/* BUTTONS */
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 14px 28px;
    border: 2px solid #4164b4;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-solid {
    padding: 14px 28px;
    background: #4164b4;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content-bg h1 {
        font-size: 2.4rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-bg {
        min-height: 90vh;
    }

    .hero-content-bg h1 {
        font-size: 1.9rem;
    }

    .hero-content-bg p {
        font-size: 0.95rem;
    }
}

/* TAGLINE */
.hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9db6ff;
    margin-bottom: 14px;
}

.hero-tagline span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 1.05rem;
    }

    .hero-tagline span {
        font-size: 1.4rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .hero-tagline span {
        font-size: 1.2rem;
    }
}


/* header  */

/* ================= HEADER LOGO ================= */

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* Remove underline from logo link */
.logo a {
    text-decoration: none !important;
    color: inherit;
}

/* Prevent underline on hover */
.logo a:hover {
    text-decoration: none !important;
}

.logo .dotcom {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4164b4;
}




.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    padding: 4px 0;
    transition: color 0.3s ease;
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #4164b4;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #4164b4;
}

.nav-links a:hover::after {
    width: 100%;
}


.menu-icon span {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo .dotcom {
        font-size: 0.75rem;
    }

    .nav-links a::after {
        display: none; 
    }
}

.contact-crazy {
    padding: 120px 20px;
    /* background: linear-gradient(
        135deg,
        #fafaff,
        #58595f
    ); */
    color: black;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.contact-text h2 span {
    color: #4164b4;
}

.contact-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    color: black;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #4164b4;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-link {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
    text-decoration: none;
    margin-bottom: 20px;
    word-break: break-all;
}

.or-text {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 8px;
}

.contact-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4164b4;
    text-decoration: none;
}


.contact-link:hover,
.contact-phone:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-card {
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .contact-crazy {
        padding: 90px 20px;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-link {
        font-size: 1.2rem;
    }
}



.site-footer {
    background: #111;
    color: #ffffff;
    padding: 70px 20px 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}


.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand h3 span {
    color: #4164b4;
    font-size: 0.9rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 360px;
}


.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #4164b4;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}


.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}


@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* CTA SECTION */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4164b4, #2146b6);
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Make button white version inside CTA */
.cta-section .btn-outline {
    background: #ffffff;
    color: #4164b4;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.cta-section .btn-outline:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
}

/* CONTACT SECTION (Centers everything) */
.contact-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTACT CARD */
.contact-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    width: 100%;

    /* Soft card effect */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover effect */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Label */
.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2146b6;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Email link */
.contact-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #4164b4;
}

/* OR text */
.or-text {
    color: #6b7280;
    margin-bottom: 15px;
}

/* Phone */
.contact-phone {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color:  #2146b6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    opacity: 0.8;
}



