 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
/* Navbar Styling */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.navbar-toggler {
    border: none;
    background: none;
    font-size: 24px;
}

/* Navbar Links */
.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Call to Action Button */
.btn-protect {
    background: #007bff;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-protect:hover {
    background: #0056b3;
    color: #fff;
}

/* Mobile View */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        background: #ffffff;
        padding: 10px 0;
    }

    .btn-protect {
        width: 100%;
        margin-top: 10px;
        display: block;
    }
}


        .banner {
    background: linear-gradient(135deg, #1b2a4e 0%, #007bff 110%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Banner Content */
.banner-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d1d1d1;
}

/* Buttons */
.btn-primary {
    background: #ff4c4c;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #007bff;
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #1b2a4e;
}

/* Banner Image */
.banner-image {
    max-width: 50%;
    height: auto;
    animation: float 3s infinite ease-in-out;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner {
        text-align: center;
    }

    .btn-primary, .btn-outline-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
/*
.about-us {
    color: white;
    position: relative;
}
#heading{
    color: #007bff;
}
.custom-shape-divider-top,
.custom-shape-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top {
    top: -1px;
}

.custom-shape-divider-bottom {
    bottom: -1px;
}

.feature-box {
    transition: transform 0.3s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-5px);
}
.features-section {
    background: #ffffff;
    padding: 60px 0;
}

.features-section h2 {
    color: #007bff;
}

.features-section .highlight {
    color: #e74c3c;
}

.feature-image-wrapper {
    text-align: center;
}

.feature-shared-img {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
}

.feature-item:hover {
    background: #007bff;
    color: white;
}

.feature-item:hover h4,
.feature-item:hover p {
    color: white;
}*/

/* Background Gradient */
.about-us {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subtitle */
.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

/* Feature Box */
/* Feature Box */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: white;
}

/* Feature Icons */
.feature-icon i {
    font-size: 50px;
    color: #007bff; /* Adjust color to match theme */
    margin-bottom: 15px;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}


/* Feature Icons */
.feature-box .icon {
    width: 60px;
    margin: 0 auto 15px;
}

.feature-box img {
    width: 100%;
}

/* Call Button */
.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background: #0056b3;
}

.how-it-works {
    background: #ffffff;
    padding: 60px 0;
}

.how-it-works h2 {
    color: #007bff;
}

.how-it-works .highlight {
    color: #e74c3c;
}

/* Steps */
.step {
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #e74c3c;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
}

.step h4 {
    font-weight: bold;
    color: #2c3e50;
}

.step-number {
    background: #e74c3c;
    color: white;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}
/* Background */
.features-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0;
}

/* Section Title */
h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Feature Card */
.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Feature Card - Hover Effect */
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

/* Feature Icons */
.icon {
    font-size: 50px;
    color: #00d4ff;
    margin-bottom: 15px;
}

/* Image */
.how-it-works-img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


/* Section Background */
.how-it-works {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0;
}

/* Timeline Layout */
.timeline {
    position: relative;
    padding-left: 40px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    left: 0;
    top: 5px;
    background: #00d4ff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Timeline Content */
.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: white;
}
/* General Section Styling */
.pricing-section {
   
    background: #181f38;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
/*    color: #00d4ff;*/
}

.section-subtitle {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
}

/* Pricing Cards */
.pricing-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    min-height: 380px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Card Colors */
.basic {
    background: rgba(255, 255, 255, 0.1);
}
.standard {
    background: rgba(255, 255, 255, 0.2);
}
.premium {
    background: rgba(255, 255, 255, 0.3);
}

/* Plan Titles & Pricing */
.plan-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 15px;
}

/* List Items */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 1rem;
    padding: 5px 0;
}

.pricing-card ul .disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* Call Now Button */
.pricing-card .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}


/* Image Styling */
.how-it-works-img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hover Effect */
.step:hover {
    background: #333;
    color: white;
}

.step:hover h4 {
    color: white;
}
.features-section {
    background-color: #f8f9fa;
}

.feature-box {
    transition: all 0.3s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.pricing-card {
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 20px;
/*    color: #e74c3c;*/
    margin-bottom: 15px;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}


.footer-section {
    background: linear-gradient(135deg, #16213d, #1a252f);
    color: #ffffff;
    padding: 60px 0 5px;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #007bff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-newsletter form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter .form-control {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.btn-subscribe {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #222;
    font-weight: bold;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background-color: #d4ac0d;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f1c40f;
}
