html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@keyframes loading {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}


    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

    html {
        position: relative;
        min-height: 100%;
    }

    body {
        font-family: "Poppins", sans-serif !important;
        margin-bottom: 60px;
        background-color: aliceblue !important;
        overflow-x: hidden;
    }

    .main {
        width: 100%;
    }

    main {
        width: 100%;
        max-width: 2550px;
    }

    section {
        max-width: 2500px;
        margin: auto;
    }

    header {
        position: fixed;
        top: 5%; /* keep same vertical spacing */
        left: 50%; /* center it horizontally */
        transform: translateX(-50%); /* correct centering */
        width: 80%;
        z-index: 1000;
        background: #ffffff;
        border-radius: 15px;
        transition: width 0.1s linear;
        box-shadow: 0px 0px 11px 2px #b9b9b9;
        max-width: 2359px;
    }

    #header.scrolled {
        box-shadow: 0px 0px 11px 2px #b9b9b9;
    }

    #header .container {
        margin: 0px;
        display: flex;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
    }

    .PRMLOGO {
        width: 230px;
    }

    .nav-link {
        font-size: 16px;
        color: #000 !important;
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-item {
        display: flex;
        align-content: center;
        flex-wrap: wrap;
    }

    .nav-item > .btn {
        border-radius: 18px;
        background: #0294dd;
        color: #fff;
        padding: 4px 11px;
        font-size: 24px;
    }
    /* Transition overlay */


    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px; /* diameter = 2 * radius */
        height: 10px;
        border-radius: 50%;
        background: #3a61c9; /* cursor color */
        pointer-events: none; /* don’t block clicks */
        transform: translate(-50%, -50%);
        z-index: 9999;
    }
    /* Footer Base Styles */
    .footer__area-2 {
        background: #fff;
        padding-top: 130px;
        padding-bottom: 40px;
        font-family: 'Poppins', sans-serif !important;
        color: #000;
        position: relative;
        overflow: hidden;
    }
    /* Orange Outer Ring Shape */
    .footer__area-2::before {
        content: '';
        position: absolute;
        top: -150px; /* push up so only a part shows */
        right: -150px; /* push right so only a part shows */
        width: 500px; /* ring size */
        height: 500px;
        border: 80px solid #b5dff5;
        border-radius: 50%; /* perfect circle */
        background: transparent;
        z-index: 0;
    }
    /* Content stays above shape */
    .footer__area-2 .container {
        position: relative;
        z-index: 1;
        display: block;
    }
    /* Top Section */
    .footer__top-2 h2.sec-title-3 {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .footer__sub-title {
        font-size: 16px;
        color: #1d1d1d;
        max-width: 600px;
        display: contents;
    }
    /* Middle Section */
    .footer__middle-2 {
        margin: 40px 0;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding: 30px 0;
    }

    .footer__location-2 {
        display: flex;
        gap: 40px;
    }

    .footer__location-2 .location h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .footer__location-2 .location p {
        font-size: 14px;
        color: #1d1d1d;
        line-height: 1.6;
    }
    /* Subscribe Section */
    .footer__subscribe-2 form {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #000;
        max-width: 320px;
        margin-left: auto;
    }

    .footer__subscribe-2 input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 15px;
        padding: 8px 0;
    }

    .footer__subscribe-2 button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .footer__subscribe-2 img {
        width: 18px;
    }
    /* Bottom Section */
    .footer__btm-2 {
        margin-top: 30px;
    }

    .footer__copyright-2 p {
        font-size: 14px;
        color: #1d1d1d;
    }

    .footer__copyright-2 a {
        color: #1d1d1d;
        text-decoration: none;
    }

    .footer__copyright-2 a:hover {
        color: #0093dd !important;
    }
    /* Footer Navigation */
    .footer__nav ul {
        display: flex;
        justify-content: flex-end;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer__nav ul li a {
        font-size: 14px;
        color: #000;
        text-decoration: none;
        font-weight: 500;
        text-transform: uppercase;
    }

    .footer__nav ul li a:hover {
        color: #4d82ff;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .footer__location-2 {
        flex-direction: column;
        gap: 20px;
    }

    .footer__subscribe-2 form {
        margin-left: 0;
    }

    .footer__nav ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }
}

.loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    transition: width 0s 1.4s ease;
    overflow: hidden;
}

.loader__icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s ease;
}

.loader__tile {
    position: absolute;
    left: 0;
    width: 0;
    height: 20%;
    background-color: #007AE5; /* cyan */
    transition: width .7s ease;
}

    .loader__tile:nth-child(2) {
        top: 0;
        transition-delay: 0s;
    }

    .loader__tile:nth-child(3) {
        top: 20%;
        transition-delay: 0.2s;
    }

    .loader__tile:nth-child(4) {
        top: 40%;
        transition-delay: 0.4s;
    }

    .loader__tile:nth-child(5) {
        top: 60%;
        transition-delay: 0.6s;
    }

    .loader__tile:nth-child(6) {
        top: 80%;
        transition-delay: 0.8s;
    }

.loader--active {
    width: 100%;
    transition-delay: 0s;
}

    .loader--active .loader__icon {
        opacity: 1;
        transition: opacity .5s 1.4s ease;
    }

    .loader--active .loader__tile {
        width: 100%;
    }
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
main {
    margin: auto;
}
@media only screen and (min-width:300px) and (max-width: 700px) {
    .footer__top-2 h2.sec-title-3 {
        font-size: 24px;
        margin-bottom: 3px;
       
    }
    .footer__area-2 .container{
        text-align:left;

    }

    .footer__middle-2 {
        margin: 0;
        padding: 10px 0px;
    }

    .footer__location-2 {
        gap: 12px;
        flex-direction: column;
    }

        .footer__location-2 .location h3,
        .footer__location-2 .location p,
        .footer__copyright-2 p,
        .footer__sub-title {
            font-size: 12px;
        }

    .footer__area-2::before {
        content: '';
        position: absolute;
        top: -113px;
        right: -133px;
        width: 390px;
        height: 383px;
        border: 85px solid #b5dff5;
        border-radius: 50%;
        background: transparent;
        z-index: 0;
    }

    .footer__area-2 {
        padding-top: 30px;
    }

    .PRMLOGO {
        width: 180px;
    }

    .nav-link {
        font-size: 14px !important;
      
    }

    .navbar-nav {
        gap: 2px;
    }

    #mainNav > ul > li > a {
        width: 100%;
        padding: 10px;
        border: 1px solid #07388e;
        border-radius: 7px;
    }
}
@media only screen and (min-width:700px) and (max-width:1000px) {
    .footer__area-2 .container {
        max-width: 100%;
        padding: 0px 20px;
    }
    .footer__location-2 {
        display: flex;
        flex-direction: row;
    }
    .footer__location-2 .location{
        width:33%;
    }
    body > main > footer > div > div.footer__middle-2 > div > div{
        width:100%;
    }
}
@media only screen and (min-width:900px) and (max-width:1200px) {
    #mainNav > ul > li > a {
        font-size: 14px;
        padding: 2px;
    }
    .navbar-nav {
        gap: 4px;
    }
    .scrolled .nav-item .nav-link{
        font-size:12px;
    }
}


