/* Global Styles */
:root {
    --primary-color: #0071ce;
    --secondary-color: #3cb5e5;
    --dark-blue: #004a87;
    --light-blue: #f5f9ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --success: #28a745;
    --border-radius: 4px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* New Product Section Styles */
.products {
    padding: 60px 0;
    background-color: var(--white);
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 80px;
}

.product-icon {
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Security Section */
.security {
    background-color: var(--light-blue);
    padding: 60px 0;
}

.certificate-item {
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}

.certificate-item img {
    max-height: 80px;
    transition: var(--transition);
}

.certificate-item:hover img {
    transform: scale(1.1);
}

/* Blog Section */
.blog {
    background-color: var(--white);
    padding: 60px 0;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    overflow: hidden;
    position: relative;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.blog-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Phone Contact Button */
.phone-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.phone-btn img {
    width: 30px;
    height: 30px;
}

.phone-btn:hover {
    transform: scale(1.1);
    background-color: var(--dark-blue);
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-blue);
}

.btn {
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.logo {
    height: 40px;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover:after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 10px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

.language-dropdown .nav-link {
    display: flex;
    align-items: center;
}

.flag-icon {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.login-btn {
    margin-left: 15px;
}

/* Hero Section */
.hero {
    background-color: var(--light-blue);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #114A9F;
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: -1px;
}


.elementor-element.elementor-element-710fec38 {
    --divider-border-style: solid;
    --divider-color: #114A9F;
    --divider-border-width: 4px;
}

.elementor-element.elementor-element-710fec38 .elementor-divider-separator {
    width: 60px;
    margin: 0 auto;
    margin-center: 0;
}

.elementor-element.elementor-element-710fec38 .elementor-divider {
    text-align: center;
    padding-block-start:10px;padding-block-end:10px;
}

.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator {
    border-block-start: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
    display: flex;
    direction: ltr;
}

.elementor-element.elementor-element-710fec38 .elementor-divider-separator {
    width: 60px;
}

.heading {
    color: #114A9F;
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 50px 50px 50px 50px;
}

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

/* Features Section */
.features {
    background-color: var(--white);
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Solutions Section */
.solutions {
    background-color: var(--light-blue);
}

.solution-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.solution-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 600;
    padding: 0 30px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.solution-card p {
    color: var(--gray);
    padding: 0 30px;
    margin-bottom: 20px;
}

.solution-card .btn {
    margin-left: 30px;
}

/* Customer Success Section */
.customer-success {
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    height: 100%;
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-size: 30px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

/* Partners Section */
.partners {
    background-color: var(--light-blue);
}

.partner-logos {
    margin-top: 30px;
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 30px;
    transition: var(--transition);
    color: var(--gray);
}

.partner-logo:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Try Now Section */
.try-now-section {
    background-color: var(--light-blue);
    padding: 60px 0;
    color: var(--dark-gray);
}

.try-now-content {
    padding: 20px;
}

.try-now-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.try-now-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.try-now-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.form-control, .form-select {
    padding: 12px 15px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 206, 0.25);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 10px;
    }

    .nav-link {
        margin: 5px 0;
    }

    .login-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .hero {
        padding: 120px 0 70px;
    }

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

    .hero p {
        font-size: 18px;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

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

    .section-title p {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 28px;
    }

    .feature-card,
    .solution-card,
    .testimonial-card {
        padding: 20px;
    }

    .solution-card h3,
    .solution-card p,
    .solution-card .btn {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 0;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



