/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}



html, body {
    overflow-x: hidden; 
    width: 100%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1900px;
    margin: auto;
}

/* WhatsApp Floating Button CSS */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #128C7E; /* subtle WhatsApp green */
    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size:13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-widget svg {
    display: block;
}

.fab{
    font-size:28px;

}

/* ================= NAVBAR ================= */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0F172A;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    height: 35px;
}

.logo span {
    color: whitesmoke;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: .35s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: white;
    transition: .35s;
}

.nav-menu a:hover {
    color: white;
    transform: scale(1.1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: whitesmoke;
    flex-direction: column;
    gap: 5px;
}

.nav-menu.active {
    display: flex;
}


.menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

/* animation when active */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


@media(max-width:768px) {

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: -100%;
        width: 220px;
        background: #ff6600;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
        transition: 0.4s;
        gap:17px;
    }

    .nav-menu.active {
        right: 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu a {
        color: white;
    }

}


/* ================= HERO SECTION ================= */

.hero {
    height: 100vh;
    background: url("./hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    position: relative;
}

/* dark overlay */

.hero-content {
    position: relative;
    max-width: 700px;
    color: white;
    text-align: left;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.2) 0%,    /* very light at top for navbar */
        rgba(255, 255, 255, 0.1) 20%,   /* still bright */
        rgba(0, 0, 0, 0.15) 60%,        /* slight contrast for text readability */
        rgba(0, 0, 0, 0.05) 100%        /* almost transparent at bottom */
    );
}


/* Heading */

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;

    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Paragraph */

.hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #e6e6e6;
    margin-bottom: 30px;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary .arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(5px); /* arrow slides slightly on hover */
}

/* Mobile */

@media(max-width:768px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-content {
        text-align: center
    }

    .hero-buttons {
        display: block;
    }

}

/* ================= COMMON SECTION ================= */

section {
    padding: 70px 10%;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b63ce;
}

section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}


/* ================= WHY WE ARE DIFFERENT ================= */

.different {
    padding: 90px 10%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

/* subtle background pattern */

.different::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(11, 99, 206, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(29, 209, 161, 0.05), transparent 40%);
    pointer-events: none;
}

.different h2 {
    font-size: 40px;
    color: #0b63ce;
    margin-bottom: 10px;
}

.diff-subtitle {
    max-width: 650px;
    margin: auto;
    margin-bottom: 60px;
    color: #666;
    line-height: 1.7;
}

/* grid */

.different-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* cards */

.different-card {
    background: #f9fbff;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* glowing hover effect */

.different-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* icon */

.diff-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0b63ce, #1dd1a1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: 0.35s;
}

/* icon animation */

.different-card:hover .diff-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* heading */

.different-card h3 {
    margin-bottom: 12px;
    color: #222;
    font-size: 20px;
}

/* text */

.different-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* responsive */

@media(max-width:768px) {

    .different h2 {
        font-size: 34px;
    }

    .diff-subtitle {
        margin-bottom: 40px;
    }

}


/* ================= VISION MISSION ================= */

.vision-mission {
    padding: 80px 10%;
    background: linear-gradient(180deg, #f4f8ff, #eaf2ff);
    text-align: center;
}

.section-title {
    font-size: 38px;
    color: #0b63ce;
    margin-bottom: 50px;
}

/* container */

.vm-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* cards */

.box {
    background: white;
    padding: 45px 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* top gradient line */

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0b63ce, #1dd1a1);
}

/* hover effect */

.box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* icon */

.icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #0b63ce, #4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    transition: 0.4s;
}

/* icon hover */

.box:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* headings */

.box h3 {
    color: #0b63ce;
    margin-bottom: 15px;
    font-size: 24px;
}

/* text */

.box p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* responsive */

@media(max-width:768px) {

    .vm-container {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

}


/* ================= TEAM INTRO ================= */

.team-intro {
    padding: 90px 10%;
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    position: relative;
    overflow: hidden;
}

/* decorative background shape */

.team-intro::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    opacity: 0.18;
    border-radius: 50%;
    filter: blur(40px);
}

.team-intro::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #8e44ad, #c39bd3);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(35px);
}

.team-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* text area */

.team-text h2 {
    font-size: 40px;
    color: #0b63ce;
    margin-bottom: 20px;
}

.team-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 650px;
}

/* quote */

.team-quote {
    font-size: 22px;
    font-style: italic;
    color: #1dd1a1;
    margin-bottom: 20px;
    font-weight: 600;
}

/* highlight card */

.team-highlight-card {
    background: white;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    padding: 35px 25px;
    text-align: center;
}

.team-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* icon */

.leader-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #0b63ce, #4da3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
    margin: 0 auto 20px auto;
}

.team-highlight-card h3 {
    color: #0b63ce;
    margin-bottom: 10px;
}

.team-highlight-card p {
    color: #555;
    line-height: 1.7;
}


@media(max-width:900px) {

    .team-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-text {
        text-align: center;
        margin: auto;
    }

}


/* ================= VALUES SECTION ================= */

.values-section {
    background: #f7f9fc;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.value-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ================= WHY VIVID ================= */

.why-vivid {
    background: #f7f9fc;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    text-align: left;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.why-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}



/* ================= FOOTER ================= */

.footer {
    background: #0f172a;
    color: #fff;
    padding: 70px 8% 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

/* headings */

.footer-col h3 {
    margin-bottom: 20px;
    color: #ff7a18;
    font-size: 20px;
}

.company h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
}

/* links */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 15px;
    transition: .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff7a18;
    transform: translateX(6px);
}

/* social icons */

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    transition: .3s;
}

.social-icons a:hover {
    background: #ff7a18;
    transform: translateY(-3px);
}

/* bottom */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

@media(max-width:600px) {

    .footer-container {
        text-align: center;

    }
}










/* Animation for Hero banner */


.hero-content h1 {
    font-size: 3rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlide 1s forwards;
    animation-delay: 0.4s;
    position: relative;
    overflow: hidden;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1s forwards;
    animation-delay: 0.8s;
}

@keyframes fadeSlide {
    to { opacity: 1; transform: translateY(0); }
}



/* BUTTON ANIMATION */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    background: #ff6600;       /* normal background */
    color: #fff;               /* normal text */
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover: invert colors + scale + shadow */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: #fff;
    color: #ff6600;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Arrow animation */
.btn-primary .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

