
        :root {
            --primary: #0A3D62;
            --secondary: #FF6B6B;
            --accent: #4ECDC4;
            --dark: #212529;
            --light: #F8F9FA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f0f8ff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
       .navbar-custom {
            background-color: white; /* Dark background */
            padding: 15px 20px;
        }
        .navbar-brand img {
            height: 70px; /* Adjust logo size */
            margin-left: -20px;
        }
        .navbar-nav {
            margin: 0 auto; /* Center menu items */
        }
        .nav-item {
            margin: 0 15px; /* Spacing between menu items */
            position: relative;
        }
        .nav-link {
            color: #0167B1 !important;
            font-weight: bold;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-link::after {
            content: "";
            display: block;
            width: 0;
            height: 3px;
            background-color: #E03E00;
            transition: width 0.3s ease-in-out;
            position: absolute;
            left: 0;
            bottom: 0;
        }
        .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8); /* White border */
 
}
.call-btn {
            background: #F54900;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: bold;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .call-btn i {
            margin-right: 8px;
        }
.call-btn:hover {
    background: #e03e00;
    color: white;
    text-decoration: none;
}
.navbar-toggler-icon {
    filter: invert(100%) brightness(200%);
}

        .nav-link:hover::after {
            width: 100%;
        }
        .dropdown-menu {
            border-radius: 8px;
            border: none;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .dropdown-item {
            color:#0067B1 !important;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            animation: fadeIn 0.3s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Footer */
.footer {
    background-color: #f3f7fa;
    padding: 50px 10%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo and About */
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-text {
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 20px;
    color: #26a69a;
    transition: 0.3s;
}

.social-icons a:hover {
    color: gray;
}

/* Footer Headings */
.footer-heading {
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer Links */
.footer-links a {
    color: #324A6D;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: gray;
}

/* Contact Info */
.contact-info {
    gap: 8px;  /* space between icon and text */
    margin-bottom: 10px;
    flex-wrap: nowrap; /* prevent wrapping */
}

.contact-info i {
    font-size: 18px;
    color: #26a69a;
}

.contact-info span,
.contact-info a {
    color: #6d6d6d;
    font-size: 14px;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .footer {
        grid-template-columns: 1fr 1fr;
        text-align: left; /* align text left */
    }
    .social-icons {
        justify-content: flex-start;
    }
    .contact-info {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left; /* left-align all footer columns */
    }
    .contact-info {
        flex-wrap: nowrap; /* ensure icon and text stay inline */
    }
}

   
        .main-header {
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #E03E00
        }
        
        .header-cta {
            background-color: var(--secondary);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s, background-color 0.3s;
        }
        
        .header-cta:hover {
            background-color: #e55a00;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 61, 98, 0.6), rgba(10, 61, 98, 0.5)), 
                url("/static/img/banner.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}


        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-cta {
            display: inline-block;
            background-color: #E03E00; /* updated button color */
            color: white; /* keep text color */
            padding: 18px 40px;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin-top: 20px;
        }

        /* Keep hover animation as is */
        .hero-cta:hover {
            background-color: #ff5500;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        a.hero-cta:hover {
            color: white !important; /* forces white text */
            background-color: #E03E00; /* keep button color */
            transform: none;
        }

        .cta-button{
            color: white !important; /* forces white text */
            background-color: #E03E00; /* keep button color */
        }
        .hero-cta i {
            margin-right: 10px;
        }
        
        /* Social Proof */
        .social-proof {
            padding: 60px 0;
            background-color: white;
        }
        
        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .proof-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border: 2px solid var(--accent);
        }
        
        .proof-card:hover {
            transform: translateY(-10px);
        }
        
        .proof-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .proof-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Why Choose Us */
        .why-us {
            padding: 80px 0;
            background-color: #e9f7fe;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .why-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .benefit i {
            color: var(--accent);
            font-size: 1.5rem;
            margin-top: 5px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-top: 4px solid var(--accent);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 20px;
        }
        
        .service-cta {
            color: #F54900;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .service-cta:hover {
            color: #E03E00 !important;
        }
        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(to right, var(--primary), #0d5288);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background-color: #e9f7fe;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .step-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            border: 2px solid var(--accent);
        }
        
        .step-number {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .step-card h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            border-left: 4px solid var(--accent);
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: #e9f7fe;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .member-img {
            height: 250px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
        }
        
        .member-info {
            padding: 20px;
        }
        
        .member-info h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .member-title {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Coverage Area */
        .coverage {
            padding: 80px 0;
            background-color: white;
        }
        
        .area-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .area-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .area-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .area-table tr:last-child td {
            border-bottom: none;
        }
        
        .area-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: #e9f7fe;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--accent);
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--light);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Footer */
        .main-cta {
            background: linear-gradient(to right, var(--primary), #0d5288);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .main-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .main-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: rgb(242,101,34);
            color: white;
            padding: 18px 40px;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            background-color: rgb(243,73,0);
            
        }
        
        footer {
            background-color: var(--primary);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--accent);
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: black;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #E03E00
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        svg{
            color:black
        }
        /* Payment Methods */
        .payments {
            background-color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .payment-logos {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .payment-logo {
            font-size: 8rem;
            color: var(--primary);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .why-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .main-header {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                font-size: 1.2rem;
                padding: 15px 30px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 8px;
            }
        }
        a{
            text-decoration: none !important;
            
        }

.call-now-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #E03E00;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
}
.call-now-bar:hover{
    color: white!important;
}
.contact-info a{
    color: #6D6D6D !important;
}
/* Show only on mobile screens */
@media (max-width: 768px) {
    .call-now-bar {
        display: block;
    }
}