/* ================= GLOBAL ================= */

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

a {
    text-decoration: none;
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background: rgba(3, 12, 33, 0.95);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: #ffffff !important;
    margin-left: 20px;
    font-weight: 500;
}

.nav-link:hover {
    color: #00b4d8 !important;
}

.btn-connect {
    background: #00b4d8;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-connect:hover {
    background: #0096c7;
    color: white;
}

/* ================= NAVBAR SCROLL ================= */

.navbar-scrolled {
    background: #020b1f !important;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;
    width: 60px;
    height: 60px;

    bottom: 25px;
    right: 25px;

    background: #25d366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    z-index: 999;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);

    transition: 0.3s;

}

.whatsapp-float:hover {

    transform: scale(1.1);
    color: white;

}

/* ================= HERO ================= */

.hero-section {
    background: linear-gradient(to right, #020b1f, #061b45);
    color: white;
    padding-top: 120px;
    overflow: hidden;
}

.hero-tagline {
    color: #00b4d8;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: #00b4d8;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d8d8d8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #00b4d8;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: #0096c7;
    color: white;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: white;
    color: #061b45;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

}

@media(max-width:576px){

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .navbar-brand img {
        height: 70px;
    }

}
/* ================= EXTRA MOBILE ================= */

@media(max-width:768px){

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .service-card,
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }

}

/* ================= SMOOTH SCROLL ================= */

html {
    scroll-behavior: smooth;
}

/* ================= SECTION COMMON ================= */

section {
    padding: 100px 0;
}

.section-tag {
    color: #00b4d8;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-text {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

/* ================= ABOUT ================= */

.about-section {
    background: #ffffff;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ================= SERVICES ================= */

.services-section {
    background: #04122e;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 45px;
    color: #00b4d8;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ================= WHY SECTION ================= */

.why-box {
    padding: 30px;
}

.why-box i {
    font-size: 45px;
    color: #00b4d8;
    margin-bottom: 20px;
}

.why-box h4 {
    margin-bottom: 15px;
}

/* ================= FOOTER ================= */

.footer-section {
    background: #020b1f;
    color: white;
    padding: 40px 0;
}

.footer-section p {
    margin-bottom: 0;
}

/* ================= CONTACT ================= */

.contact-section {
    background: #f8fbff;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h4 {
    margin-bottom: 25px;
}

.contact-info p {
    color: #555;
    line-height: 1.8;
}

.contact-info i {
    color: #00b4d8;
    margin-right: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #00b4d8;
}

/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;
    width: 60px;
    height: 60px;

    bottom: 25px;
    right: 25px;

    background: #25d366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    z-index: 999;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);

    transition: 0.3s;

}

.whatsapp-float:hover {

    transform: scale(1.1);
    color: white;

}

/* ================= MISSION & VISION ================= */

.mission-section {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 50px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

.leader-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ================= WHY PARTNER WITH US ================= */

.partner-section {
    padding: 100px 0;
    background: #f8fafc;
}

.partner-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.partner-card:hover {
    transform: translateY(-8px);
}

.partner-icon {
    font-size: 50px;
    color: #0d6efd;
    margin-bottom: 20px;
}
/* ================= BUSINESS IMPACT ================= */

.impact-section {
    padding: 100px 0;
    background: #ffffff;
}

.impact-box {
    padding: 30px;
}

.impact-box h3 {
    color: #0d6efd;
    font-size: 2rem;
    font-weight: 700;
}

.impact-box p {
    margin-top: 10px;
}
@media(max-width:768px){

    .hero-section{
        padding-top:120px;
        padding-bottom:60px;
    }

    .hero-title{
        font-size:42px;
        line-height:1.3;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-image{
        margin-top:30px;
    }

}


