* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.7;
}

.section-padding {
    padding: 100px 0;
}

.navbar {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand {
    font-size: 24px;
    color: #00bfff !important;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-link {
    color: #fff !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #00bfff !important;
}

.hero-section {
    min-height: 120vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../images/success.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-text h5 {
    color: #00bfff;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #00bfff;
}

.hero-text p {
    margin: 25px 0;
    font-size: 18px;
}

.btn-main {
    background: #00bfff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #0099cc;
    color: #fff;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

.info-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
}

.info-box i {
    font-size: 35px;
    color: #00bfff;
    margin-bottom: 15px;
}

.section-title h5 {
    color: #00bfff;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
}

.about-box {
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
}

.about-box i {
    font-size: 35px;
    color: #00bfff;
    margin-bottom: 10px;
}

.services-section {
    background: #f5f7fa;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 45px;
    color: #00bfff;
    margin-bottom: 20px;
}

.solution-box {
    background: #0b1c39;
    color: white;
    padding: 35px 20px;
    text-align: center;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
}

.solution-box:hover {
    background: #00bfff;
}

.solution-box i {
    font-size: 45px;
    margin-bottom: 15px;
}

.team-section {
    background: #f5f7fa;
}

.team-section {
    background: #f5f7fa;
}

.group-photo-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-text h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #071223;
}

.team-text p {
    color: #666;
    margin-bottom: 20px;
}

.team-feature {
    background: white;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.team-feature i {
    width: 50px;
    height: 50px;
    background: #00bfff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.team-feature span {
    font-weight: 600;
    color: #071223;
}

.contact-section {
    background: linear-gradient(to right, #0b1c39, #102f63);
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    color: white;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.contact-item h6 {
    margin-bottom: 3px;
    font-weight: bold;
}

.contact-item p {
    margin: 0;
    color: #ddd;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
}

.footer-section {
    background: #071223;
    color: white;
    padding: 20px 0;
}

@media(max-width: 991px) {

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media(max-width: 576px) {

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .section-padding {
        padding: 70px 0;
    }
}
