
            :root {
                --navy: #1a2a4a;
                --navy-light: #263a5a;
                --navy-dark: #0f1a2e;
                --gold: #c9a227;
                --gold-light: #d4b545;
                --gold-dark: #a88a1f;
                --text-light: #f8f9fa;
                --text-muted: #6c757d;
                --bg-light: #f8f9fa;
                --border-color: #e9ecef;
                --font-1: "Inter Tight", sans-serif;
                --font-2: Poppins, Tahoma, Geneva, sans-serif;
            }

            h1, h2, h3, h4, h5, h6, .font-serif {
                font-family: "Inter Tight", sans-serif !important;
            }
            
            /* Typography */
            body {
                font-family: 'Inter', sans-serif;
                color: #1a2a4a;
                line-height: 1.7;
            }
            
            h1, h2, h3, h4, h5, h6, .font-serif {
                font-family: 'Playfair Display', serif;
                font-weight: 600;
            }
            
            .text-gold {
                color: var(--gold) !important;
            }
            
            .text-navy {
                color: var(--navy) !important;
            }
            
            .bg-navy {
                background-color: var(--navy) !important;
            }
            
            .bg-navy-dark {
                background-color: var(--navy-dark) !important;
            }
            
            .bg-gold {
                background-color: var(--gold) !important;
            }
            
            .bg-light-custom {
                background-color: var(--bg-light);
            }
            
            /* Buttons */
            .btn-gold {
                background: linear-gradient(135deg, var(--gold), var(--gold-light));
                color: #fff;
                border: none;
                padding: 12px 28px;
                font-weight: 600;
                border-radius: 8px;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px -10px rgba(201, 162, 39, 0.4);
            }
            
            .btn-gold:hover {
                background: linear-gradient(135deg, var(--gold-dark), var(--gold));
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 15px 35px -10px rgba(201, 162, 39, 0.5);
            }
            
            .btn-outline-gold {
                border: 2px solid var(--gold);
                color: var(--gold);
                padding: 10px 26px;
                font-weight: 600;
                border-radius: 8px;
                background: transparent;
                transition: all 0.3s ease;
            }
            
            .btn-outline-gold:hover {
                background: var(--gold);
                color: #fff;
            }
            
            .btn-outline-light-custom {
                border: 2px solid rgba(255,255,255,0.3);
                color: #fff;
                padding: 10px 26px;
                font-weight: 600;
                border-radius: 8px;
                background: transparent;
                transition: all 0.3s ease;
            }
            
            .btn-outline-light-custom:hover {
                background: rgba(255,255,255,0.1);
                border-color: #fff;
                color: #fff;
            }
            
            .btn-navy {
                background: var(--navy);
                color: #fff;
                padding: 12px 28px;
                font-weight: 600;
                border-radius: 8px;
                transition: all 0.3s ease;
            }
            
            .btn-navy:hover {
                background: var(--navy-light);
                color: #fff;
                transform: translateY(-2px);
            }
            
            /* Top Bar */
            .top-bar {
                background: var(--navy);
                color: var(--text-light);
                padding: 10px 0;
                font-size: 14px;
            }
            
            .top-bar a {
                color: var(--text-light);
                text-decoration: none;
                transition: color 0.3s;
            }
            
            .top-bar a:hover {
                color: var(--gold);
            }
            
            /* Navbar */
            .navbar-custom {
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 20px rgba(0,0,0,0.08);
                padding: 15px 0;
            }
            
            .navbar-custom .nav-link {
                color: var(--navy);
                font-weight: 500;
                padding: 8px 16px !important;
                transition: color 0.3s;
            }
            
            .navbar-custom .nav-link:hover {
                color: var(--gold);
            }
            
            .brand-logo {
                width: 40px;
                height: 40px;
                background: var(--gold);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-family: 'Playfair Display', serif;
                font-weight: 700;
                font-size: 18px;
            }
            
            /* Hero Section */
            .hero-section {
                background: linear-gradient(to right, rgba(15, 26, 46, 0.92), rgba(26, 42, 74, 0.75)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80');
                background-size: cover;
                background-position: center;
                min-height: 100vh;
                padding-top: 140px;
                padding-bottom: 80px;
            }
            
            .hero-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(201, 162, 39, 0.2);
                border: 1px solid rgba(201, 162, 39, 0.4);
                color: var(--gold);
                padding: 8px 20px;
                border-radius: 50px;
                font-size: 14px;
                font-weight: 500;
                width:fit-content;
            }
            
            .hero-title {
                font-size: 3.5rem;
                font-weight: 700;
                line-height: 1.2;
                color: #fff;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
                color: rgba(255,255,255,0.85);
                line-height: 1.8;
            }
            
            .feature-pill {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255,255,255,0.1);
                padding: 10px 18px;
                border-radius: 10px;
                color: rgba(255,255,255,0.9);
                font-size: 14px;
            }
            
            .feature-pill .dot {
                width: 8px;
                height: 8px;
                background: var(--gold);
                border-radius: 50%;
            }
            
            /* Glass Card */
            .glass-card {
                background: rgba(255,255,255,0.95);
                backdrop-filter: blur(20px);
                border-radius: 20px;
                box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
                border: 1px solid rgba(255,255,255,0.2);
            }
            
            .form-control-custom {
                padding: 14px 18px;
                border-radius: 10px;
                border: 1px solid var(--border-color);
                transition: all 0.3s;
            }
            
            .form-control-custom:focus {
                border-color: var(--gold);
                box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
            }
            
            /* Section Styles */
            .section-padding {
                padding: 60px 0;
            }
            
            .section-label {
                color: var(--gold);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 2px;
                font-size: 13px;
            }
            
            .section-title {
                font-size: 2.75rem;
                font-weight: 700;
                line-height: 1.3;
            }
            
            /* Stat Cards */
            .stat-item {
                text-align: center;
                padding: 30px 20px;
            }
            
            .stat-icon {
                width: 70px;
                height: 70px;
                background: rgba(201, 162, 39, 0.1);
                border-radius: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                color: var(--gold);
                font-size: 32px;
                transition: background 0.3s;
            }
            
            .stat-item:hover .stat-icon {
                background: rgba(201, 162, 39, 0.2);
            }
            
            .stat-value {
                font-family: 'Playfair Display', serif;
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--navy);
            }
            
            .stat-label {
                color: var(--text-muted);
                font-weight: 500;
            }
            
            /* Tatkal Section */
            .tatkal-section {
                background: var(--navy);
                position: relative;
                overflow: hidden;
            }
            
            .tatkal-section::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 400px;
                height: 400px;
                background: rgba(201, 162, 39, 0.05);
                border-radius: 50%;
                filter: blur(80px);
            }
            
            .tatkal-section::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 300px;
                height: 300px;
                background: rgba(201, 162, 39, 0.1);
                border-radius: 50%;
                filter: blur(60px);
            }
            
            .timeline-box {
                background: rgba(255,255,255,0.1);
                border-radius: 18px;
                padding: 25px;
            }
            
            .timeline-number {
                width: 70px;
                height: 70px;
                background: var(--gold);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Playfair Display', serif;
                font-size: 1.75rem;
                font-weight: 700;
                color: #fff;
            }
            
            .usecase-card {
                background: rgba(255,255,255,0.05);
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 15px;
                padding: 22px;
                transition: background 0.3s;
            }
            
            .usecase-card:hover {
                background: rgba(255,255,255,0.1);
            }
            
            .usecase-icon {
                width: 50px;
                height: 50px;
                background: rgba(201, 162, 39, 0.2);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--gold);
                font-size: 22px;
            }
            
            /* Service Cards */
            .service-card {
                background: #fff;
                border-radius: 20px;
                padding: 35px;
                box-shadow: 0 10px 40px -10px rgba(26, 42, 74, 0.12);
                border: 1px solid var(--border-color);
                transition: all 0.3s;
                height: 100%;
            }
            
            .service-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 25px 50px -12px rgba(26, 42, 74, 0.2);
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
            }
            
            .service-icon-gold {
                background: rgba(201, 162, 39, 0.1);
                color: var(--gold);
            }
            
            .service-icon-navy {
                background: rgba(26, 42, 74, 0.1);
                color: var(--navy);
            }
            
            .service-icon-red {
                background: rgba(220, 53, 69, 0.1);
                color: #dc3545;
            }
            
            .service-icon-gray {
                background: rgba(108, 117, 125, 0.1);
                color: var(--text-muted);
            }
            
            .timeline-badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                color: var(--navy);
                font-weight: 600;
            }
            
            .doc-badge {
                background: var(--bg-light);
                padding: 15px;
                border-radius: 12px;
            }
            
            /* Feature Grid */
            .feature-box {
                display: flex;
                gap: 18px;
                align-items: flex-start;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                background: rgba(201, 162, 39, 0.1);
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--gold);
                font-size: 22px;
                flex-shrink: 0;
            }
            
            .feature-card {
                background: #fff;
                padding: 28px;
                border-radius: 18px;
                box-shadow: 0 10px 40px -10px rgba(26, 42, 74, 0.1);
                border: 1px solid var(--border-color);
                transition: box-shadow 0.3s;
            }
            
            .feature-card:hover {
                box-shadow: 0 25px 50px -12px rgba(26, 42, 74, 0.18);
            }
            
            .cta-card {
                background: var(--navy);
                padding: 28px;
                border-radius: 18px;
            }
            
            /* Process Steps */
            .step-box {
                text-align: center;
                position: relative;
            }
            
            .step-icon-wrapper {
                width: 100px;
                height: 100px;
                background: rgba(201, 162, 39, 0.1);
                border-radius: 22px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                position: relative;
                transition: background 0.3s;
            }
            
            .step-box:hover .step-icon-wrapper {
                background: rgba(201, 162, 39, 0.2);
            }
            
            .step-icon-wrapper i {
                font-size: 42px;
                color: var(--gold);
            }
            
            .step-number {
                display: block;
            }
            
            .step-connector {
                position: absolute;
                top: 50px;
                left: 100%;
                width: 100%;
                height: 2px;
                background: linear-gradient(to right, var(--gold), rgba(201, 162, 39, 0.2));
            }
            
            /* Documents Section */
            .doc-common-card {
                background: #fff;
                border-radius: 20px;
                padding: 35px;
                box-shadow: 0 10px 40px -10px rgba(26, 42, 74, 0.1);
                border: 1px solid var(--border-color);
            }
            
            .doc-icon {
                width: 45px;
                height: 45px;
                background: var(--gold);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 20px;
            }
            
            .doc-item {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                padding: 18px;
                background: var(--bg-light);
                border-radius: 14px;
            }
            
            .doc-check {
                width: 26px;
                height: 26px;
                background: rgba(201, 162, 39, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--gold);
                flex-shrink: 0;
            }
            
            .specific-doc-card {
                padding: 22px;
                border-radius: 14px;
                border: 1px solid;
                background: #fff;
            }
            
            .specific-doc-gold {
                border-color: rgba(201, 162, 39, 0.2);
                background: rgba(201, 162, 39, 0.02);
            }
            
            .specific-doc-navy {
                border-color: rgba(26, 42, 74, 0.2);
                background: rgba(26, 42, 74, 0.02);
            }
            
            .specific-doc-red {
                border-color: rgba(220, 53, 69, 0.2);
                background: rgba(220, 53, 69, 0.02);
            }
            
            .specific-doc-gray {
                border-color: rgba(108, 117, 125, 0.2);
                background: rgba(108, 117, 125, 0.02);
            }
            
            /* Comparison Table */
            .comparison-table {
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 40px -10px rgba(26, 42, 74, 0.15);
                border: 1px solid var(--border-color);
            }
            
            .comparison-table thead {
                background: var(--navy);
                color: #fff;
            }
            
            .comparison-table thead th {
                padding: 22px 25px;
                font-weight: 600;
                border: none;
            }
            
            .comparison-table thead th.highlight {
                background: var(--gold);
            }
            
            .comparison-table tbody td {
                padding: 22px 25px;
                border-bottom: 1px solid var(--border-color);
                vertical-align: middle;
            }
            
            .comparison-table tbody tr:last-child td {
                border-bottom: none;
            }
            
            .comparison-table .highlight-col {
                background: rgba(201, 162, 39, 0.05);
            }
            
            .check-icon {
                color: var(--gold);
            }
            
            .x-icon {
                color: #dc3545;
            }
            
            /* FAQ Accordion */
            .faq-accordion .accordion-item {
                background: #fff;
                border: 1px solid var(--border-color);
                border-radius: 14px !important;
                margin-bottom: 15px;
                overflow: hidden;
            }
            
            .faq-accordion .accordion-button {
                padding: 22px 25px;
                font-weight: 600;
                color: var(--navy);
                background: #fff;
                box-shadow: none;
            }
            
            .faq-accordion .accordion-button:not(.collapsed) {
                color: var(--gold);
                background: #fff;
            }
            
            .faq-accordion .accordion-button:focus {
                box-shadow: none;
            }
            
            .faq-accordion .accordion-button::after {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a227'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            }
            
            .faq-accordion .accordion-body {
                padding: 0 25px 22px;
                color: var(--text-muted);
                line-height: 1.8;
                border: 1px solid #f90;
            }
            
            /* Contact Section */
            .contact-section {
                background: var(--navy);
                position: relative;
                overflow: hidden;
            }
            
            .contact-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
                opacity: 0.5;
            }
            
            .contact-info-card {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 25px;
                background: rgba(255,255,255,0.05);
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 16px;
            }
            
            .contact-icon {
                width: 60px;
                height: 60px;
                background: var(--gold);
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 24px;
                flex-shrink: 0;
            }
            
            .contact-cta {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 25px;
                border-radius: 14px;
                transition: all 0.3s;
                text-decoration: none;
            }
            
            .contact-cta-gold {
                background: var(--gold);
                color: #fff;
            }
            
            .contact-cta-gold:hover {
                background: var(--gold-light);
                color: #fff;
            }
            
            .contact-cta-outline {
                background: rgba(255,255,255,0.1);
                border: 1px solid rgba(255,255,255,0.2);
                color: #fff;
            }
            
            .contact-cta-outline:hover {
                background: rgba(255,255,255,0.15);
                color: #fff;
            }
            
            .whatsapp-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                padding: 20px;
                background: #25D366;
                border-radius: 14px;
                color: #fff;
                font-weight: 600;
                text-decoration: none;
                transition: background 0.3s;
            }
            
            .whatsapp-btn:hover {
                background: #22c55e;
                color: #fff;
            }
            
            .map-wrapper {
                border-radius: 20px;
                overflow: hidden;
                border: 4px solid rgba(255,255,255,0.1);
            }
            
            /* Footer */
            .footer {
                background: var(--navy-dark);
                color: rgba(255,255,255,0.7);
            }
            
            .footer a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: color 0.3s;
            }
            
            .footer a:hover {
                color: var(--gold);
            }
            
            .footer-title {
                font-family: 'Playfair Display', serif;
                font-size: 1.25rem;
                font-weight: 700;
                color: #fff;
                margin-bottom: 25px;
            }
            
            .social-icon {
                width: 42px;
                height: 42px;
                background: rgba(255,255,255,0.1);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                transition: background 0.3s;
            }
            
            .social-icon:hover {
                background: var(--gold);
            }
            
            .footer-bottom {
                border-top: 1px solid rgba(255,255,255,0.1);
                padding: 25px 0;
            }
            
            /* Responsive */
            @media (max-width: 991.98px) {
                .hero-title {
                    font-size: 2.5rem;
                }
                
                .section-title {
                    font-size: 2rem;
                }
                
                .hero-section {
                    padding-top: 120px;
                }
                
                .step-connector {
                    display: none;
                }
            }

            @media (min-width: 768px) {
                .mobileadjustmentdisplay{
                    display: none;
                }
            }
            
            @media (max-width: 767.98px) {

                .mobileadjustmentdisplay{
                    display: none !important;
                }

                .wc-section{
                    padding: 60px 10px;
                }

                .btn {
                    font-size: 18px;
                    width: 100%;
                }

                h6 {
                    font-size: 18px;
                }

                .sticky-top {
                    position: sticky;
                    top: 0;
                    z-index: 1030;
                }

                .hero-title {
                    font-size: 2rem;
                }
                
                .section-padding {
                    padding: 60px 0;
                }
                
                .top-bar {
                    display: none;
                }

                .section1 {
                    padding: 60px 20px;
                }

                .section {
                    padding: 60px 20px;
                }

                .section2{
                    padding: 60px 20px;
                }

                .docs-title {
                    font-size: 1.8rem;
                    font-weight: 600;
                    margin-bottom: 0.5em;
                }

                .fontsizes {
                    font-size: 18px;
                }

                .docs-animate{
                    margin-top: 40px;
                }

                .gapinclease{
                    gap: 1rem;
                }

                .docs-main-card{
                    padding: 60px 20px;
                }

                .docs-cta a{
                    padding: 10px 18px;
                    font-size: 14px;
                }

                .lc-title{
                    font-size: 1.8rem;
                }

                .accordion .accordion-item{
                    width: 370px;
                }

                .accordion .accordion-item{
                    font-size: 14px;
                }

                .social-container{
                    gap: 1rem !important;
                }

                p, button, a {
                    font-size: 17px;
                }

                .font-2{
                    font-size: 14px;
                }

                .section3 {
                    padding: 2em 1em 2em 1em;
                }

                .border-end{
                    border-right: none !important;
                }

                .wc-title{
                    font-size: 1.8rem;
                }

                    h1 {
                        font-size: 36px;
                    }

                    .docs-section{
                        padding: 60px 10px;
                    }
                    
                    .lc-section{
                        padding: 60px 10px;
                    }
            }

            .mobileadjustmentdisplay{
                display: block;
            }
            .row1 {
                --bs-gutter-x: 1.5rem;
                --bs-gutter-y: 0;
                display: flex;
                flex-wrap: wrap;
                margin-top: calc(-1 * var(--bs-gutter-y));
                margin-right: calc(-.5 * var(--bs-gutter-x));
                margin-left: calc(-.5 * var(--bs-gutter-x));
            }

            @media (min-width: 992px) {
                .col-lg-6 {
                    flex: 0 0 auto;
                    width: 50%;
                }
            }



            /* CUstom css */

            .read_more {
    color: #243d8f;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}
.read_more:hover {
    color: #f90;
    /* transform: scale(1.08); */
}

.custom-heading-line {
    width: 60px;
    height: 3px;
    background-color: #f90;
    border-radius: 10px;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
    font-size: 17px;
}
footer .img-fluid {
    width: 200px;
    margin-left: -20px;
}
.fontheaderadjustmnt {
font-size: 16px;
}

.nav-contact-btn {
background: linear-gradient(to right, #FF8C00, #FFB300);
color: #fff !important;
padding: 10px 22px;
border-radius: 30px;
font-weight: 600;
font-size: 15px;
border: none;
transition: all 0.35s ease;
box-shadow: 0 8px 20px rgba(195, 146, 46, 0.35);
}
.paddingheading {
padding: 4px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.bg-accent-color {
    background-color: #243d8f;
}

.wc-badge {
    display: inline-block;
    /* background: rgba(20, 19, 16, 0.15); */
    color: #1a2a4a;
    border: 2px solid #ffbf00;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
}
.section1 {
    padding: 4em 2em 6em 0em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.mobile {
        display: none !important;
    }
    .desktop {
        display: block !important;
    }

@media only screen and (max-width: 767px) {
   
    .mobile {
        display: block !important;
    }
    .desktop {
        display: none !important;
    }
    .logo-container {
max-width: 130px;
}
footer .d-flex.flex-column {
        text-align: left;
        justify-content: left;
        align-items: flex-start;
    }
        footer .link.d-flex.flex-row {
        text-align: left;
        justify-content: left;
        align-items: center;
    }
        #contact-us-section .ps-3 {
        padding-left: 0rem !important;
    }
        .section2 {
        padding: 60px 20px !important;
    }
        .accordion .accordion-item {
        width: 100%;
    }
}