.navbar {
    /* background-color: #D3D9D4 !important; */
    background-color: #f1f1f1 !important;
    /* padding: 15px 0; */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    margin-right: 15px;
}

.navbar-brand span {
    font-weight: 700;
    /* font-size: 1.2rem; */
    color: #212A31;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: #212A31 !important;
    font-weight: 600;
    padding: 8px 16px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.navbar-nav .nav-link btn:hover {
    color: #124E66 !important;
    background-color: rgba(18, 78, 102, 0.1);
}

.navbar-nav .nav-link:hover {
    color: #124E66 !important;
    /* background-color: rgba(18, 78, 102, 0.1); */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #124E66;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-nav .btn-primary {
    background-color: #124E66 !important;
    border-color: #124E66 !important;
    color: #D3D9D4 !important;
    padding: 13px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .btn-primary:hover {
    background-color: #2E3944 !important;
    border-color: #2E3944 !important;
    transform: translateY(-2px);
    /* box-shadow: 0 4px 15px rgba(18, 78, 102, 0.2); */
    color: #fff !important;
}

.navbar.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link.btn-primary.login-btn:hover {
    transform: none !important;
}

/* Hero Section Styles */

.hero-section {
    position: relative;
    padding: 90px 0;
    background-color: #212A31;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoomEffect 20s infinite;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #D3D9D4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-button {
    animation: fadeInUp 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background-color: #124E66;
    color: #D3D9D4;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: #124E66;
    box-shadow: 0 0 0 0.25rem rgba(18, 78, 102, 0.25);
}

.section-padding {
    /* padding: 80px 0; */
}

.bg-light {
    background-color: #D3D9D4 !important;
}

.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border-color: #748D92;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(33, 42, 49, 0.1);
}

.card-body {
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-step i {
    font-size: 2.5rem;
    color: #124E66;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #124E66 !important;
    border-color: #124E66 !important;
}

.btn-primary:hover {
    color: #fff !important;
    background: #2E3944!important;
    border-color: #2E3944 !important;
}

.action-button {
    background-color: #124E66;
    color: #D3D9D4;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
}

.action-button:hover {
    background-color: #2E3944;
    color: #D3D9D4;
    transform: scale(1.05);
}

.list-group-item {
    border-color: #748D92;
    color: #212A31;
}

h2,
h3,
h4,
h5 {
    color: #2E3944;
}

.text-primary {
    color: #124E66 !important;
}

.bg-primary {
    background-color: #124E66 !important;
}

.footer {
    background-color: #212A31;
    color: #D3D9D4;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #D3D9D4;
}

.footer a {
    color: #D3D9D4;
    text-decoration: none;
}

.footer a:hover {
    color: #748D92;
}

.footer-bottom {
    background-color: #2E3944;
    color: #D3D9D4;
    padding: 20px 0;
}




.custom-shadow {
    box-shadow: 0 4px 15px rgba(33, 42, 49, 0.1);
}


.scheme-section {
    /* padding: 60px 0; */
    background-color: #fff;
}

.scheme-title {
    color: #212A31;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.scheme-title-underline {
    width: 80px;
    height: 3px;
    background: #124E66;
    margin: 0 auto;
}

.scheme-img-container {
    padding: 15px;
}

.scheme-img {
    max-width: 280px;
    height: auto;
    border-radius: 10px;
}

.scheme-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.scheme-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.scheme-info-item:last-child {
    margin-bottom: 0;
}

.scheme-info-item:hover {
    background: rgba(116, 141, 146, 0.1);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #124E66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.info-content {
    flex: 1;
}

.info-title {
    color: #212A31;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-text {
    color: #2E3944;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .scheme-img {
        max-width: 220px;
        margin-bottom: 20px;
    }
}





.modal-header {
    background-color: #124E66;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group-text i {
    color: #124E66;
    width: 20px;
}

.form-control,
.form-select {
    border-left: none;
}

.form-floating>.input-group .form-control {
    border-radius: 0 0.375rem 0.375rem 0;
}

.form-floating>.input-group .input-group-text {
    border-radius: 0.375rem 0 0 0.375rem;
}

.btn-primary {
    background-color: #124E66;
    border-color: #124E66;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2E3944!important;
    border-color: #2E3944;
    /* transform: translateY(-2px); */
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.form-floating label {
    margin-left: 40px;
}


.elig-section {
    padding: 70px 0;
    background-color: #d3d9d4;
}

.elig-header {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.elig-title-box {
    display: inline-block;
    position: relative;
    padding: 0 50px;
}

.elig-title {
    color: #212A31;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.elig-title-border {
    width: 100px;
    height: 4px;
    background: #124E66;
    margin: 0 auto;
    position: relative;
}

.elig-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.elig-card:hover {
    transform: translateY(-5px);
}

.elig-card-header {
    padding: 15px 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.elig-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #212A31;
    font-weight: 600;
}

.elig-icon {
    width: 45px;
    height: 45px;
    background: #124E66;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elig-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.elig-card-body {
    padding: 20px;
}

.elig-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elig-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #2E3944;
    line-height: 1.5;
}

.elig-list li:last-child {
    margin-bottom: 0;
}

.elig-list li::before {
    content: "•";
    color: #124E66;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .elig-section {
        padding: 50px 0;
    }

    .elig-title {
        font-size: 2rem;
    }

    .elig-card {
        margin-bottom: 20px;
    }
}

.segments-section {
    padding: 80px 0;
    background-color: #fff;
}

.seg-header {
    margin-bottom: 60px;
}

.seg-title {
    color: #212A31;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seg-title-line {
    width: 80px;
    height: 3px;
    background: #124E66;
    margin: 15px auto;
}

.seg-subtitle {
    color: #2E3944;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.seg-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.seg-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.seg-card-inner {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seg-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seg-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #124E66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.seg-icon-wrapper i {
    font-size: 26px;
    color: #ffffff;
}

.seg-card:hover .seg-icon-wrapper {
    transform: scale(1.1);
    background: #2E3944;
}

.seg-card-title {
    color: #212A31;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.seg-card-content p {
    color: #2E3944;
    margin-bottom: 0;
    line-height: 1.6;
}

.seg-hover-content {
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #124e66;
    color: #fff;
    padding: 20px;
    border-radius: 0 0 15px 15px;
}

.seg-card-inner:hover .seg-hover-content {
    opacity: 1;
    top: 58%;
}

.seg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seg-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .seg-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .seg-title {
        font-size: 2rem;
    }

    .seg-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 425px) {
    .timelines-steps {
        flex-direction: column !important;
        min-width: 0px !important;
    }

    .timelines-progress {
        background: transparent !important;
    }

    .timelines-steps::before {
        background: transparent !important;
    }
}

.fs-13 {
    font-size: 13px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fw-500 {
    font-weight: 500
}

.fw-600 {
    font-weight: 600
}




.action-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #124E66, #2E3944);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: #2E3944;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(18, 78, 102, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #124E66;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.action-card:hover .icon-wrapper::after {
    opacity: 1;
    transform: scale(1);
}

.action-card:hover .icon-wrapper {
    background: #124E66;
    transform: scale(1.1);
}

.action-icon {
    font-size: 1.4rem;
    color: #124E66;
    transition: all 0.4s ease;
}

.action-card:hover .action-icon {
    color: white;
    transform: scale(1.1);
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover .action-title {
    color: #124E66;
}

.action-description {
    font-size: 0.85rem;
    color: #748D92;
    text-align: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.action-card:hover .action-description {
    opacity: 1;
    transform: translateY(0);
}

.action-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateX(20px);
    opacity: 0;
}

.action-card:hover .action-indicator {
    transform: translateX(0);
    opacity: 1;
    background: #124E66;
}

.action-indicator i {
    font-size: 0.8rem;
    color: white;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}


.region-card {
    position: relative;
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 280px;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #124E66, #2E3944);
    opacity: 0;
    transition: all 0.4s ease;
}

.region-card:hover::before {
    opacity: 1;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 78, 102, 0.15);
    transition: all 0.8s ease;
}

.region-card:hover .card-body {
    background-color: #124E66 !important;
}

.navbar-nav .nav-link.login-btn::after {
    display: none;
}


.card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.region-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.region-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #124E66;
    animation: pulse 2s infinite;
}

.region-card:hover .region-icon {
    background: white;
    transform: scale(1.1);
}

.region-icon i {
    color: #124E66;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.region-card h5 {
    color: #2E3944;
    margin: 0;
    font-weight: 600;
    transition: all 0.4s ease;
}

.region-card:hover h5 {
    color: white;
}

.district-count {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #748D92;
    transition: all 0.4s ease;
}

.region-card:hover .district-count {
    color: rgba(255, 255, 255, 0.8);
}

.districts-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.0rem;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-top: 3px solid #124E66;
}

.region-card:hover .districts-info {
    transform: translateY(0);
}

.districts-info h6 {
    color: #124E66;
    margin-bottom: 1rem;
    font-weight: 600;
}

.districts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    font-size: 0.7rem;
    color: #2E3944;
}

.districts-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.districts-list li i {
    color: #124E66;
    margin-right: 0.5rem;
    font-size: 0.7rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.region-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    transition: all 0.4s ease;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #124E66;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #748D92;
}

.region-card:hover .stat-value,
.region-card:hover .stat-label {
    color: white;
}

.timelines-wrapper {
    padding: 40px 0;
    overflow-x: auto;
}

.timelines-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-width: 900px;
    margin: 0 40px;
}

.timelines-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}

.timelines-progress {
    position: absolute;
    top: 35px;
    left: 50px;
    width: 0;
    height: 3px;
    background: #124E66;
    transition: width 0.5s ease;
    z-index: 2;
}

.timelines-step {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 120px;
}

.timelines-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    color: #748D92;
}

.timelines-step.active .timelines-step-icon {
    background: #124E66;
    color: white;
    box-shadow: 0 0 0 3px rgba(18, 78, 102, 0.2);
}

.timelines-step.completed .timelines-step-icon {
    background: #124E66;
    color: white;
}

.timelines-step i {
    font-size: 1.5rem;
}

.timelines-step h5 {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #748D92;
    transition: color 0.3s ease;
}

.timelines-step.active h5,
.timelines-step.completed h5 {
    color: #124E66;
}

.timelines-step:hover .timelines-step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(18, 78, 102, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 78, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(18, 78, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(18, 78, 102, 0);
    }
}

.timelines-step.active .timelines-step-icon {
    animation: pulse 2s infinite;
}

.section-titles {
    position: relative !important;
    margin-bottom: 3rem !important;
    padding-bottom: 1rem !important;
    text-align: center !important;
    color: #2E3944 !important;
}

.section-titles::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: #124E66 !important;
}

/* Custom scrollbar for timelines wrapper */
.timelines-wrapper::-webkit-scrollbar {
    height: 8px;
}

.timelines-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.timelines-wrapper::-webkit-scrollbar-thumb {
    background: #124E66;
    border-radius: 4px;
}

.timelines-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0d3b4f;
}

/* @media (max-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (max-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (max-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
} */