/*
*******************************************
*******************************************

** - Default CSS
** - Navbar Area CSS
** - Side Navbar Area CSS
** - Service Dropdown Area CSS
** - Sidebar Service Dropdown Area CSS
** - Employee Attandance Icon Area CSS
** - Whatsapp Shortcut Area CSS
** - Chartbot Area CSS
** - Footer Area CSS
** - Main Content Area CSS
** - Video Header Area CSS
** - Benefits Area CSS
** - Homepage Service Area CSS
** - FAQ Area CSS
** - Partner Section Area CSS
** - State of Affairs Area CSS
** - Lets Talk Area CSS
** - About Header Area CSS
** - About US Area CSS
** - Stats Section Area CSS
** - Our Skill Area CSS
** - Client Testimonials Area CSS
** - Service Header Area CSS
** - Service Content Area CSS
** - News & Insights Area CSS
** - Careers Header Area CSS
** - Team Build Area CSS
** - Current opening Area CSS
** - Life at Hisho Area CSS
** - Application Area CSS
** - Contact Page Area CSS
** - Login Page CSS
** - Sign Up Area CSS
** - Forgot Password Page Area CSS
** - New Password Page Area CSS
** - Password Changed Page Area CSS
** - Reset Code Page Area CSS
** - User OTP Page Area CSS
** - Country Header Area CSS
** - Country Service Time Line Area CSS
** - Legal Page Area CSS
** - Accessibility Page Area CSS
** - Help Page Area CSS
** - Privacy Page Area CSS

*******************************************
*******************************************
*/

/*================================================
Default CSS
=================================================*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

:focus {
    outline: 0 !important;
}

/*================================================
Navbar Area CSS
=================================================*/

#Navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.website-name img {
    width: 35px;
    height: 35px;
}

.logo-style {
    color: rgb(3, 3, 167);
    font-size: 30px;
    padding-top: 10px;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 30px;
}

.login-btn button {
    border: none;
    outline: none;
    text-decoration: none;
    background-color: rgb(247, 37, 124);
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    position: relative;
    padding: 0 10px;
}

.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(247, 37, 124), aliceblue);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -2px;
    transition: 0.3s;
    border-radius: 10px;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}

.navbar-menu ul a li {
    list-style: none;
}

.contact-btn button {
    background-color: rgb(24, 231, 231);
    text-shadow: 1px 1px 2px black;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 5px;
}

.navbar-menu-toggle {
    display: none;
    font-size: 28px;
}

@media screen and (max-width: 1260px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }
}

@media screen and (max-width: 468px) {
    .website-name img {
        width: 25px;
        height: 25px;
    }

    .logo-style {
        font-size: 22px;
    }
}

/*================================================
Side Navbar Area CSS
=================================================*/

.side-navbar {
    position: absolute;
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    padding: 20px;
    transition: 2s;
    border-radius: 5px;
    z-index: 9999;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.side-navbar img {
    width: 100%;
    height: 100px;
}

.side-navbar-link {
    margin-bottom: 30px;
    margin-top: 30px;
}

.side-navbar-links p {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;
}

.side-navbar-links p a:hover {
    color: #fff;
}

.side-navbar-links p:hover {
    background: linear-gradient(135deg, rgb(247, 37, 124), aliceblue);
}

.side-navbar-links a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.cross-symbol {
    color: red;
    text-align: right;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-links a button {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: rgb(247, 37, 124);
    color: #fff;
    border-radius: 10px;
}

/*================================================
Service Dropdown Area CSS
=================================================*/

.service-dropdown {
    display: none;
    position: absolute;
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: fadeIn 0.3s ease forwards;
    min-width: 160px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.service-item {
    cursor: pointer;
    font-weight: 500;
    color: #000;
    padding-top: 15px;
    text-decoration: none;
}

.service-item:hover {
    border-radius: 8px;
    border: 2px solid gainsboro;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-item .flag-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #eee;
    transition: transform 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-item span {
    margin-top: -10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*================================================
Sidebar Service Dropdown Area CSS
=================================================*/

.top-service-dropdown {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: none;
    z-index: 10000;
    animation: fadeIn 0.4s ease-in-out;
    background-color: rgb(247, 242, 243);
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*================================================
Employee Attandance Icon Area CSS
=================================================*/

.employee-access {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.employee-access a {
    text-decoration: none;
    color: black;
}

.employee-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgb(247, 37, 124);
    padding: 3px;
    background-color: white;
    transition: transform 0.3s ease;
    margin-top: -5px;
}

.employee-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(247, 37, 124, 0.5);
}

/*================================================
Whatsapp Shortcut Area CSS
=================================================*/

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    animation: zoomPulse 2s infinite;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0px 0px 25px rgb(3, 247, 3));
    border-radius: 50%;
    object-fit: contain;
}

@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media screen and (max-width: 468px) {
    .whatsapp-icon img {
        width: 30px;
        height: 30px;
    }
}

/*================================================
Chartbot Area CSS
=================================================*/

.chat-toggle {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 999;
    cursor: pointer;
    animation: floatRobo 3s ease-in-out infinite;
}

.chat-toggle img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0px 0px 25px orange);
    object-fit: contain;
}

@keyframes floatRobo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    max-height: 90vh;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1000;
    animation: fadeInUp 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background-color: orange;
    text-align: center;
    padding: 20px 10px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.chat-header h5 {
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.chat-greeting {
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 2px #000;
    color: #fff;
}

.chat-subtext {
    font-size: 14px;
    color: #fff;
    margin: 5px 0 0;
    line-height: 1.4;
}

.close-chart {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
}

.close-chart i {
    color: #fff;
    font-size: 20px;
    text-shadow: 1px 1px 2px #000;
}

.chat-body {
    height: 400px;
    overflow-y: scroll;
    background-color: rgb(247, 233, 209);
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chat-body::-webkit-scrollbar {
    display: none;
}

.chat-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
    animation: fadeInUp 0.3s ease;
}

.chat-message.bot {
    background-color: #e9ecef;
    align-self: flex-start;
}

.chat-message.user {
    background-color: rgb(247, 209, 138);
    color: #000;
    align-self: flex-end;
}

.chat-message.bot button {
    border: none;
    background-color: #ffa500;
    color: #fff;
    margin-top: 5px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-message.bot button:hover {
    background-color: #e68a00;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #eee;
    background: #fff;
}

#chat-input {
    flex-grow: 1;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 12px;
    font-size: 14px;
}

#chat-input::placeholder {
    color: orange;
}

.chart-send-btn {
    background-color: orange;
    border: none;
    padding: 6px 14px;
    margin-left: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.chart-send-btn i {
    color: #fff;
    font-size: 20px;
}

.chat-message.bot input[type="text"],
.chat-message.bot input[type="email"],
.chat-message.bot input[type="tel"] {
    background: none;
    border: none;
    outline: none;
    border-bottom: 2px solid #000;
    padding: 6px 10px;
    margin: 8px 0;
    width: 90%;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.chat-message.bot input[type="text"]:focus,
.chat-message.bot input[type="email"]:focus,
.chat-message.bot input[type="tel"]:focus {
    border-bottom: 2px solid orange;
}

.chat-message.bot button {
    margin-top: 10px;
}

@media (max-width: 576px) {
    .chatbox {
        width: 90%;
        right: 5%;
        bottom: 70px;
    }

    .company-logo {
        width: 50px;
        height: 50px;
    }

    .chat-greeting {
        font-size: 14px;
    }

    .chat-toggle img {
        width: 80px;
        height: 80px;
        filter: drop-shadow(0px 0px 0px orange);
    }
}

/*================================================
Footer Area CSS
=================================================*/

footer {
    background-image: url(../img/header/footer-bg-img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

.footer-box {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

footer h6 {
    color: #fff;
}

footer .list-unstyled li a {
    color: rgb(196, 191, 191);
}

.list-unstyled li a:hover {
    color: #fff;
}

footer p {
    color: #fff;
}

.footer-newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.footer-newsletter button {
    background-color: #f7257c;
    border: none;
    padding: 8px 16px;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.footer-newsletter button:hover {
    background-color: #e01265;
}

.list-unstyled li {
    padding-bottom: 10px;
}

.footer-line {
    background-color: gray;
    width: 100%;
    height: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    font-size: 13px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social-links a {
    text-decoration: none;
}

.footer-social-links i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 20px;
    border-radius: 50%;
}

.county-contact p {
    color: rgb(182, 180, 180);
}

.footer-social-links #inkedin {
    padding: 10px 13px;
    color: #fff;
    background-color: rgb(0, 106, 255);
}

.footer-social-links #facebook {
    padding: 10px 15px;
    color: #fff;
    background-color: blue;
}

.footer-social-links #twitter {
    padding: 10px;
    color: #fff;
    background-color: black;
}

.footer-social-links #instagram {
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
}

.footer-social-links #youtube {
    padding: 10px;
    color: red;
    background-color: #fff;
}

/*================================================
Main Content Area CSS
=================================================*/

.main-content {
    background-image: url(../img/home/world-map-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/*================================================
Video Header Area CSS
=================================================*/

header {
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
}

video {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

header .home-header-title {
    font-size: 45px;
    color: #0e3742;
    position: relative;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent #0e3742);
    outline: none;
    animation: animate 4s linear infinite;
    z-index: -1;
}

@keyframes animate {

    0%,
    18%,
    20%,
    50.1%,
    60%,
    65.1%,
    80%,
    90.1%,
    92% {
        color: #0e3742;
        box-shadow: none;
    }

    18.1%,
    20.1%,
    30%,
    50%,
    60.1%,
    65%,
    80.1%,
    90%,
    92.1%,
    100% {
        color: #fff;
        text-shadow: 0 0 2px rgb(241, 174, 49),
            0 0 2px rgb(240, 178, 63),
            0 0 2px rgb(231, 174, 67),
            0 0 5px rgb(231, 169, 53);
    }
}

header .flag-container a img {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    transition: transform 0.3s ease-in-out;
}

header .flag-container a img:hover {
    transform: scale(1.2);
}

.video-header h5 {
    color: #fff;
    padding-top: 10px;
    text-shadow: 1px 1px 2px #000;
}

.video-header button {
    margin-top: 50px;
    border: 2px solid orange;
    padding: 8px 30px;
    border-radius: 10px;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.video-header button:hover {
    border: 2px solid #fff;
    color: orange;
}

@media screen and (max-width: 1260px) {
    .video-header .container h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    header {
        height: auto;
    }

    video {
        height: 100%;
    }

    .video-header button {
        margin-top: 20px;
    }
}

/*================================================
Benefits Area CSS
=================================================*/

.benefits {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.benefits h2 {
    font-weight: bold;
    color: #f7257c;
}

.benefits h4 {
    font-weight: bold;
}

.text-box {
    padding: 10px 50px 10px 0;
}

.text-box h5 {
    color: #000;
    font-weight: bold;
}

.text-box h5 i {
    color: #f7257c;
    text-shadow: 1px 1px 2px black;
    font-weight: bold;
}

/*================================================
Homepage Service Area CSS
=================================================*/

.card .bi {
    transition: transform 0.3s ease;
}

.card:hover .bi {
    transform: scale(1.2);
}

.ms-n3 {
    margin-left: -1rem !important;
}

/*===============================================
FAQ Area CSS
=================================================*/

.aboutus-box {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.aboutus-img-box {
    position: relative;
    width: 100%;
    height: 500px;
}

.faqimg1 {
    background: url(../img/home/homefaqimg2.png) no-repeat center center/cover;
    width: 80%;
    height: 80%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.faqimg2 {
    background: url(../img/home/homefaqimg.jpg) no-repeat center center/cover;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.home-faq-content h3 span {
    color: #f7257c;
    font-weight: 900;
}

.faq-section {
    padding: 60px 0;
}

.faq-title {
    color: #f7257c;
    font-weight: 700;
}

.accordion-button {
    color: #f83e8c !important;
    background-color: transparent !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 900;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(38%) sepia(70%) saturate(631%) hue-rotate(316deg) brightness(101%) contrast(97%);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: none !important;
    border-top-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    background-color: transparent !important;
}

.accordion-body {
    background-color: transparent;
    padding: 15px;
    border-radius: 5px;
}

/*================================================
Partner Section Area CSS
=================================================*/

.partners-section {
    padding: 50px 0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #e61375;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.slider-track .partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo img:hover {
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 400px) {
    .partner-program p {
        text-align: justify;
    }

    .partner-program a {
        padding: 5px 10px;
    }
}

/*================================================
State of Affairs Area CSS
=================================================*/

.Affairs-content h6 {
    color: rgb(247, 37, 124);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.Affairs-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
}

.cta-btn {
    background-color: rgb(247, 37, 124);
    color: white;
    border: none;
    width: 150px;
    height: 50px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.cta-btn i {
    font-size: 25px;
}

.Affairs-grid-box {
    background-color: #F4F6F8;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: grid;
    place-items: center;
}

.Affairs-grid-box h3 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(247, 37, 124);
}

.Affairs-grid-box p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.Affairs-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 250px;
}

.stats-grid .col-6 {
    padding: 12px;
}

@media (max-width: 767px) {
    .stats-grid .col-6 {
        width: 100%;
    }
}

/*================================================
Lets Talk Area CSS
=================================================*/

.lets-talk-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: transparent;
}

.click-btn button {
    border: 2px solid #fff;
    color: #fff;
    outline: none;
    width: 200px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .lets-talk-box {
        display: block;
    }
}

/*================================================
About Header Area CSS
=================================================*/

.about-header {
    position: relative;
    width: 100%;
    height: 40vh;
    display: grid;
    place-items: center;
    background: url(../img/about/about-bg.jpg) no-repeat center center/cover;
    z-index: 2;
    overflow: hidden;
}

.about-header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-header * {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-weight: 900;
}

@media screen and (max-width: 1260px) {
    .about-header h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 400px) {
    .about-header {
        height: auto;
    }
}

/*================================================
About US Area CSS
=================================================*/

.aboutus-img1 {
    background: url(../img/about/aboutus-img_2.jpg) no-repeat center center/cover;
    width: 80%;
    height: 80%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.aboutus-img2 {
    background: url(../img/about/aboutus-img_1.png) no-repeat center center/cover;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discover-more button {
    border: none;
    outline: none;
    text-decoration: none;
    background-color: rgb(247, 37, 124);
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
}

.aboutus-title {
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.aboutus-title .line {
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(-45deg,
            #f7257c,
            #f7257c 10px,
            transparent 10px,
            transparent 20px);
    border-radius: 5px;
}

.aboutus-title h5 {
    display: grid;
    place-items: center;
    width: 150px;
    height: 30px;
    background-color: transparent;
}

.aboutus-content h3 {
    font-weight: bold;
    margin: 20px 0;
}

.aboutus-content h5 {
    margin-top: 15px;
    color: #222;
    font-weight: 500;
}

.aboutus-content i {
    color: #f7257c;
}

@media screen and (max-width: 1260px) {
    .about-content h5 {
        width: 100%;
        text-align: justify;
    }

    .about-img {
        display: none;
    }
}

@media (max-width: 992px) {
    .aboutus-img-box {
        height: 400px;
    }

    .aboutus-img1 {
        width: 90%;
        height: 80%;
    }

    .aboutus-img2 {
        width: 55%;
        height: 55%;
        bottom: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .about-us {
        padding: 0 10px;
    }

    .aboutus-img-box {
        height: 350px;
    }

    .aboutus-img1 {
        width: 95%;
        height: 75%;
    }

    .aboutus-img2 {
        width: 50%;
        height: 50%;
        bottom: 10px;
        right: 10px;
    }

    .aboutus-content h3 {
        font-size: 1.5rem;
    }

    .aboutus-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .aboutus-img-box {
        height: 300px;
    }

    .aboutus-img1 {
        width: 100%;
        height: 70%;
    }

    .aboutus-img2 {
        width: 50%;
        height: 45%;
        bottom: 5px;
        right: 5px;
    }

    .aboutus-content h3 {
        font-size: 1.3rem;
    }

    .aboutus-content h5 {
        font-size: 0.95rem;
    }
}

/*================================================
Stats Section Area CSS
=================================================*/

.stats-section {
    position: relative;
    padding: 60px 0;
    color: white;
}

.stats-box {
    border: 2px solid rgb(247, 37, 124);
    padding: 30px 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.icon-box {
    background-color: rgb(247, 37, 124);
    color: white;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.stats-box p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 767px) {
    .stats-box {
        margin-bottom: 30px;
    }
}

/*================================================
Our Skill Area CSS
=================================================*/

.our-skills {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.our-skills .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.our-skills-content {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.our-skill-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-image: url(../img/about/ourskillsbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
    border: 3px solid #fff;
}

.our-skills:has(.our-skills-content.in-view) .our-skills-content {
    opacity: 1;
    transform: translateX(0);
}

.our-skills:has(.our-skill-img.in-view) .our-skill-img {
    opacity: 1;
    transform: translateX(0);
}

.progress {
    background-color: #e0e0e0;
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    background-color: #f7257c;
    height: 100%;
    border-radius: 50px;
    animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
    0% {
        width: 0;
    }
}

.line {
    width: 40px;
    height: 2px;
    background-color: #f7257c;
}

@media (max-width: 768px) {
    .our-skills-content {
        padding: 20px;
        text-align: center;
    }

    .our-skill-img {
        min-height: 250px;
    }
}

/*================================================
Client Testimonials Area CSS
=================================================*/

.client-testimonial {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.zigzag-line-top {
    height: 20px;
    background-image: linear-gradient(135deg, rgb(247, 37, 124) 25%, transparent 25%),
        linear-gradient(225deg, rgb(247, 37, 124) 25%, transparent 25%);
    background-size: 20px 20px;
    background-repeat: repeat-x;
    background-position: left top, left bottom;
}

.zigzag-line-bottom {
    height: 20px;
    background-image: linear-gradient(45deg, rgb(247, 37, 124) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(247, 37, 124) 25%, transparent 25%);
    background-size: 20px 20px;
    background-repeat: repeat-x;
    background-position: left top, left bottom;
}

.client-testimonial h1 {
    display: grid;
    place-items: center;
    font-size: 36px;
    color: gray;
    font-family: 'Montserrat', sans-serif;
}

.client-testimonial p {
    display: grid;
    place-items: center;
    text-align: justify;
}

.review-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 10px;
}

.wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.arrow-btn {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    gap: 20px;
}

.arrow-btn i {
    text-align: center;
    cursor: pointer;
    font-size: 1.50rem;
    font-weight: 900;
    transform: translateY(-50%);
    text-shadow: 1px 1px 2px #000;
}

.arrow-btn #left {
    color: #f7257c;
}

.arrow-btn #right {
    color: #fff;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel .dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel .dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    height: auto;
    list-style: none;
    background: transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid gainsboro;
}

.client-review-box {
    display: grid;
    place-items: center;
    height: 180px;
    background-color: #fff;
    padding: 20px;
    overflow: scroll;
}

.card .img {
    background: #f7257c;
    width: 105px;
    height: 105px;
    border-radius: 50%;
}

.card .img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}

.reviewer-client-details-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reviewer-client-details-box h5 {
    color: #f7257c;
    font-family: "Pacifico", cursive;
}

.review-stars i {
    color: #f7257c;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }

    .carousel .card {
        width: 100%;
        flex: none;
    }

    .client-testimonial h1 {
        font-size: 25px;
    }
}

/*================================================
Service Header Area CSS
=================================================*/

.service-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.service-hero h1 {
    text-shadow: 1px 1px 2px #000;
}

.service-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.service-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: service-hero-zoom-effect 20s infinite alternate ease-in-out;
    transform-origin: center;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

@keyframes service-hero-zoom-effect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/*================================================
Service Content Area CSS
=================================================*/

.service-content {
    width: 100%;
    min-height: 100vh;
}

.services-sidebar {
    border-right: 1px solid #ccc;
    height: auto;
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
}

.content-area {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
}

.content-area p {
    text-align: justify;
}

#incorporation-services h6 {
    color: #002b40;
    font-weight: 700;
}

.services-sidebar h4 {
    color: #f7257c;
}

#servicesMenu a {
    display: block;
    justify-content: center;
    color: #002b40;
    padding: 10px 10px 5px 10px;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

#servicesMenu a h5 {
    font-size: 15px;
}

#servicesMenu a:hover {
    background-color: #dbe8ff;
    color: #f7257c;
}

#servicesMenu a.active {
    background-color: #f7257c;
    color: white;
    transform: translateX(8px);
}

#servicesMenu a.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background-color: #f7257c;
    border-radius: 5px;
}

.service-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-title {
    color: #002b40;
    font-weight: bold;
    font-size: 28px;
}

.read-more {
    display: flex;
    cursor: pointer;
    text-decoration: none;
    color: #002b40;
}

.read-more span i {
    font-size: 20px;
}

.service-box h6 {
    color: #002b40;
    font-weight: bold;
}

.service-section p {
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .service-content {
        height: auto;
    }
}

/*================================================
News & Insights Area CSS
=================================================*/

.insights-section {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}

.insights-title {
    display: grid;
    place-items: center;
}

.insights-title h4 {
    width: 80%;
    line-height: 1.5;
    color: #c0206a;
    text-align: justify;
}

.blog-card {
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-card .card {
    border: none;
    min-height: 420px;
    background-color: transparent;
    border: 1px solid gainsboro;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
}

.blog-card .card img {
    height: 200px;
}

.blog-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 10px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
}

.content-card {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid gainsboro;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
}

.content-title {
    font-size: 1.3rem;
    font-weight: 600;
    font-weight: bold;
    margin-bottom: 10px;
    color: #c0206a;
}

.content-title i {
    font-size: 25px;
    text-shadow: 1px 1px 2px gainsboro;
}

.blog-category {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 2px solid gray;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
}

.search i {
    cursor: pointer;
    color: #c0206a;
}

.search input {
    width: 90%;
    font-size: 18px;
    color: #000;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px;
}

.search input::placeholder {
    padding-left: 20px;
    color: gray;
}

.blog-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #f7931e;
    font-weight: 500;
    text-decoration: none;
}

.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 600px) {
    .blog-card .card {
        height: auto;
    }
}

@media screen and (max-width: 400px) {
    .insights-title h4 {
        width: 100%;
    }
}

/*================================================
Careers Header Area CSS
=================================================*/

.apply-opening {
    position: relative;
    background-image: url(../img/careers/careers-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.apply-opening::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.apply-opening>* {
    position: relative;
    z-index: 2;
}

.apply-opening h3 {
    font-weight: 300;
}

.apply-opening h1 {
    font-weight: bold;
    color: aliceblue;
    text-shadow: 1px 1px 2px black;
}

.apply-btn {
    width: 250px;
    height: 40px;
    border: none;
    outline: none;
    background-color: rgb(247, 37, 124);
    color: white;
    font-weight: 500;
    border-radius: 10px;
    text-shadow: 1px 1px 2px black;
    border-radius: 5px;
}

@media screen and (max-width: 400px) {
    .apply-opening {
        height: auto;
    }
}

/*================================================
Team Build Area CSS
=================================================*/

.team-build {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.grouth-box {
    display: grid;
    place-items: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.grouth-box i {
    text-shadow: 1px 1px 2px gray;
    font-size: 30px;
}

.growth-level p {
    text-align: justify;
}

/*================================================
Current opening Area CSS
=================================================*/

.current-opening {
    background-color: rgba(0, 0, 0, 0.4);
}

.opening-list {
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0.5px 0.5px 1px black;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.opening-list h5 {
    padding-top: 10px;
    text-shadow: 0.5px 0.5px 1px #fff;
}

.opening-list h6 {
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .opening-list h5 {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    .opening-list h5 {
        font-size: 16px;
    }
}

/*================================================
Life at Hisho Area CSS
=================================================*/

.life-at-hisho {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.life-text-boxs {
    row-gap: 40px;
    column-gap: 40px;
}

.life-text-box {
    background-color: transparent;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #f83e8c;
    display: grid;
    place-items: center;
}

.life-text-box i {
    color: #f7257c;
    font-size: 40px;
    text-shadow: 1px 1px 2px #fff;
    padding-left: 20px;
}

.life-text-box h3 {
    padding-top: 10px;
    text-align: center;
}

.life-text-box p {
    padding-top: 10px;
    text-align: center;
}

.life-title-box {
    float: right;
}

.life-title-box h2 {
    width: auto;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px gainsboro;
}

.life-title-box p {
    padding-top: 20px;
    text-align: justify;
}

/*================================================
Application Area CSS
=================================================*/

.responsibility {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.application {
    background-color: rgba(0, 0, 0, 0.4);
}

.application input,
.application textarea {
    width: 100%;
    padding: 10px;
    border-radius: 0;
}

.application input:focus {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: #fff !important;
}

.application input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
    color: #fff !important;
    font-size: 18px;
}

.application input::placeholder {
    color: #fff;
}

.application button {
    border: none;
    outline: none;
    text-decoration: none;
    background-color: rgb(247, 37, 124);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0;
    border-radius: 6px;
}

.apply-btn,
.life-title-box button,
.contact-form button {
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    text-decoration: none;
    background-color: rgb(247, 37, 124);
    color: #fff;
    border-radius: 0;
}

.application form input.form-control {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

input[type="date"] {
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
    width: 100%;
    padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.text-white {
    color: #fff;
}

.text-danger {
    color: red;
}

.form-group {
    margin-bottom: 20px;
}

.custom-file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.upload-btn {
    background-color: #fff;
    color: rgb(247, 37, 124);
    padding: 3px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 400;
}

.upload-btn:hover {
    background-color: #c0206a;
}

#file-name {
    font-style: italic;
}

/*================================================
Contact Page Area CSS
=================================================*/

.contact-us {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
    border-bottom: 2px solid rgb(247, 37, 124);
}

.contact-me {
    background-color: rgba(0, 0, 0, 0.4);
}

.contact-section {
    padding: 30px 0;
}

.contact-box h5 {
    text-align: start;
    font-weight: bold;
    color: #002b40;
}

.contact-box p i {
    color: rgb(247, 37, 124);
    font-size: 23px;
    margin-right: 8px;
}

.contact-box .social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.contact-box .social-icons a {
    text-decoration: none;
}

.contact-box .social-icons a i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 2px solid #e61375;
    color: #e61375;
    border-radius: 50%;
    font-size: 20px;
    text-shadow: 1px 1px 2px gainsboro;
}

.contact-box .social-icons a i:hover {
    background-color: #e61375;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.country-tabs .nav-tabs {
    border-bottom: 1px solid #e01265;
}

.country-tabs .nav-tabs .nav-link {
    color: #e61375;
    background-color: transparent;
    border: none;
    font-weight: 500;
}

.country-tabs .nav-tabs .nav-link:hover {
    color: #ff4081;
}

.country-tabs .nav-tabs .nav-link.active {
    background-color: #e61375;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    font-weight: 600;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
}

.contact-form input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
    color: #fff;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: #fff;
}

.contact-form textarea {
    background-color: transparent;
    border: none;
    border: 2px solid #fff;
    outline: none;
    color: #fff;
}

@media screen and (max-width: 400px) {
    .contact-us h5 {
        text-align: justify;
    }

    .contact-us {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/*================================================
Login Page CSS
=================================================*/

.login-page {
    width: 100%;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.login-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.login-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-top: 25px;
}

.login-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-form-control:focus {
    box-shadow: none;
}

/* Eye icon */

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
}

.eye-icon:hover {
    color: #fff;
}

.link.forget-pass {
    text-align: right;
    margin-bottom: 20px;
}

.link.forget-pass a {
    font-size: 16px;
    text-decoration: underline;
}

.signin-btn {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    margin-top: 20px;
}

.signin-btn:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .login-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .login-form-box {
        max-width: 320px;
    }
}

/*================================================
Sign Up Area CSS
=================================================*/

.sign-up-page {
    width: 100%;
    height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.sign-up-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.signup-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.signup-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-top: 30px;
}

.signup-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.signup-form-control:focus {
    box-shadow: none;
}

.sign-up-btn {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.sign-up-btn:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .signup-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .signup-form-box {
        max-width: 320px;
    }
}

/*================================================
Forgot Password Page Area CSS
=================================================*/

.forget-password {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.forget-password::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.forget-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.forget-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-bottom: 20px;
    font-size: 16px;
}

.forget-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.forget-form-control:focus {
    box-shadow: none;
}

.forget-form-group .button {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.forget-form-group .button:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .forget-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .forget-form-box {
        max-width: 320px;
    }
}

/*================================================
New Password Page Area CSS
=================================================*/

.new_password {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.new_password::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.newpassword_form_box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.newpassword_form_control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-top: 15px;
    font-size: 16px;
}

.newpassword_form_control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newpassword_form_control:focus {
    box-shadow: none;
}

.newpassword_form_group .button {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.newpassword_form_group .button:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .newpassword_form_box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .newpassword_form_box {
        max-width: 320px;
    }
}

/*================================================
Password Changed Page Area CSS
=================================================*/

.password-changed {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.password-changed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.password-changed-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.password-changed-form-group .button {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.password-changed-form-group .button:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .password-changed-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .password-changed-form-box {
        max-width: 320px;
    }
}

/*================================================
Reset Code Page Area CSS
=================================================*/

.reset-code {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.reset-code::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.reset-code-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.reset-code-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-bottom: 20px;
    font-size: 16px;
}

.reset-code-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.reset-code-form-control:focus {
    box-shadow: none;
}

.reset-code-form-group .button {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
    margin-top: 20px;
}

.reset-code-form-group .button:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .reset-code-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .reset-code-form-box {
        max-width: 320px;
    }
}

/*================================================
User OTP Page Area CSS
=================================================*/

.user-otp-page {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/modern-office.jpg) no-repeat center center/cover;
}

.user-otp-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.user-otp-form-box {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.user-otp-form-control {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
    margin-top: 20px;
    font-size: 16px;
}

.user-otp-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.user-otp-form-control:focus {
    box-shadow: none;
}

.user-otp-form-group .button {
    width: 100%;
    height: 40px;
    background-color: #f72585;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
    margin-top: 20px;
}

.user-otp-form-group .button:hover {
    background-color: #fc308b;
    color: #ffffff;
    border: 2px solid #fff;
}

@media screen and (max-width: 468px) {
    .user-otp-form-box {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 360px) {
    .user-otp-form-box {
        max-width: 320px;
    }
}

/*================================================
Country Header Area CSS
=================================================*/

.country-header {
    width: 100%;
    height: 80vh;
    display: grid;
    place-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.country-header video {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: -1;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.country-header h1 {
    color: rgb(247, 37, 124);
    text-shadow: 1px 1px 2px #000;
    font-size: 50px;
}

.country-header h5 {
    color: #fff;
    padding-top: 10px;
    text-shadow: 1px 1px 2px #000;
}

.country-header button {
    margin-top: 50px;
    border: 2px solid #f7257c;
    padding: 8px 30px;
    border-radius: 10px;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.country-header button:hover {
    border: 2px solid #fff;
    color: #f7257c;
}

@media screen and (max-width: 1260px) {
    .country-header .container h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .country-header {
        height: auto;
    }

    .country-header video {
        height: 100%;
    }

    .country-header button {
        margin-top: 20px;
    }
}

/*================================================
Country Service Time Line Area CSS
=================================================*/

.service-time-line {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 0;
    background: #e61375;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 0;
    transition: height 10s ease-in-out;
    border-radius: 10px;
}

.timeline.animate-line::after {
    height: 100%;
}

.timeline-item,
.even-timeline-item {
    padding: 20px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after,
.even-timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #e61375;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item::after {
    right: -10px;
}

.even-timeline-item::after {
    left: -10px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: scale(1.05);
}

.timeline-content h5 {
    color: #e61375;
}

.timeline-content a {
    color: #000;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item,
    .even-timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
    }

    .timeline-item::after,
    .even-timeline-item::after {
        left: 15px !important;
        right: auto !important;
    }

    .timeline::after {
        margin-left: -8px;
    }

    .timeline-item,
    .even-timeline-item {
        padding: 20px 30px;
    }

    .timeline-content {
        margin-left: 20px;
    }
}

/*================================================
Legal Page Area CSS
=================================================*/

.legal-header {
    height: auto;
    position: relative;
    background: url(../img/footer/legal_bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 60px 0;
}

.legal-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.legal-header .container {
    position: relative;
    z-index: 2;
}

.legal-header h1 {
    font-weight: bold;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h4 {
    margin-top: 40px;
}

.legal-content {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.legal-content h4 {
    color: #c0206a;
}

.legal-content p {
    text-align: justify;
}

.legal-content p::before {
    content: "✦";
    color: #e61375;
    margin-right: 10px;
}

/*================================================
Accessibility Page Area CSS
=================================================*/

.accessibility-header {
    position: relative;
    background: url(../img/footer/accessibility_bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    height: 300px;
    display: grid;
    place-items: center;
}

.accessibility-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.accessibility-header .container {
    position: relative;
    z-index: 2;
}

.accessibility-card h5 i {
    color: #e61375;
    text-shadow: 1px 1px 1px gray;
}

.accessibility-card p {
    color: gray;
}

.accessibilty-content {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
}

.access-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

@media screen and (max-width: 400px) {
    .section-title {
        font-size: 25px;
    }
}

/*================================================
Help Page Area CSS
=================================================*/

.help-header {
    position: relative;
    background: url(../img/footer/help_bg.jpg) no-repeat;
    background-position: 0%;
    background-size: cover;
    color: #fff;
    height: 300px;
    display: grid;
    place-items: center;
}

.help-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.help-header .container {
    position: relative;
    z-index: 2;
}

.help-content {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

/*================================================
Privacy Page Area CSS
=================================================*/

.privacy-content {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.privacy-sidebar {
    border-right: 1px solid #ddd;
    height: auto;
    padding-top: 3rem;
}

.privacy-sidebar a {
    display: block;
    padding: 12px 20px;
    color: #f7257c;
    text-decoration: none;
}

.privacy-sidebar a.active {
    font-weight: 700;
    color: #ffffff;
    background-color: #f7257c;
    border-radius: 10px;
}

.privacy-policy-content {
    padding: 3rem;
}

.last-updated {
    color: green;
    font-weight: bold;
    margin-bottom: 1rem;
}

.privacy-section {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.privacy-section h1 {
    color: #f7257c;
    text-shadow: 1px 1px 2px gainsboro;
    font-weight: bold;
}

.privacy-section p {
    text-align: justify;
}

.privacy-section.active {
    display: block;
}

.privacy-section h5 {
    color: #1d0101;
    padding-top: 5px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 400px) {
    .privacy-policy-content {
        padding: 1rem;
    }
}

/* Scroll Bar */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}

:root {
    scroll-padding-top: 80px;
}