    header {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.4) !important;
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid #ffdd57;
    }
    .navbar {
        padding: 10px 0;
        width: 100%;
        transition: all 0.5s ease-in-out;
        font-family: 'Poppins', sans-serif;
    }
    .fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        animation: fadeIn 0.5s ease-in-out;
        border-bottom: 1px solid #ffdd57;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .navbar-brand {
        font-size: 2rem;
        font-weight: bold;
        padding: 0px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        color: #fff;
    }
    .navbar-brand img {
        height: 50px;
        margin-right: 12px;
    }
    .nav-link {
        font-size: 1rem;
        font-weight: 500;
        margin: 0 12px;
        transition: all 0.3s ease-in-out;
        color: #ffffff !important;
        padding: 10px 12px;
        border-radius: 6px;
        text-transform: uppercase;
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        background: #ffdd57;
        transition: all 0.3s ease-in-out;
        transform: translateX(-50%);
    }
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
    .nav-link:hover, .nav-link.active {
        color: #c69f00 !important;
    }
    .navbar-toggler {
        border: 2px solid #fff;
        padding: 5px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .helpline {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ffdd57;
        display: flex;
        align-items: center;
        margin-left: 20px;
        position: relative;
    }
    .helpline i {
        font-size: 1.5rem;
        margin-right: 8px;
        animation: ring 1s infinite;
        color: #ffdd57;
    }
    @keyframes ring {
        0% { transform: rotate(0); }
        10% { transform: rotate(15deg); }
        20% { transform: rotate(-15deg); }
        30% { transform: rotate(15deg); }
        40% { transform: rotate(-15deg); }
        50% { transform: rotate(0); }
    }
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.8);
        border: none;
    }
    .dropdown-item {
        color: #fff;
    }
    .dropdown-item:hover {
        background: #ffdd57;
        color: #000;
    }

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 50px;
            flex-direction: column;
            text-align: left;
        }
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        .slider-text {
            font-size: 1.3em;
            font-weight: bold;
            text-transform: uppercase;
            color: white;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
            opacity: 0;
            position: absolute;
            left: 50px;
            display: inline-block;
            padding: 5px 10px;
        }
        .slider-text.highlight {
            background: orange;
            font-size: 1.5em;
            color: #000;
            font-weight: bold;
            border-radius: 5px;
        }
        .slide.active .slider-text:nth-child(1) {
            animation: fadeInText .5s ease-in-out forwards;
            top: 40%;
        }
        .slide.active .slider-text:nth-child(2) {
            animation: fadeInText 1s ease-in-out forwards;
            top: 45%;
        }
        @keyframes fadeInText {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
    .slider-text {
        display: none;
    }
}

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        .nav-dot {
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        .nav-dot.active {
            opacity: 1;
        }
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
        }
        .arrow-left {
            left: 10px;
        }
        .arrow-right {
            right: 10px;
        }


/* Clickable Effect */
.service-highlights, .packages-section {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

/* Click Effect */
.service-highlights:active, .packages-section:active {
    transform: scale(0.98);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.service-highlights {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

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

.service-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}




.service-highlights {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.section-title {
    font-size: 32px;
    color: #002855;
    font-weight: bold;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.highlight-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-card {
    background: rgba(0, 40, 85, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.highlight-card i {
    font-size: 40px;
    color: #002855;
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: #002855;
    font-size: 22px;
}

.highlight-card p {
    color: #555;
    font-size: 16px;
}

.highlight-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 40, 85, 0.2);
}

.highlight-card i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Unique Colors for Each Icon */
.highlight-card:nth-child(1) i {
    color: #ff9800; /* Orange for Speed */
}

.highlight-card:nth-child(2) i {
    color: #4caf50; /* Green for Security */
}

.highlight-card:nth-child(3) i {
    color: #2196f3; /* Blue for Support */
}

/* Icon Hover Effect */
.highlight-card:hover i {
    transform: scale(1.2);
}





/* Background Section */
.how-it-works {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    color: white;
    overflow: hidden;
  
}

/* Background Image Animation */
.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    color: #ffffff;

    z-index: -1;
    animation: zoomIn 10s infinite alternate ease-in-out;
}

/* Dark Overlay */
.how-it-works::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    background: rgba(161, 113, 0, 0.985); /* Dark blue overlay */
    z-index: -1;
}

/* Background Zoom-in Animation */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Animated Text */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Step Number */
.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 16px;
}






/* Coverage */
.coverage-section {
    padding: 60px 10%;
    background: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #002855;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.coverage-search {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.coverage-search input {
    width: 300px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.coverage-search button {
    padding: 10px 20px;
    background: #002855;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.coverage-search button:hover {
    background: #004080;
}

.coverage-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.coverage-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Contact form */
.contact-section {
    background: #f4f4f4;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    gap: 30px;
}

.contact-form {
    flex: 1;
    padding: 20px;
}

.contact-form h2 {
    font-size: 28px;
    color: #002855;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: white;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    top: 14px;
    left: 12px;
    color: #777;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #002855;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #002855;
    background: white;
    padding: 0 5px;
}

textarea {
    min-height: 100px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #002855;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #004080;
}

/* Right Side: Contact Image */
.contact-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-form, .contact-image {
        width: 100%;
        text-align: center;
    }

    .contact-image img {
        max-width: 80%;
        margin-top: 20px;
    }

    .input-group input, 
    .input-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 10px;
    }
}


/* Footer */


.footer {
    background: #00285500;
    color: rgb(0, 0, 0);
    padding: 50px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-about, 
.footer-links, 
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    color: #000000;
}

.footer-links h3, 
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffcc00;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #000000;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    color: rgb(0, 0, 0);
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #000000;
}
