/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}

/* Banner Section Start */

/* Banner Section */
.banner-section {
    padding: 70px 0;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner-image.png');
    /* change path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Subtitle */
.banner-sub-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ff3b30;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Main Heading */
.banner-heading {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 600;
    color: #002964;
}

.banner-heading span {
    color: #ff3b30;
}

/* Content */
.banner-content {
    font-size: 18px;
    line-height: 1.5;
    color: #646F88;
    max-width: 500px;
    margin-bottom: 10px;
}

/* Features */
.alerts-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.alerts .image-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.alerts .image-container img {
    max-width: 55px;
    max-height: 55px;
    object-fit: contain;
}

.alerts h4 {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #646F88;
    margin: 0;
}

/* Buttons */
.banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.banner-buttons a {
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.explore-btn {
    background: #ff3b30;
    color: #fff;
}

.quote-btn {
    border: 1px solid #ff3b30;
    color: #ff3b30;
    background: transparent;
}

/* Banner Section End */

/* USP Section Start */

.usp-section {
    background: #002964;
    padding: 50px 0;
}

.usp-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.usp-item {
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.usp-item:last-child {
    border-right: none;
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
}

.usp-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.usp-item h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.usp-item p {
    color: #D8D8D8;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* USP Section Start */

/* Product Showcase Section Start */
.product-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.product-showcase .device-wrapper {
    position: relative;
    text-align: center;
}

.product-showcase .device-wrapper .glow-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(6, 46, 130, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.product-showcase .device-wrapper .device-img {
    width: 480px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.product-showcase .product-content p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-showcase .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.product-showcase .feature-grid .feature-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 500;
}

.product-showcase .product-content .learn-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Product Showcase Section End */

/* Industries Section Start */

.industries-section {
    padding: 100px 0;
    background: #f8fbff;
}

.industries-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.industries-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 0;
    line-height: 1.3;
}

/* Grid */
.industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* Card */
.industries-section .industries-grid .industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Glow border */
.industries-section .industries-grid .industry-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #002964, #00cfff, #002964);
    border-radius: 18px;
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

/* Image */
.industries-section .industries-grid .industry-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

/* Overlay */
.industries-section .industries-grid .industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(6, 46, 130, 0.95),
            rgba(6, 46, 130, 0.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.industries-section .industries-grid .industry-overlay h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    transform: translateY(20px);
    transition: 0.4s;
}

.industries-section .industries-grid .industry-overlay span {
    color: #fff;
    font-size: 26px;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s;
}

/* Hover Effects */
.industries-section .industries-grid .industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industries-section .industries-grid .industry-card:hover::before {
    opacity: 1;
}

.industries-section .industries-grid .industry-card:hover img {
    transform: scale(1.12);
}

.industries-section .industries-grid .industry-card:hover .industry-overlay {
    opacity: 1;
}

.industries-section .industries-grid .industry-card:hover .industry-overlay h4 {
    transform: translateY(0);
}

.industries-section .industries-grid .industry-card:hover .industry-overlay span {
    opacity: 1;
    transform: translateX(0);
}

/* Industries Section Start */

/* How it Work Section Start */

.how-it-works-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section .section-heading {
    text-align: center;
    margin-bottom: 120px;
}

.how-it-works-section .section-heading .sub-title {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
}

.how-it-works-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.how-it-works-section .section-heading p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.how-it-works-section .how-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.how-it-works-section .how-wrapper .arrow-wrap img {
    width: 120px;
}

/* Card */
.how-it-works-section .how-wrapper .step-card {
    width: 360px;
    background: #fff;
    border-radius: 28px;
    padding: 90px 35px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(6, 46, 130, 0.08);
    transition: all 0.4s ease;
}

.how-it-works-section .how-wrapper .step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(6, 46, 130, 0.15);
}

.how-it-works-section .how-wrapper .step-card .step-icon {
    width: 120px;
    height: 120px;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

/* Outer orbit ring */
.how-it-works-section .how-wrapper .step-card .step-icon .orbit {
    width: 120px;
    height: 120px;
    border: 3px solid #dce7ff;
    border-radius: 50%;
    position: absolute;
    animation: rotateOrbit 6s linear infinite;
}

/* Moving dot */
.how-it-works-section .how-wrapper .step-card .step-icon .moving-dot {
    width: 14px;
    height: 14px;
    background: #002964;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Inner circle */
.how-it-works-section .how-wrapper .step-card .step-icon .icon-inner {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(6, 46, 130, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.how-it-works-section .how-wrapper .step-card .step-icon .icon-inner img {
    width: 50px;
}

/* Rotation Animation */
@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Number */
.how-it-works-section .how-wrapper .step-card .step-number {
    width: 55px;
    height: 55px;
    background: #002964;
    color: white;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.how-it-works-section .how-wrapper .step-card h4 {
    font-size: 20px;
    color: #002964;
    font-weight: 500;
    margin-bottom: 20px;
}

.how-it-works-section .how-wrapper .step-card p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
}

/* Dots */
.how-it-works-section .how-wrapper .step-card .step-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.how-it-works-section .how-wrapper .step-card .step-dots span {
    width: 40px;
    height: 8px;
    background: #d7deeb;
    border-radius: 20px;
}

.how-it-works-section .how-wrapper .step-card .step-dots span.active {
    background: #002964;
}

/* How it Work Section End */

/* Why Choose Us Section Start */

.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.why-choose-section .why-left p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-choose-section .why-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.why-choose-section .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-choose-section .why-grid .why-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    min-height: 310px;
}

.why-choose-section .why-grid .why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(6, 46, 130, 0.15);
}

.why-choose-section .why-grid .why-icon {
    font-size: 34px;
    margin-bottom: 18px;
    transition: 0.4s;
}

.why-choose-section .why-grid .why-card:hover .why-icon {
    transform: rotate(12deg) scale(1.1);
}

.why-choose-section .why-grid .why-card h4 {
    font-size: 24px;
    color: #002964;
    margin-bottom: 12px;
    font-weight: 500;
}

.why-choose-section .why-grid .why-card p {
    color: #646F88;
    margin: 0;
}


/* Why Choose Us Section End */

/* Dashboard Section Start */

.dashboard-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    overflow: hidden;
}

.dashboard-section .dashboard-content p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Checklist */
.dashboard-section .dashboard-content .dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.dashboard-section .dashboard-content .dashboard-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #002964;
    font-weight: 500;
}

.dashboard-section .dashboard-content .dashboard-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff3b30;
    font-weight: 700;
}

/* Button */
.dashboard-section .dashboard-content .learn-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Image */
.dashboard-section .dashboard-image-wrapper {
    position: relative;
    text-align: center;
}

.dashboard-section .dashboard-glow {
    width: 500px;
    height: 500px;
    background: rgba(6, 46, 130, 0.08);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.dashboard-section .dashboard-image-wrapper img {
    position: relative;
    max-width: 100%;
    z-index: 2;
    animation: floatImage 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Dashboard Section End */

/*==========================
Alarm Section
==========================*/

.alarm-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, #0d3c8d 0%, transparent 45%),
        linear-gradient(135deg, #041d49, #062e82);
    overflow: hidden;
    position: relative;
}

.alarm-section::before {
    content: "";
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    position: absolute;
    right: -150px;
    top: -150px;
}

/* Device */

.alarm-section .alarm-image {
    position: relative;
    text-align: center;
}

.alarm-section .alarm-image .device-glow {
    width: 380px;
    height: 380px;
    background: #2e71ff33;
    border-radius: 50%;
    filter: blur(70px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.alarm-section .alarm-image img {
    max-width: 100%;
    position: relative;
    z-index: 2;
    animation: deviceFloat 4s ease-in-out infinite;
}

@keyframes deviceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Content */

.alarm-section .alarm-content h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

.alarm-section .alarm-content p {
    color: #d8d8d8;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 17px;
}

.alarm-section .alarm-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.alarm-section .alarm-content li {
    color: #d8d8d8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.alarm-section .alarm-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66d38b;
    font-weight: bold;
}

.alarm-section .alarm-content .alarm-btn {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: .35s;
}

.alarm-section .alarm-content .alarm-btn:hover {
    background: #fff;
    color: #062e82;
}

/* Stats */

.alarm-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.alarm-section .stats-grid .stat-box {
    padding: 45px 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .03);
    transition: .4s;
}

.alarm-section .stats-grid .stat-box:hover {
    transform: translateY(-10px);
    background: #ffffff10;
    border-color: #4da3ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.alarm-section .stats-grid .stat-box h3 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}

.alarm-section .stats-grid .stat-box span {
    color: #dce7ff;
    font-size: 16px;
    line-height: 1.5;
}

.cta-section {
    padding: 120px 0;
    background: #fff;
}

.cta-section .cta-box {
    height: 450px;
    margin: auto;
    background: radial-gradient(circle at top left, #0d3c8d 0%, transparent 45%), linear-gradient(135deg, #041d49, #062e82);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(6, 46, 130, .18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* glow */

.cta-section .cta-box::before {
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    position: absolute;
    top: -180px;
    left: -150px;
}

.cta-section .cta-box::after {
    content: "";
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    position: absolute;
    bottom: -140px;
    right: -120px;
}

.cta-section .cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-section .cta-box p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto 40px;
}

.cta-section .cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .cta-box .cta-buttons .primary-btn {
    background: #fff;
    color: #002964;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: .35s;
}

.cta-section .cta-box .cta-buttons .primary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.cta-section .cta-box .cta-buttons .secondary-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: .35s;
}

.cta-section .cta-box .cta-buttons .secondary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

/*========================
FOOTER
========================*/

.footer {
    background:
        linear-gradient(135deg, #031a3d, #062e82);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.footer .footer-top-shape {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer .footer-top-shape svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* Newsletter */

.footer .newsletter-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.footer .newsletter-box h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.footer .newsletter-box p {
    color: #d8e5ff;
    margin: 0;
}

.footer .newsletter-box form {
    display: flex;
    gap: 15px;
}

.footer .newsletter-box input {
    width: 320px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.footer .newsletter-box button {
    padding: 16px 28px;
    background: #ff3b30;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.footer .newsletter-box button:hover {
    transform: translateY(-4px);
}

/* Grid */
.footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 70px;
}

.footer .footer-grid .footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer .footer-grid .footer-about {
    line-height: 1.8;
    color: #d5def3;
    max-width: 360px;
}

/* Titles */

.footer .footer-grid h4 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer .footer-grid h4::after {
    content: "";
    width: 45px;
    height: 2px;
    background: #ff3b30;
    display: block;
    margin-top: 12px;
}

/* Lists */

.footer .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-grid ul li {
    margin-bottom: 16px;
}

.footer .footer-grid ul a {
    text-decoration: none;
    color: #d5def3;
    transition: .3s;
}

.footer .footer-grid ul a:hover {
    padding-left: 8px;
    color: #fff;
}

/* Contact */

.footer .footer-grid .contact-list li {
    color: #d5def3;
}

/* Social */

.footer .footer-grid .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer .footer-grid .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.footer .footer-grid .social-icons a:hover {
    background: #ff3b30;
    transform: translateY(-6px);
}

/* Bottom */

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer .footer-bottom p {
    margin: 0;
    color: #cfdaf5;
}

.footer .footer-bottom div {
    display: flex;
    gap: 30px;
}

.footer .footer-bottom a {
    color: #cfdaf5;
    text-decoration: none;
    transition: .3s;
}

.footer .footer-bottom a:hover {
    color: #fff;
}