
    :root {
        --primary: #004e92;
        --primary-dark: #002d55;
        --accent: #ff9933;
        --dark: #0043a0;
        --light: #f8f9fa;
        --gradient: linear-gradient(135deg, #004e92 0%, #002d55 100%);
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: #fcfcfc;
        overflow-x: hidden;
    }

    /* --- Global Styles --- */
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title span {
        color: var(--accent);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-weight: 800;
        color: var(--dark);
        font-size: 2.5rem;
    }

    .divider {
        height: 4px;
        width: 70px;
        background: var(--primary);
        margin: 15px auto;
        border-radius: 2px;
    }

    /* --- Navbar --- */
    .top-bar {
        background: var(--dark);
        color: white;
        font-size: 0.85rem;
    }

    .top-bar a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }

    .top-bar a:hover {
        color: var(--accent);
    }

    .social-icons a {
        color: #fff;
        margin-left: 10px;
        font-size: 14px;
        transition: 0.3s;
    }

    .social-icons a:hover {
        color: #ffc107;
    }

    .offcanvas-top-info a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
    }

    .offcanvas-top-info i {
        color: #0b5ed7;
    }

    .offcanvas-top-info .social-icons a {
        margin-right: 12px;
        font-size: 18px;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand {
        font-family: 'Merriweather', serif;
        color: var(--primary) !important;
        font-size: 1.4rem;
    }

    .nav-link {
        color: var(--dark) !important;
        font-weight: 600;
        padding: 0 15px !important;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -10px;
        left: 15px;
        background-color: var(--primary);
        transition: width 0.3s;
    }

    .nav-link:hover::after {
        width: 70%;
    }

    .btn-login {
        background: var(--gradient);
        color: white;
        border-radius: 50px;
        padding: 10px 30px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 78, 146, 0.3);
        transition: 0.3s;
    }

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 78, 146, 0.5);
        color: white;
    }

    /* --- Hero --- */
    .carousel-item {
        height: 650px;
        background-color: var(--dark);
    }

    @media (max-width: 576px) {
        .carousel-item {
            height: 270px;
        }
    }

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        filter: brightness(0.6);
    }

    .carousel-caption h1 {
        font-size: 3.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* --- Floating Cards (Hover Lift) --- */
    .floating-container {
        margin-top: -100px;
        position: relative;
        z-index: 100;
    }

    .quick-card {
        background: #dff8ff;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-bottom: 4px solid transparent;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .quick-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s;
    }

    .quick-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .quick-card:hover::before {
        transform: scaleX(1);
    }

    .quick-icon {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 20px;
        background: rgba(0, 78, 146, 0.05);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        transition: 0.4s;
    }

    .quick-card:hover .quick-icon {
        background: var(--primary);
        color: white;
        transform: rotateY(360deg);
    }

    .mark {
        background: orange;
    }

    /* --- About Section --- */
    .about-img {
        border-radius: 15px;
        box-shadow: 20px 20px 0px rgba(0, 78, 146, 0.1);
        object-fit: cover;
        height: 100%;
    }

    .about-list li {
        margin-bottom: 15px;
        font-weight: 500;
    }

    .about-list i {
        color: var(--accent);
        margin-right: 15px;
        background: rgba(255, 153, 51, 0.1);
        padding: 8px;
        border-radius: 50%;
    }

    /* --- Why Choose Us --- */
    .feature-card {
        padding: 30px;
        background: white;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .feature-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: rgba(0, 78, 146, 0.1);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: 0.5s ease;
    }

    .feature-card:hover .feature-icon-circle {
        background-color: var(--primary);
        color: white;
        transform: rotate(360deg);
    }

    /* --- Service Boxes (Magic Curtain Effect) --- */
    .service-box {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: 0.3s;
        border: 1px solid #f0f0f0;
        height: 100%;
    }

    .service-box::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: var(--gradient);
        transition: 0.5s ease;
        z-index: -1;
        border-radius: 15px;
    }

    .service-box:hover::after {
        width: 100%;
    }

    .service-box h4 {
        transition: 0.3s;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-box p {
        transition: 0.3s;
        color: black;
    }

    .service-box i {
        font-size: 1.5rem;
        color: var(--primary);
        /*margin-bottom: 25px;*/
        transition: 0.3s;
    }

    .service-box:hover h4,
    .service-box:hover p {
        color: white !important;
    }

    .service-box:hover i {
        color: var(--accent);
        transform: scale(1.1);
    }

    /* --- Testimonials --- */
    .testimonial-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        position: relative;
        margin: 15px 0;
        border: 1px solid #f0f0f0;
        transition: 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

    .testimonial-card i.quote-icon {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 4rem;
        color: #f2f2f2;
        z-index: 0;
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .user-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid var(--accent);
    }

    /* --- FAQ Accordion --- */
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 10px !important;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    }

    .accordion-button {
        padding: 20px;
        font-weight: 600;
        color: var(--dark);
        background: white;
    }

    .accordion-button:not(.collapsed) {
        background: var(--primary);
        color: white;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

    /* --- Contact Section --- */
    .contact-box {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        height: 100%;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .contact-icon-box {
        width: 50px;
        height: 50px;
        background: var(--light);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-right: 15px;
        transition: 0.3s;
    }

    .contact-item:hover .contact-icon-box {
        background: var(--primary);
        color: white;
    }

    .form-control,
    .form-select {
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        background: #fcfcfc;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
        background: white;
    }

    /* --- Footer (Wave Design) --- */
    .footer-wrapper {
        position: relative;
        background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
        color: white;
        padding-top: 50px;
        margin-top: 50px;
    }

    .custom-shape-divider-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: translateY(-99%);
    }

    .custom-shape-divider-top svg {
        position: relative;
        display: block;
        width: calc(150% + 1.3px);
        height: 70px;
    }

    .custom-shape-divider-top .shape-fill {
        fill: #0f2027;
    }

    .footer-heading {
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--accent);
        letter-spacing: 1px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        position: relative;
        transition: 0.3s;
        display: block;
        margin-bottom: 10px;
    }

    .footer-links a:hover {
        color: white;
        padding-left: 8px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

    .social-btn:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        padding: 12px;
    }

    .newsletter-input:focus {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        box-shadow: none;
        border-color: var(--accent);
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        font-size: 0.85rem;
        color: #aaa;
    }

    .footer-contact li {
        margin-bottom: 10px;
        color: white;

    }

    .footer-contact i {
        color: #ff9933;
        margin-right: 8px;
    }

    .footer-contact a {
        color: white;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #fff;
    }

    .sticky-actions {
        position: fixed;
        left: 15px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 9999;
    }

    .sticky-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 30px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        transition: transform 0.3s ease;
    }

    .sticky-btn:hover {
        transform: scale(1.05);
    }

    .call-btn {
        background: #0b5ed7;
    }

    .whatsapp-btn {
        background: #25d366;
    }

    .owl-theme .owl-dots .owl-dot span {
        background: #ccc;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        background: #0b5ed7;
    }

    element.style {}

    .owl-carousel .owl-item img {
        display: block;
        width: auto;
    }

    .service-btn {
        padding: 10px 28px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
    }

    .contact-item a {
        color: #6c757d;
        text-decoration: none;
    }

    .contact-item a:hover {
        color: #0b5ed7;
    }

    .section-desc {
        max-width: 650px;
        margin: 10px auto 20px;
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }

    .process-box {
        background: #fff;
        padding: 35px 25px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        transition: 0.3s ease;
        position: relative;
    }

    .process-box:hover {
        transform: translateY(-8px);
    }

    .process-box i {
        font-size: 36px;
        color: #0b5ed7;
        margin-bottom: 12px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #0b5ed7;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: 0 auto 15px;
    }

    .thankyou-section {
        background: #f8f9fa;
    }

    .thankyou-box {
        background: #ffffff;
    }

    .thankyou-box h2 {
        color: #1f2d3d;
    }

    /* Modal Styling */
    .modal-content {
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
        background: #0d6efd;
        color: #fff;
        border-radius: 15px 15px 0 0;
    }

    .modal-title {
        font-weight: 600;
    }



    /* Error text */
    .error {
        color: red;
        font-size: 13px;
    }

    /* Submit Button */
    .btn-submit {
        background: #198754;
        color: #fff;
        padding: 10px 25px;
        border-radius: 8px;
    }

    .btn-submit:hover {
        background: #157347;
    }

    /* Success Message */
    .success-msg {
        display: none;
        background: #d1e7dd;
        color: #0f5132;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 15px;
    }


    .form-wrapper {
        max-width: 1000px;
        margin: 40px auto;
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    }

    .form-section-title {
        background: #0d6efd;
        color: #fff;
        padding: 8px 12px;
        border-radius: 6px;
        margin-top: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }



    .nav-tabs .nav-link.active {
        background: #0d6efd;
        color: #fff !important;
    }

    #scrollTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--accent);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 5px;
        text-align: center;
        line-height: 45px;
        display: none;
        z-index: 999;
        cursor: pointer;
        transition: 0.3s;
    }

    #scrollTop:hover {
        transform: translateY(-5px);
        background: #e68a00;
    }

    .error-message {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: none;
    }

    .form-control.error,
    .form-select.error {
        border-color: #dc3545;
    }

    .success-message {
        display: none;
        margin-top: 1rem;
    }

    /* Hide honeypot field from users */
    .honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
