﻿.nav-link.active {
    color: #1275B6;
    background-color: #f0f0f0;
    border-bottom: 2px solid #1275B6;
}
.custom-table, .custom-table th, .custom-table td {
    border: 1px solid black;
}

.blue-bordered-table, .blue-bordered-table th, .blue-bordered-table td {
    border: 1px solid #1275b6; /* Bootstrap primary blue color */
}

.blue-header {
    background-color: #1275b6 !important; /* Bootstrap primary blue color */
    color: white !important; /* White text color */
}
s
.blue-bordered-table { 
    border-collapse: collapse;
    width: 100%;
}

.custom-table {
    border-collapse: collapse; /* Collapse borders */
    width: 100%; /* Optional: Set table width */
}

.line-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.horizontal-line-reversed {
    position: relative;
    height: 20px;
    width: 90%;
    max-width: 1150px;
    background-color: #1275b6;
}

    .horizontal-line-reversed::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 25px;
        background-color: #1275b6;
        bottom: 20px; /* Extend upwards from the horizontal line's start */
        left: 0;
    }

    .horizontal-line-reversed::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 25px;
        background-color: #1275b6;
        bottom: -25px; /* Corrected to show only the bottom part at the last endpoint */
        right: 0;
    }

.horizontal-line {
    position: relative;
    height: 20px;
    width: 90%; /* Responsive width */
    max-width: 1150px; /* Max width to maintain design */
    background-color: #1275b6;
}

    .horizontal-line::before, .horizontal-line::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 25px;
        background-color: #1275b6;
    }

    .horizontal-line::before {
        bottom: -25px;
        left: 0;
    }

    .horizontal-line::after {
        top: -25px;
        right: 0;
    }

.vertical-line {
    position: relative;
    height: 800px;
    margin: 0 auto;
}

.dotted-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    border-left: 1px dotted black;
}

.point {
    width: 20px;
    height: 20px;
    background-color: #1275b6;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    transform: translate(0, -50%);
}

.outer-circle {
    width: 40px;
    height: 40px;
    border: 2px dotted #1275b6;
    border-radius: 50%;
    position: absolute;
    left: -20px;
   
    box-sizing: border-box;
}

.point-label {
    position: absolute;
    top: 20%;
    left: 30px;
    transform: translateY(-50%);
}

.navbar {
    border-radius: 20px;
    padding: 10px;
    margin-top: 20px;
    position: relative;
}

.navbar-toggler {
    margin-right: 10px;
}

.btn-save,
.btn-submit {
    background-color: white !important;
    color: #073B66 !important;
    border: none !important;
    border-radius: 20px !important;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

.logo-img {
    width: 100px;
    height: auto;
    margin-right: 100px;
}

:root {
    --primary-color: #073B66;
    --text-color: #ffffff;
}

.custom-list {
    list-style: disc;
    padding-left: 0;
    text-align: center;
}

    .custom-list li {
        display: inline-block;
        text-align: left;
    }

.custom-container,
.custom-container-bottom {
    background-color: #073B66;
    padding: 20px;
    border-radius:10px;
 
    width: 100%; /* Responsive width */
    max-width: 1300px; /* Max width for bottom container */
}

.navbar .navbar-brand img {
    border-radius: 10px;
    padding: 3px;
    margin-right: 15px;
    font-weight: bold;
    width:143px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight:bold;
}

.pdf-icons {
    margin-top: 10px;
}

.pdf-icon {
    width: 20px;
    height: auto;
    margin-right: 5px;
    padding:5px;
    border-radius:4px;
}

/*.pdf-text {
    font-size: 16px;
}*/

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-img {
        width: 75px; /* Smaller logo on tablets and below */
        margin-right: 20px;
    }

    .navbar-nav .nav-item {
        margin-right: 10px; /* Less space between nav items */
    }

    .btn-save, .btn-submit {
        font-size: 0.9rem; /* Smaller buttons */
    }

    .custom-list li {
        display: block; /* Stack list items vertically */
        margin-bottom: 5px;
    }

    .point-label, .outer-circle {
        left: 25px; /* Adjust positioning for smaller screens */
    }
}

@media (max-width: 480px) {
    .horizontal-line, .vertical-line {
        width: 100%; /* Adjust line width for mobile */
    }

    .navbar-toggler {
        margin-right: 5px;
    }

    .btn-save, .btn-submit {
        padding: 5px 10px; /* Adjust button size for small screens */
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .col-md-5 div {
        font-size: 120px; /* Smaller font size for "01" on small devices */
        text-align: center; /* Center align "01" on smaller screens */
    }
}


@media (min-width: 768px) {
    /* Adjustments for iPad and desktop views */

    .flex-md-row .text, .flex-md-row .number {
        flex-basis: 30%; /* Each takes up half the row */
    }

    .text, .number {
        padding: 0 15px; /* Add some padding for spacing */
    }

    .text {
        order: 1; /* Text comes first */
    }

    .number {
        order: 2; /* Number follows */
    }

    /* Optional: Adjust .horizontal-line styles if needed */
}

.number {
    font-size: 150px;
    color: #1275B6;
}

@media (max-width: 767px) {
    .number {
        font-size: 100px !important; /* Smaller font size specifically for mobile */
    }
    /* Additional mobile-specific styles can go here */
}

.big-number {
    font-size: 150px;
    color: #1275B6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .big-number {
        font-size: 100px !important; /* Smaller size for mobile */
        transform: translate(0, 0); /* Reset transform for mobile */
    }

    .align-number {
        justify-content: center !important; /* Align numbers to the start on mobile */
    }
}





.header-background {
    background-color: #073B66; /* Gray background */
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.reduce-margin-bottom {
    margin-bottom: -20px !important;
}

.reduce-margin-top {
    margin-top: -20px !important;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tabs {
    overflow: hidden;
    color:black;
    border-bottom: 2px solid grey; /* Highlight the bottom line */
}

.tab {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: background-color 0.3s;
    margin-right: 10px;
    border-bottom: 2px solid transparent; /* Invisible border, keeps layout consistent */
    background-color: white; /* Changed to white to remove grey background */
}

    .tab:hover, .active {
        color: #1275B6;
        border-bottom: 3px solid #1275B6; /* Blue bottom border for the active tab or on hover */
    }

.tabContent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    overflow:auto;
    
}

/* Optional: Add animations */
.tabContent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

.text-colors {
    color: #1275b6;
}
.container {
    max-width: 1300px
}

.flex-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.justify-content-type {
    margin-left: 27px;
}
.radio-spacing + label::before {
    content:'';
    display:inline-block;
    width:3px;
    /*margin-right:3px*/
}

.header-section {
    background-color: #1275b6;
    color: white;
    padding: 20px 30px 20px 50px;
    text-align: left;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.container-fluid {
    /*border: 1px solid #d3d3d3 !important;*/
    /*border-radius: 20px !important;*/
}

.textbox-large {
    height: 60px
}

.row-tight {
    margin-top: 1px;
    margin-bottom: 1px;
    padding: 38px;
    padding-top: 0;
}

.row-tightFirst {
    padding-top: 38px;
}

.contactNameField {
    display: flex !important;
}

.contact-name-field .firstName, .contact-name-field .lastName {
    width: 25%
}

.lastName {
    margin-left: 15px
}

.requiredField {
    color: #FF4B4B;
}

.contactNumber {
    width: 25%;
}

.othersfield {
    display: flex;
}

    .othersfield .others {
        width: 311px;
        height: 36px;
        margin-left: 5px;
    }

.textareafield .mainheading {
    font-size: 18px;
    padding: 8px;
}

.textareafield .subheading {
    font-size: 16px;
    font-style: normal;
    padding-bottom: 5px;
}

.textareafield textarea {
    resize: none;
    border-radius: 10px;
    border: 1px solid #BCBCBC;
    background: #FFF;
    height: 178px;
}

.submitbtn {
    border-radius: 39px;
    background: #1275B6;
    padding: 15px 40px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    margin-top: 20px 
   
}


    .submitbtn:hover {
        border-radius: 39px;
        background: #1275B6;
        padding: 15px 40px;
        color: #FFF;
        text-align: center;
        font-size: 24px;
    }

.note {
    color: #1275B6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
    padding: 30px 30px 0 30px;
}


/*input.srequired::-webkit-input-placeholder {
    color: red;
}*/