
:root {
    --primary-blue: #213368;
    --accent-yellow: #FCB813;
    --light-blue: #edf2fd;
    --white: #FFFFFF;
    --dark-gray: #2d2d2d;
    --medium-gray: #5a5a5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

    .navbar.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
}

    .nav-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 3px;
        background-color: var(--accent-yellow);
        transition: width 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--primary-blue) !important;
    }

        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }

.btn-nav {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

    .btn-login:hover {
        background-color: transparent;
        color: var(--primary-blue);
    }

.btn-sales {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: 2px solid var(--accent-yellow);
}

    .btn-sales:hover {
        background-color: transparent;
        color: var(--primary-blue);
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2657 100%);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(252, 184, 19, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(227, 232, 246, 0.1) 0%, transparent 20%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
}
.btn-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 10px 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: 3px solid var(--accent-yellow);
}

    .btn-primary-hero:hover {
        background-color: transparent;
        color: var(--accent-yellow);
        transform: translateY(-3px);
    }

.btn-outline-hero {
    background-color: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

    .btn-outline-hero:hover {
        background-color: var(--white);
        color: var(--primary-blue);
        transform: translateY(-3px);
    }


.hero-image {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent-yellow);
    }

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: var(--medium-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(33, 51, 104, 0.1);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

.service-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-description {
    color: var(--medium-gray);
}

/* About Section */
.about-section {
    background-color: var(--light-blue);
}

.about-content {
    padding-left: 40px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Products Section */
.products-section {
    background-color: var(--white);
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(33, 51, 104, 0.15);
    }

.product-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.product-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.product-body {
    padding: 30px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

    .product-features li {
        margin-bottom: 10px;
        padding-right: 25px;
        position: relative;
    }

        .product-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 5px;
            color: var(--accent-yellow);
        }

.btn-product {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: 2px solid var(--accent-yellow);
}

    .btn-yellow:hover {
        background-color: transparent;
        color: var(--primary-blue);
    }

/* Blog Section */
.blog-section {
    background-color: var(--light-blue);
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(33, 51, 104, 0.1);
    }

.blog-image {
    height: 200px;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.blog-body {
    padding: 25px;
}

.blog-date {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .blog-link i {
        margin-right: 5px;
        transition: transform 0.3s ease;
    }

    .blog-link:hover i {
        transform: translateX(5px);
    }

/* Clients Section */
.clients-section {
    background-color: var(--white);
}

.client-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding: 30px;
    overflow-inline: auto;
    scrollbar-color: #FCB813 whitesmoke;
    scrollbar-width: thin;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    padding-inline: 10px;
    text-align: center;
    border-top: 2px solid #FCB813;
   
}

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2657 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 90% 10%, rgba(252, 184, 19, 0.1) 0%, transparent 20%), radial-gradient(circle at 10% 90%, rgba(227, 232, 246, 0.1) 0%, transparent 20%);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        background-color: rgba(255, 255, 255, 0.25);
        border-color: var(--accent-yellow);
        box-shadow: 0 0 0 0.25rem rgba(252, 184, 19, 0.25);
        color: var(--white);
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.btn-submit {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

    .btn-submit:hover {
        background-color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.contact-info {
    padding-right: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-left: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: var(--accent-yellow);
    }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-links a:hover {
        color: var(--accent-yellow);
        padding-right: 10px;
    }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-left: 10px;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background-color: var(--accent-yellow);
        color: var(--primary-blue);
        transform: translateY(-5px);
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .section {
        padding: 80px 0;
    }
}

/*** Bootstrap */
.input-group > .form-control, .input-group > .form-floating, .input-group > .form-select{
    margin:0;
}