﻿/* ===========================
   Dalel Kuwait — site.css
   =========================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #E8621A;
    --orange-hover: #d05510;
    --text-dark: #111111;
    --text-gray: #6B6B6B;
    --white: #FFFFFF;
    --card-shadow: 0 8px 32px rgba(0,0,0,0.09);
    --font: 'Manrope', sans-serif;
    /* Hero gradient — navbar sits on same background */
    --grad-start: #F97316;
    --grad-mid: #FBBF7A;
    --grad-end: #FDE8CB;
}

html, body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===========================
   PAGE WRAPPER — full-page gradient
   =========================== */
/*.page-wrapper {
    background: linear-gradient( 135deg, var(--grad-start) 0%, var(--grad-mid) 35%, var(--grad-end) 70%, #FEF3E8 100% );
    min-height: 100vh;
}*/

/* ===========================
   NAVBAR — transparent, on gradient
   =========================== */
.navbar {
    position: absolute; /* Ye sabse important hai */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Taake ye background se upar nazar aaye */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px; /* Padding adjust karlein */
    background: transparent; /* Background color bilkul nahi dena */
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    font-family: var(--font);
    box-shadow: 0 2px 10px rgba(232,98,26,0.35);
}

.brand-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 38px;
    align-items: center;
}

    .navbar-links li a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 500;
        transition: color 0.2s;
    }

        .navbar-links li a:hover {
            color: var(--orange);
        }

.btn-register {
    display: inline-flex;
    align-items: center;
    height: 54px;
    width: auto; /* Width ko auto rakhein taake padding sahi kaam kare */
    min-width: 195px; /* Minimum width set kar di */
    gap: 15px;
    background: #FF8000;
    color: white;
    text-decoration: none;
    /* --- PADDING FOR CIRCLE POSITION --- */
    padding: 5px 5px 5px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font);
    /* --- PERMANENT WHITE RING --- */
    border: 2px solid #FFFFFF; /* Bilkul solid white border */
    /* Halka sa outer shadow taake button "glow" kare */
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

    .btn-register .arrow-circle {
        width: 42px;
        height: 42px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        /* Circle ka apna shadow taake wo orange par utha hua lage */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

        .btn-register .arrow-circle svg {
            width: 20px;
            height: 20px;
            color: #FF8000;
            stroke: #FF8000;
            stroke-width: 4px; /* Arrow thora aur bold */
        }

    /* Hover par sirf rang thora gehra hoga, ring permanent rahegi */
    .btn-register:hover {
        background: #e67300;
        transform: translateY(-1px);
        color: white;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(255, 128, 0, 0.5);
    }

/* ===========================
   HERO SECTION
   =========================== */
/* Hero Section Container */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 60px 80px;
    min-height: 100vh;
    overflow: hidden;
}

/* Background Image Layer - The "Fix" */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko stretch hone se bachayega */
    z-index: 1; /* Isko sabse piche bhejne ke liye */
    pointer-events: none; /* Image clicks ko block na kare */
}

/* Content ko upar lane ke liye ensure z-index */
.hero-content, .hero-visuals {
    position: relative;
    z-index: 2;
}

/* Optional: Agar image zyada dark ya light hai to overlay add kar sakte hain */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Halka sa white tint agar zaroorat ho */
    z-index: 0;
}

/* ===========================
   LEFT — hero text
   =========================== */
.hero-content {
    flex: 0 0 auto;
    max-width: 500px;
}
.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; 
    height: 24px;
    flex-shrink: 0; /* Taake image squeeze na ho */
}

.badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Image ki ratio kharab nahi hogi */
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13.5px;
/*    font-weight: 600;*/
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 62px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.65;
    margin-bottom: 38px;
    font-weight: 400;
}

.btn-login {
    display: inline-block;
    background: #FF8000;
    color: white;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font);
    box-shadow: 0 4px 20px rgba(232,98,26,0.40);
    transition: background 0.2s, transform 0.2s;
}

    .btn-login:hover {
        background: var(--orange-hover);
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }

/* ===========================
   RIGHT — phone + boxes layout
   =========================== */
.hero-visuals {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* ---- Float columns ---- */
.float-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.float-left {
    width: 220px;
}

.float-right {
    width: 180px;
}

/* ---- Shared float card base ---- */
.float-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
/*    right: 170px;*/
/*    padding: 12px 20px;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .float-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

/* ---- Show Your Business ---- */
.card-show-business {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
/*    gap: 10px;*/
    padding: 10px 10px;

    margin-bottom:50px;
}

.fcard-icon {
    width: 52px; 
    height: 52px;
/*    background: #FFF3EC; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    overflow: hidden;
}
.fcard-icon-img {
    width: 41px; 
    height: 41px;
    object-fit: contain; 
}
.fcard-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    line-height: 1.3;
}

.fcard-text {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.btn-add-business {
    background: #111;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}

    .btn-add-business:hover {
        background: #333;
    }

/* ---- 100K Users ---- */
/* ---- 100K Users Card ---- */
.card-users {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    background: #ffffff;
    padding: 20px 18px; /* Padding humne pehle hi set ki thi thori extra */
    border-radius: 20px; /* Corners ko round rakhne ke liye */
    box-shadow: 0 0px 30px 0px rgba(255, 232, 212, 0.8);
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

    .card-users:hover {
        transform: translateY(-5px);
        box-shadow: 0px 0px 30px 0px rgba(255, 232, 212, 0.8);
    }

.users-icon-circle {
    width: 46px;  
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.stat-icon-img {
    width: 41px; /* Wahi size jo SVG ka tha */
    height: 41px;
    object-fit: contain; /* Image ki ratio kharab nahi hogi */
}
.users-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

/* ---- Networking Card (Right Side) ---- */
.card-networking {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 200px;
    padding: 15px 16px;
    margin-left: -60px; 
    position: relative;
    z-index: 10;
}
 
.fcard-sm-img {
    width: 41px; /* SVG ka original size */
    height: 41px;
    object-fit: contain; /* Image stretch nahi hogi */
}
.fcard-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .fcard-text-block .fcard-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .fcard-text-block .fcard-subtitle {
        font-size: 12px;
        color: var(--text-gray);
        font-weight: 500;
        line-height: 1.3;
    }

/* ---- Decorative Arrows ---- */
.decorative-arrow {
    position: absolute;
    pointer-events: none; 
    z-index: 1;
}
    .decorative-arrow img {
        width: 80px;  
        height: auto;
/*        opacity: 0.6;  */
    }

.arrow-left-bottom {
    bottom: -10%;
    left: 10%;
    transform: rotate(-10deg);
}

.arrow-right-top {
    top: 50%;  
    right: 10%;  
    transform: rotate(5deg);
}

/* ===========================
   PHONE MOCKUP
   =========================== */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-mobile-img {
    max-width: 280px;
    height: auto;
    border-radius: 24px;
/*    box-shadow: 0 20px 60px rgba(0,0,0,0.15);*/
}

/* ===========================
   HAMBURGER MENU
   =========================== */
.navbar-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 50px;
    }

    .float-left {
        width: 190px;
    }

    .float-right {
        width: 160px;
    }

    .hero-mobile-img {
        max-width: 250px;
    }

    .card-networking {
        margin-left: -30px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 16px 24px;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FF8000, #FF6B00);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        border-radius: 0 0 16px 16px;
    }

    .navbar-links.mobile-open {
        display: flex;
    }

    .navbar-links li a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        display: block;
        padding: 12px 8px;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .navbar-links li a:hover {
        background: rgba(255,255,255,0.15);
        color: #ffffff;
    }

    .navbar-hamburger {
        display: block;
    }

    .navbar .lang-toggle {
        order: 3;
    }

    .navbar .lang-toggle .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .btn-register {
        min-width: auto;
        height: 42px;
        font-size: 13px;
        padding: 4px 4px 4px 16px;
        gap: 8px;
        order: 4;
    }

    .btn-register .arrow-circle {
        width: 34px;
        height: 34px;
    }

    .hero-section {
        flex-direction: column;
        padding: 120px 24px 60px;
        gap: 50px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-visuals {
        flex-wrap: wrap;
        justify-content: center;
    }

    .float-left, .float-right {
        flex-direction: row;
        width: auto;
    }

    .float-card {
        width: 160px;
    }

    .card-networking {
        margin-left: 0;
        margin-bottom: 0;
        padding: 12px 14px;
    }

    .card-show-business {
        margin-bottom: 0;
    }

    .phone-mockup {
        display: none;
    }

    .decorative-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 14px 16px;
    }

    .btn-register {
        font-size: 12px;
        padding: 3px 3px 3px 12px;
        gap: 6px;
        min-width: auto;
        height: 38px;
    }

    .btn-register .arrow-circle {
        width: 30px;
        height: 30px;
    }

    .hero-section {
        padding: 100px 16px 40px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-visuals {
        gap: 12px;
    }

    .float-left, .float-right {
        flex-direction: column;
        width: 100%;
    }

    .float-card {
        width: 100%;
    }

    .card-users {
        width: 100%;
    }

    .card-networking {
        width: 100%;
    }

    .btn-login {
        padding: 14px 36px;
        font-size: 15px;
    }
}

html {
    scroll-behavior: smooth;
}

/* Taake section header ke niche na chhup jaye */
#about-section, #contactID-section, #faq-section {
    scroll-margin-top: 90px;
}