/* Fonts */

:root {
    --default-font: "Cairo", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Cairo', sans-serif !important;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0d83fd;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529;
    /* The default color of the main navmenu links */
    --nav-hover-color: #0d83fd;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d83fd;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f3f9ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d83fd;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

.left-aligned {
    text-align: left;
}

.blue {
    color: #1A30F3;
}

.bg-blue {
    background-color: #1A30F3;
}

.bg-blue:hover {
    background-color: #0d83fd;

}

.my-input {
    border-radius: 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
    line-height: 1;
    padding-right: 5px;
}

.header .logo img {
    max-height: 36px;
    margin-left: 8px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: #1A30F3;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #1A30F3;
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 30px 0 0;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
        display: flex;
    }

    .header .header-container {
        margin-right: 10px;
        margin-left: 10px;
        padding: 10px 15px 10px 5px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 0 0 10px;
        padding: 6px 15px;
        margin-inline-start: auto;
    }

    .header .navmenu {
        order: 3;
    }

    .hero .input-group {
        margin-bottom: 15rem;
    }

}

.header .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}


.header .logo h1 {
    order: 1;
}


.header .user {
    order: 2;
    /* margin-right: auto; */
}

@media (max-width: 1024px) {
    .header .user {
        order: 2;
        margin-right: auto;
    }

}

@media (max-width: 1200px) {
    .header .header-container {
        display: flex;
        justify-content: space-between;
    }

    .header .logo h1 {
        order: 1;
    }

    .header .user {
        order: 2;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-right: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-left: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #1A30F3;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        right: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        right: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        right: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-left: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(-180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        left: 15px;
        margin-left: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #FFFFFF;
    background-color: #1A30F3;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo span {
    color: #FFFFFF;
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 35px;
    border-radius: 10px;
    background-color: white;
    margin-left: 10px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-links i {
    font-size: 1.2rem !important;
    color: #1A30F3 !important;
}

.footer .social-links a:hover {
    color: #f1f1f1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.footer h3 {
    color: #FFFFFF;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links i {
    padding-left: 2px;
    font-size: 1rem;
    line-height: 0;
    color: white;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: #FFFFFF;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #f1f1f1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #1A30F3;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-right: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #1A30F3;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    background: url('../img/hero3.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.hero .container {
    z-index: 2;
}

.hero input[type="text"] {
    max-width: 600px;
    padding: 10px;
    font-size: 1rem;
}

.hero .input-group {
    margin-bottom: 10rem;
}

.hero span {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.hero input {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 0 !important;
    width: auto;
    height: auto;
}

.features .nav-item {
    margin: 0;
    padding: 0 0 0 5px;
}

.features .nav-item:last-child {
    padding-left: 0;
}

.features .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
}

@media (max-width: 468px) {
    .features .nav-link {
        padding: 8px 20px;
    }
}

.features .nav-link i {
    padding-left: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.features .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
    color: #1A30F3;
}

.features .nav-link.active {
    background-color: #1A30F3;
    border-color: var(--accent-color);
}

.features .nav-link.active h4 {
    color: var(--contrast-color);
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    right: 0;
    bottom: 0;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-top: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-left: 4px;
    color: var(--accent-color);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home page
--------------------------------------------------------------*/
/* Projects section */
.card .spans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    color: gray;
}

.card .spans .precentage {
    font-size: 10px;
    font-weight: bold;
}

.card .cardfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .cardfooter img {
    width: 25px;
    height: 25px;
}

.card .cardfooter i {
    color: #1A30F3;
}

.card {
    padding: 0;
}

@media (max-width: 768px) {
    .card {
        width: 100% !important;
        margin: 10px auto !important;
    }
}

.image-container {
    height: 200px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-box {
    width: 50px;
    height: 50px;
    line-height: 1.2;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 90%;
    left: 15%;
    transform: translateX(-50%) translateY(10%);
    z-index: 2;
    border-radius: 10px;
}

.date-box h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.date-box small {
    font-size: 12px;
}

.date-box2 {
    width: 50px;
    height: 50px;
    line-height: 1.2;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    position: absolute;
    top: 0;
    right: -8%;
    transform: translateX(-50%) translateY(10%);
    z-index: 2;
    border-radius: 10px;
}

.date-box2 h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.date-box2 small {
    font-size: 12px;
}

/* services Section */
.container.services {
    padding: 50px 15px;
}

.service-card {
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.service-card i.icon {
    font-size: 50px;
    color: #1A30F3;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.service-card i.icon:hover {
    color: #0d83fd;
}

.service-card h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

.service-card:hover i.icon {
    color: #007bff;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
}

/* achivments Section */
.achieves .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
}

.achieves {
    background-color: #EFF3FC;
}

.fw-bold {
    font-weight: bold;
}

.p-3 {
    padding: 1rem;
}

.achievement-logo {
    font-size: 5rem;
}

.achievement-box {
    background-color: white;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    width: 100%;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200px;
}

.achievement-number {
    font-size: 2.5rem;
    color: #1a3c8e;
}

.achievement-text {
    font-size: 1.1rem;
    color: #8b8b8b;
}

@media (max-width: 768px) {
    .achieves .right {
        width: 100%;
    }

}

/* blog section */
.blog-section .title h6 {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-section .title .move button {
    border-radius: 50%;
}

.blog-section .title .move button:hover {
    background-color: #0d83fd;
}

.blog-section .solo-blog img {
    width: 50px;
    height: 50px;
}

.blog-section .solo-blog span {
    font-size: 0.6rem;
    font-weight: bold;
}

.blogs-section {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blogs-section::-webkit-scrollbar {
    display: none;
}

.solo-blog {
    width: 20rem;
    height: 15rem;
    overflow: hidden;
    border-radius: 15px;
    background-color: #EFF3FC;
    margin-right: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .blogs-section {
        padding-bottom: 10px;
    }

    .solo-blog {
        width: 15rem;
        margin-right: 15px;
    }

    .blog-section .title h6 {
        font-size: 1.2rem;
        /* تقليل حجم العنوان */
    }
}

@media (max-width: 480px) {
    .solo-blog {
        width: 100%;
        margin-right: 10px;
    }

    .blog-section .title {
        flex-direction: column;
        text-align: center;
    }

    .blog-section .title .move {
        margin-top: 10px;
    }
}

/* opinion section */
.opinion-section .title h6 {
    font-size: 1.5rem;
    font-weight: bold;
}

.opinion-section .title .move2 button {
    border-radius: 50%;
}

.opinion-section .title .move2 button:hover {
    background-color: #0d83fd;
}

.opinion-section .solo-opinion img {
    width: 50px;
    height: 50px;
}

.opinion-section .solo-opinion span {
    font-size: 0.6rem;
    font-weight: bold;
}

.opinions-section {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.opinions-section::-webkit-scrollbar {
    display: none;
}

.solo-opinion {
    width: 20rem;
    height: 12rem;
    border-radius: 15px;
    background-color: #EFF3FC;
    margin-right: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .opinions-section {
        padding-bottom: 10px;
    }

    .solo-opinion {
        width: 15rem;
        margin-right: 15px;
    }

    .opinion-section .title h6 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .solo-opinion {
        width: 100%;
        margin-right: 10px;
    }

    .opinion-section .title {
        flex-direction: column;
        text-align: center;
    }

    .opinion-section .title .move2 {
        margin-top: 10px;
    }
}

/* patner section */
.partner .flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.partner button {
    width: 12rem;
    height: 3rem;
    border-radius: 25px;
}

.partner button:hover {
    background-color: #0d83fd;
}

.partner img {
    width: calc(33.333% - 10px);
    height: auto;
    max-width: 150px;
    object-fit: cover;
    flex-shrink: 1;
}

.partner .diff-partner {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 576px) {
    .partner img {
        width: calc(33.333% - 10px);
        max-width: 100px;
    }
}

@media (min-width: 431px) {
    .partner img {
        width: 50px;
        height: 50px;
    }
}

/*--------------------------------------------------------------
# Opportunity Page
--------------------------------------------------------------*/
.Opportunity-page .input-group {
    padding-top: 10rem;
    display: flex;
    justify-content: center;
    padding-left: 4rem;
    padding-right: 4rem;
}

.Opportunity-page .input-group input {
    width: 90%;
}

@media (max-width: 768px) {
    .Opportunity-page .input-group {
        padding-top: 5rem;
    }
}

.pagination {
    flex-direction: row-reverse;
}

/*--------------------------------------------------------------
# us Page
--------------------------------------------------------------*/
.us-page {
    background-color: #EFF3FC;
    height: auto;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .us-page {
        margin-top: 3rem;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: #1A30F3;
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact {
    padding-top: 8rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    background-color: #1A30F3;
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# User profile
--------------------------------------------------------------*/
.profile-header {
    height: 150px;
    margin-top: 5rem;
    /* margin-top: .5rem; */
    padding: 0 2rem;
    padding-bottom: 0 !important;
    background-color: #EFF3FC;
    display: flex;
    align-items: end;
    justify-content: start;
    position: relative;
}

.profile-header .photo {
    width: 100px;
    height: 120px;
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: -20px;
}

.profile-header nav {
    padding-right: 120px;
    gap: 1rem;
    font-weight: bold;
}

.profile-header nav .nav-link:hover {
    color: #1A30F3 !important;
}


@media (max-width: 400px) {
    .profile-header nav {
        padding-right: 0px;
        padding: 0 !important;
        gap: 1px !important;
        font-size: .52rem;
        font-weight: bolder;
    }

    .nav-link {
        padding: 10px 6px !important;
    }

    .profile-header .photo {
        top: -40px;
        flex-direction: column-reverse;
    }

    .profile-header {
        height: 150px;
        padding: 0;
    }
}

@media (min-width: 401px) and (max-width: 770px) {
    .profile-header nav {
        padding-right: 0px;
        padding: 0 !important;
        gap: 1px !important;
        font-size: .61rem;
    }

    .nav-link {
        padding: 10px 10px !important;
    }

    .profile-header .photo {
        top: -40px;
        flex-direction: column-reverse;
    }

    .profile-header {
        height: 150px;
        padding: 0;
    }
}


@media (min-width: 771px) and (max-width: 1000px) {
    .profile-header nav {
        font-size: .78rem;
    }

    .nav-link {
        padding: 1px 1px !important;
    }

    .profile-header .photo {
        bottom: -40px;
    }

    .profile-header {
        height: 150px;
        padding: 0;
    }
}

@media (min-width: 1001px) and (max-width: 1200px) {
    .profile-header nav {
        font-size: 1rem;
    }

    .nav-link {
        padding: 5px 5px !important;
    }

    .profile-header .photo {
        bottom: -40px;
    }

    .profile-header {
        height: 150px;
        padding: 0;
    }
}


.profile-header .nav-link {
    position: relative;
    text-decoration: none;
}

.profile-header .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: blue;
}

.profile .card button {
    width: 5rem;
    border-radius: 20px;
}

.profile .download {
    background-color: #1A30F3;
    color: white;
    border-radius: 20px;
}

.profile select {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    /* padding: 2rem; */
    /* border: none; */
    border: solid 1px gainsboro;
}

/*--------------------------------------------------------------
# User Report
--------------------------------------------------------------*/
.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.switch-label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 2.5px;
    left: 3px;
    transition: transform 0.3s;
}

input:checked+.switch-label {
    background-color: #007bff;
}

input:checked+.switch-label::before {
    transform: translateX(25px);
}



/*--------------------------------------------------------------
# Messages
--------------------------------------------------------------*/
.messages .mess-div {
    background-color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    position: relative;
}

.messages .message2,
.messages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 0;
    margin: 0;
    position: sticky;
    background-color: white;
    width: 100%;
}

.message3 {
    border: none;
    padding-top: 1rem;
    margin: 0;
    width: 100%;
}

.message3 form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages .message2 {
    top: 0;
    z-index: 1;
}

.messages .message3 {
    bottom: 0;
    z-index: 1;
}

.messages .add {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1A30F3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.messages .messages-list {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    max-height: 400px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.messages .messages-list::-webkit-scrollbar {
    display: none;
}

.messages .message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.messages .message2 .sett {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1A30F3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.messages .message2:last-child {
    border-bottom: none;
}

.messages .message2 .time {
    font-size: 0.8em;
    color: #888;
}

.messages .message2 .content {
    flex-grow: 1;
    margin-left: 10px;
}

.messages .message2 .content .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.messages .message2 .content .online {
    font-size: 0.7em;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.messages .message2 .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.messages .message2 .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.messages .message:last-child {
    border-bottom: none;
}

.messages .messages-list .message:hover {
    background-color: #0066ff;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.messages .message .time {
    font-size: 0.8em;
    color: #888;
}

.messages .message.active .time {
    color: #fff;
}

.messages .message .content {
    flex-grow: 1;
    margin-left: 10px;
}

.messages .message .content .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.messages .message .content .text {
    font-size: 0.9em;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.messages .message.active .content .text {
    color: #fff;
}

.messages .message .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.messages .message .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .messages .mess-div {
        padding: 1rem;
        margin-top: 1rem;
    }

    .messages .messages-list {
        max-width: 100%;
    }

    .messages .message {
        overflow: hidden;
    }

    .messages .message .avatar {
        margin-bottom: 10px;
    }

    .messages .message .content {
        margin-left: 0;
    }

    .messages .message .time {
        align-self: flex-end;
    }

    .messages .top {
        flex-direction: column;
        align-items: flex-start;
    }

    .messages .add {
        margin-top: 10px;
    }
}

.messages .sender img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

.messages .reciver img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

.messages .sender .content-message {
    background-color: #f8f9fa;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    word-wrap: break-word;
}

.messages .reciver .content-message {
    background-color: #007bff;
    color: white;
    border-radius: 20px 20px 20px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    word-wrap: break-word;
}

.messages .time {
    font-size: 0.85rem;
    color: gray;
    margin-right: 5px;
}

img {
    object-fit: cover;
}

.messages .message3 input {
    width: 70%;
    border-radius: 15px;
}

.chat-header {
    background-color: #1a30f3 !important;
    border-radius: 20px !important;
    color: white !important;
    margin-bottom: 10px !important;
}

.pointer {
    cursor: pointer !important;
}

.btn-back {
    width: 40px !important;
    height: 40px !important;
    background-color: #4f77ff !important;
    color: white !important;
    transition: 0.3s ease !important;
    font-size: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-back:hover {
    background-color: #6a8cff !important;
    transform: scale(1.05) !important;
}

.mess-div {
    width: 100%;
    height: 100%;
}

.message-body {
    width: 100% !important;
    padding: 1rem !important;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png") !important;
    background-repeat: repeat !important;
    background-color: #f9fbff !important;
}


.message-body::-webkit-scrollbar {
    width: 6px !important;
}

.message-body::-webkit-scrollbar-thumb {
    background: #a0bfff !important;
    border-radius: 10px !important;
}

.content-message {
    padding: 10px 15px !important;
    border-radius: 20px !important;
    max-width: 90% !important;
    word-wrap: break-word !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    font-size: 15px !important;
}

.sender-msg {
    background: linear-gradient(135deg, #1a30f3, #4f77ff) !important;
    color: #fff !important;
    border-radius: 20px 20px 0 20px !important;
}

.reciver-msg {
    background-color: #ffffff !important;
    color: #333 !important;
    border-radius: 20px 20px 20px 0 !important;
    border: 1px solid #d7d7d7 !important;
}

.time {
    font-size: 0.8rem !important;
    color: #999 !important;
}

.sett {
    background-color: #1a30f3 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.3s !important;
}

.sett:hover {
    background-color: #4f77ff !important;
}

.message3 {
    border-top: 1px solid #e0e0e0 !important;
    z-index: 10 !important;

}

.input-message {
    border-radius: 25px !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #ccd9ff !important;
    background-color: #fff !important;
    font-size: 15px;
}

.btn-send {
    background: #1a30f3 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
    font-size: 16px !important;
}

.btn-send:hover {
    background-color: #4f77ff !important;
}

.avatar img {
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
}

/*--------------------------------------------------------------
# slider Section
--------------------------------------------------------------*/
.slider {
    padding-top: 8rem;
}

.slider .section-title h2 {
    color: #1A30F3 !important;
}

.slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.slider .swiper-wrapper {
    height: auto;
}

.slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.slider .share i,
.slider .like i {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.slider .share,
.slider .like {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider .like i:active {
    transform: scale(1.3);
    color: #1A30F3;
}

.slider .like i:hover {
    color: #1A30F3;
}

.slider .like .active {
    color: #1A30F3;
}


.slider .share {
    justify-content: flex-start;
}

.slider .like {
    justify-content: flex-end;
}


@media (max-width: 768px) {

    .slider .share i,
    .slider .like i {
        font-size: 1.2rem;
    }

    .slider .share,
    .slider .like {
        gap: 8px;
    }
}

@media (max-width: 480px) {

    .slider .share i,
    .slider .like i {
        font-size: 1rem;
    }

    .slider .share,
    .slider .like {
        gap: 6px;
    }
}

.slider .bottom {
    display: flex;
    height: 70vh;
    align-items: stretch;
}

.slider .left-div {
    flex: 1;
    max-width: 25%;
}

.slider .separator {
    width: 1px;
    background-color: gray;
}

.slider .right-div {
    flex: 3;
}

@media (max-width: 768px) {
    .slider .left-div {
        flex: 1;
        max-width: 33.33%;
    }

    .slider .right-div {
        flex: 2;
    }
}

.buttons {
    color: white;
    background-color: #1A30F3;
    border-radius: 20px;
    width: auto;
}

.buttons:hover {
    color: white;
    background-color: #409dfd;
}

.slider .bottom .nav-tabs .nav-item {
    margin-bottom: 10px;

}

.slider .bottom .nav-tabs .nav-item:hover h6 {
    color: #1A30F3;

}

.slider .agree button {
    color: white;
    border-radius: 20px;
    background-color: #1A30F3;

}

.slider .texts {
    color: black;
}

.slider .step-3 {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
}
