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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #001122;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 3rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0040, #ff6b6b);
    border-radius: 2px;
}


/* Header */
header {
    /*background: linear-gradient(135deg, #003366 0%, #004488 100%);*/
    background-color: #fff;
    padding: 30px 0 1px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 100, 200, 0.3);

    @media (max-width: 992px) {
        padding: 1px 0;
    }
}

.logo {
    width: 100px;
}


.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0040 !important;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}

.brand-tagline {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 400;
}

.navbar-nav .nav-link {
    /*color: #fff !important;*/
    color: #0a256a;
    font-weight: 500;
    /*margin: 0 0.5rem;*/
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ff0040 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #ff0040, #ff6b6b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-toggler {
    border: none;
    color: #0a256a;
}

.navbar-toggler:focus {
    box-shadow: none;
}

#navbarNav {
    position: relative;
}

.header-phone {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 1.7rem;
    font-weight: bold;

    @media (max-width: 992px) {
        position: inherit;
        top: inherit;
    }
}

.header-phone a {
    color: #0a256a;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(45deg, #001122 0%, #003366 50%, #004488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: */
    /*    radial-gradient(circle at 20% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 40% 60%, rgba(255, 0, 64, 0.05) 0%, transparent 50%);*/
    /*animation: pulse 4s ease-in-out infinite;*/
    /*background: url("assets/img/background.jpg");*/
    /*background-size: cover;*/
    /*background-position:50%;*/
    background: url('../img/background.jpg') center center / cover no-repeat fixed;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero .brand-message {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero .tagline {
    font-size: 1.8rem;
    color: #00ff99;
    margin-bottom: 2rem;
    font-weight: 500;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 0, 64, 0.8), 0 0 40px rgba(255, 0, 64, 0.3);
    }
}

.hero p {
    font-size: 1.2rem;
    color: #000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #ff0040 0%, #ff6b6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0.5rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 64, 0.5);
}

/* Information Section */
.information-section {
    position: relative;
    padding: 4rem 0;
    background-color: #fff;
    color: #fff;
    text-align: center;
    background: url("../img/bg.jpg");
    background-size: cover;
    background-position: 50%;
    height: 380px;

    @media (max-width: 768px) {
        height: 500px;
        .lead {
            font-size: 1rem;
        }
    }

    &:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: black;
        opacity: 0.4;
    }

    div {
        color: #fff;
        line-height: 1.5;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .information-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        animation: bounce 2s infinite;
    }

}

/* Feature Section */
.feature {
    padding: 5rem 0;
    background: linear-gradient(180deg, #99c3ed 0%, #f0f0f0 50%);
}

/* Warning Section */
.warning-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #cc3300 0%, #ff4444 100%);
    color: white;
    text-align: center;

    .warning-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        animation: bounce 2s infinite;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Problems Section */
.problems {
    padding: 5rem 0;
    /*background: linear-gradient(180deg, #8e555b 0%, #fff 100%);*/
    background-color: #f5f5f5;

    .section-title {
        color: #000;
    }
}

.problem-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #ff0040;
    transition: all 0.3s ease;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

/*.problem-card:hover {*/
/*    transform: translateX(10px);*/
/*    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.2);*/
/*}*/

.problem-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: linear-gradient(180deg, #002244 0%, #003366 100%);
}

.solution-card {
    background: linear-gradient(145deg, #004488 0%, #003366 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 150, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.3);
    border-color: rgba(0, 255, 150, 0.5);
}

/* Services Section */
.services {
    padding: 5rem 0;
    /*background: linear-gradient(180deg, #003366 0%, #004488 100%);*/
    /*background: linear-gradient(180deg, #749ec7 0%, #597795 100%);*/
    background: linear-gradient(180deg, #99c3ed 0%, #f0f0f0 50%);
}

.service-card {
    background: linear-gradient(145deg, #0066aa 0%, #004488 100%);
    border-radius: 20px;
    padding: 3rem 2rem 1rem;
    /*margin-bottom: 3rem;*/
    border: 2px solid rgba(0, 200, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 200, 255, 0.4);
    border-color: rgba(0, 200, 255, 0.7);
}

.service-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0040, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.figure-caption {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Differentiation Section */
.differentiation {
    padding: 5rem 0;
    /*background: linear-gradient(180deg, #004488 0%, #002244 100%);*/
    background-color: #f5f5f5;

    .section-title, .section-subtitle {
        color: #333;
    }

    table {

        thead {
            th {
                background-color: #f3f3f3;
            }
        }

        th {
            text-align: center;
            padding: 20px;
            @media (max-width: 768px) {
                padding: 5px;
            }
        }

        td {
            padding: 20px 0 20px 29px;
            @media (max-width: 768px) {
                padding: 10px;
            }
        }
    }
}


.diff-card {
    background: linear-gradient(145deg, #1a2a4a 0%, #2a3a5a 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.3);
    border-color: rgba(0, 150, 255, 0.5);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ff99;
}

.diff-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.diff-description {
    color: #ccc;
    line-height: 1.6;
}

/* Works Section */
#works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #002244 0%, #003366 100%);
    color: #fff;
}

#works .col-12 {
    padding: 1rem;
}

#works a {
    text-decoration: none;
}

.content-typography p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.content-typography h2 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.content-typography h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.content-typography img {
    max-width: 100%;
    height: auto;
}


/* News Section */
.news {
    padding: 5rem 0;
    /*background: linear-gradient(180deg, #003366 0%, #004488 100%);*/
    /*background: linear-gradient(180deg, #749ec7 0%, #597795 100%);*/
    background: linear-gradient(180deg, #99c3ed 0%, #f0f0f0 50%);
}

.news .col-12 {
    border-bottom: 1px solid #000;
    padding: 1rem;

    &:first-child {
        border-top: 1px solid #000;
    }
}

.news a {
    text-decoration: none;
    @media (max-width: 768px) {
        width: 100%;
    }

}

.news-thumbnail {
    width: 160px;
    height: 120px;
    object-fit: cover;

    @media (max-width: 768px) {
        width: 100%;
        height: 150px;
    }
}

/* Target Section */
.target {
    padding: 5rem 0;
    background: linear-gradient(180deg, #002244 0%, #001122 100%);
}

.target-card {
    background: linear-gradient(145deg, #003366 0%, #004488 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    /*margin-bottom: 2rem;*/
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 150, 255, 0.2);
}

.target-icon {
    font-size: 2.5rem;
    color: #ff0040;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(180deg, #001122 0%, #002244 100%);
}

.testimonial-card {
    background: linear-gradient(145deg, #1a2a4a 0%, #2a3a5a 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #00ff99;
    transition: all 0.3s ease;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 150, 0.2);
}

.quote-icon {
    font-size: 2rem;
    color: #00ff99;
    margin-bottom: 1rem;
}


/* FAQ Section */
#faq {
    padding: 5rem 0;
}

/* Company Section */
#company {
    padding: 5rem 0;
    background: linear-gradient(180deg, #002244 0%, #001122 100%);

    table {

        th {
            text-align: center;
            padding: 20px;
            border-bottom: 1px solid #D32D26;

            @media (max-width: 768px) {
                text-align: left;
                display: block;
                width: 100%;
                border-bottom: none;
                padding: 20px;
            }
        }

        td {
            padding: 20px 0 20px 29px;
            @media (max-width: 768px) {
                display: block;
                width: 100%;
                padding: 0 20px 20px 20px;
            }
        }
    }
}


/* Contact Section */
.contact {
    padding: 5rem 0;
    /*background: linear-gradient(135deg, #002244 0%, #003366 100%);*/
    background: #f5f5f5;

    .section-title {
        color: #333;
    }
}

.contact-info {
    background: linear-gradient(145deg, #004488 0%, #0066aa 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    margin-top: 2rem;
    text-align: center;

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    @media (max-width: 768px) {
        padding: 1rem;
    }
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control, .form-select {
    border: 2px solid #0d6efd;
    border-radius: 4px;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.address-textarea {
    min-height: 120px;
}

.file-input-container {
    border: 2px solid #0d6efd;
    border-radius: 4px;
    padding: 0.75rem;
    background-color: #f8f9fa;
}


#instagram {
    padding: 5rem 0;
    background: linear-gradient(180deg, #99c3ed 0%, #f0f0f0 50%);

    .sbi_feedtheme_header_text {
        color: #f8f8f8;
    }


}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: #fff;
    font-size: 14px;
}

.footer .footer-content {
    background: #485664;
    padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
    margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: #fff;
}

.footer .footer-content .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
}


.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.footer .footer-content h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #0a53be;
    bottom: 0;
    left: 0;
}

.footer .footer-content .footer-links {
    margin-bottom: 10px;
}

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

.footer .footer-content .footer-links ul i {
    padding-right: 2px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.footer .footer-content .footer-links ul a:hover {
    color: #fff;
}

.footer .footer-content .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #0a53be;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
    background: rgba(#0a53be, 0.85);
}

.footer .footer-legal {
    padding: 30px 0 50px;
    background: #3a4753;
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: #fff;
}

.footer .footer-legal .credits a {
    color: #eee;
}

.footer .footer-legal .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(#fff, 0.1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
    background: #0a53be;
    text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        display: block;
        margin: 0.5rem auto;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.6s;
}


#scrollUp {
    bottom: 30px;
    right: 30px;
    background-color: #e2dede;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 50px;
    height: 50px;
    /*padding-top: 13px;*/
    font-size: 30px;
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    #scrollUp {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

.grecaptcha-badge {
    display: none;
}

.wpcf7-spinner {
    display: block;
}