body {
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    direction: rtl;
    /* عكس اتجاه الصفحة */
    text-align: right;
    /* محاذاة النص إلى اليمين */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #414141;
}

a {
    color: #313131;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #0056b3;
    /* أزرق داكن عند التمرير */
    outline: none;
    text-decoration: none;
}


/* تغيير الألوان والأزرار */

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: #007BFF;
    /* اللون الأزرق */
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #007BFF;
    /* أزرق */
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: #007BFF;
    /* اللون الأزرق للنص */
    background: transparent;
    box-shadow: inset 0 0 0 0 #007BFF;
    border-color: #007BFF;
}

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #007BFF;
    /* اللون الأزرق */
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top:hover i {
    color: #414141;
}

.price-container {
    position: relative;
    /* يساعد في التحكم بموقع السعر */
    display: flex;
    justify-content: center;
    /* لمحاذاة العنصر في المنتصف */
    margin-bottom: -25px;
    /* جعله يلتصق بالفريم من الأعلى */
}

.price-tag {
    background-color: #007BFF;
    /* لون الخلفية */
    color: #fff;
    /* لون النص */
    font-weight: bold;
    /* سمك النص */
    padding: 8px 20px;
    /* المسافة الداخلية */
    border-radius: 25px;
    /* الأطراف الدائرية */
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* ظل خفيف */
    z-index: 10;
    /* التأكد من أن السعر يظهر فوق الفريم */
}

.course-item {
    background: #fff;
    /* لون الخلفية للفريم */
    border: 1px solid #ddd;
    border-radius: 10px;
    /* الأطراف الدائرية */
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* ظل للفريم */
}


/**********************************/


/*********** Nav Bar CSS **********/


/**********************************/

.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    direction: rtl;
    /* دعم الاتجاه من اليمين لليسار */
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    direction: rtl;
}

.navbar .navbar-brand {
    margin: 0;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .5s;
    direction: rtl;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
    direction: rtl;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
    direction: rtl;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        border-bottom: 1px dashed rgba(256, 256, 256, .2);
        z-index: 9;
    }
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    .navbar .navbar-brand {
        color: #ffffff;
    }
    .navbar.nav-sticky .navbar-brand {
        color: #0a06f8;
    }
    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #EF233C;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    .navbar .navbar-brand {
        color: #EF233C;
    }
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    .navbar a.nav-link {
        padding: 5px;
    }
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/* Latest Courses Section */


/* تنسيق العنصر .course-item */

.latest-courses .course-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    /* حتى يمكننا تحريك السعر بالنسبة لهذا العنصر */
}


/* تنسيق الصورة */

.latest-courses .course-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}


/* تنسيق محتوى الكورس */

.latest-courses .course-item .course-content {
    padding: 15px;
    background-color: #f9f9f9;
}


/* تنسيق عنوان الكورس */

.latest-courses .course-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


/* تنسيق النص */

.latest-courses .course-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}


/* تنسيق زر البدء */

.latest-courses .course-item a {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}


/* تأثير حركة العنصر عند الوقوف عليه */

.latest-courses .course-item:hover {
    transform: translateY(-5px);
}


/* تغيير خلفية محتوى الكورس عند الوقوف عليه */

.latest-courses .course-item:hover .course-content {
    background-color: #e9e9e9;
}


/* تنسيق السعر */

.latest-courses .course-item .price-container {
    position: absolute;
    top: -15px;
    /* لجعل السعر فوق العنصر */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    /* لكي لا يتداخل السعر مع التفاعل */
}


/* تنسيق السعر داخل الـ price-container */

.latest-courses .course-item .price-tag {
    background-color: #1e3a56;
    /* لون الخلفية الداكنة */
    color: #f8f9fa;
    /* لون النص فاتح */
    font-weight: bold;
    /* سمك النص */
    padding: 8px 20px;
    /* المسافة الداخلية */
    border-radius: 25px;
    /* الأطراف الدائرية */
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    /* ظل خفيف */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* تأثير الحركة */
}


/* تأثير حركة السعر عند الوقوف على العنصر */

.latest-courses .course-item:hover .price-tag {
    transform: translateY(-15px);
    /* حركة السعر للأعلى */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.9);
    /* تضخيم الظل عند التمرير */
}


/* الحاوية الأساسية */


/* إعدادات الحاوية */

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}


/* النص */

.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
    overflow: hidden;
    background-color: #1D2A4D;
    direction: rtl;
    /* عكس الاتجاه */
    text-align: right;
    /* محاذاة النص لليمين */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ctext x='10' y='50' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eلغة%20الضاد%3C/text%3E%3Ctext x='60' y='100' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالبلاغة%3C/text%3E%3Ctext x='10' y='150' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالنحو%3C/text%3E%3Ctext x='60' y='200' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالأدب%3C/text%3E%3Ctext x='10' y='250' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالإعراب%3C/text%3E%3Ctext x='60' y='300' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالشعر%3C/text%3E%3Ctext x='10' y='350' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالبيان%3C/text%3E%3Ctext x='60' y='400' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالمجاز%3C/text%3E%3Ctext x='10' y='450' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالقوافي%3C/text%3E%3Ctext x='60' y='500' font-size='50' fill='%232E6FA8' opacity='0.3' font-family='Traditional Arabic, Arial, sans-serif'%3Eالنثر%3C/text%3E%3C/svg%3E") repeat;
    z-index: 1;
    animation: move-pattern 10s linear infinite;
}

.hero>* {
    position: relative;
    z-index: 2;
}

@keyframes move-pattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, -50px);
        /* عكس الحركة لتتناسب مع الاتجاه */
    }
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: left;
    /* محاذاة الصورة إلى اليسار */
    padding-left: 75px;
    /* تبديل للحشو */
}

.hero .hero-image img {
    max-width: 120%;
    max-height: 120%;
}

.hero .hero-content {
    position: relative;
    padding-right: 75px;
    /* عكس الحشو لليمين */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: #0919f0;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-left: 10px;
    /* عكس الاتجاه بدلًا من margin-right */
}

@media (max-width: 991.98px) {
    .hero .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 767.98px) {
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
}

body.dark {
    color: #e0e0e0;
    background: #121212;
    direction: rtl;
    /* عكس اتجاه الصفحة */
    text-align: right;
    /* محاذاة النص لليمين */
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
    color: #ffffff;
}

body.dark a {
    color: #bb86fc;
}

body.dark a:hover,
body.dark a:active,
body.dark a:focus {
    color: #3700b3;
}

body.dark .btn {
    color: #121212;
    background: #bb86fc;
    border-color: #bb86fc;
}

body.dark .btn:hover {
    color: #bb86fc;
    background: transparent;
}

body.dark .navbar {
    background: #1f1f1f !important;
}

body.dark .navbar-light .navbar-nav .nav-link,
body.dark .navbar-light .navbar-nav .nav-link:focus {
    color: #ffffff;
    text-align: right;
    /* ضمان محاذاة نص الروابط */
}

body.dark .hero {
    background: linear-gradient(rgba(18, 18, 18, .95), rgba(18, 18, 18, .95)), url(../img/hero-bg.jpg);
    direction: rtl;
    text-align: right;
}

#theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 15px;
    background: #efefef;
    cursor: pointer;
    transition: background 0.3s ease;
}

#theme-toggle .light-icon {
    display: none;
}

body.dark #theme-toggle {
    background: #333;
}

body.dark #theme-toggle .dark-icon {
    display: none;
}

body.dark #theme-toggle .light-icon {
    display: inline;
}

body.dark .price-container {
    position: relative;
    /* يساعد في التحكم بموقع السعر */
    display: flex;
    justify-content: center;
    /* لمحاذاة العنصر في المنتصف */
    margin-bottom: -25px;
    /* جعله يلتصق بالفريم من الأعلى */
}

body.dark .price-tag {
    background-color: #1e3a56;
    /* لون الخلفية الداكنة */
    color: #f8f9fa;
    /* لون النص فاتح */
    font-weight: bold;
    /* سمك النص */
    padding: 8px 20px;
    /* المسافة الداخلية */
    border-radius: 25px;
    /* الأطراف الدائرية */
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    /* ظل داكن أقوى */
    z-index: 10;
    /* التأكد من أن السعر يظهر فوق الفريم */
}

body.dark #chatIconContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

body.dark #chatIcon {
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark #chatIcon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

body.dark #chatWindow {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 350px;
    height: 400px;
    background: #2e2e2e;
    /* خلفية رمادي داكن جدًا */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    color: white;
    /* نص أبيض */
}

body.dark #messagesContainer {
    flex: 1;
    overflow-y: auto;
}

body.dark textarea {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #555;
    font-size: 14px;
    margin-top: 10px;
    resize: none;
    outline: none;
    box-sizing: border-box;
    background: #1f1f1f;
    color: white;
    /* نص أبيض */
}

body.dark button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

body.dark button:hover {
    background-color: #007BFF;
}


/* الوضع المظلم */

body.dark .student-message {
    background-color: #c7c4c4;
    /* خلفية داكنة للطالب */
    color: rgb(2, 2, 2);
    /* نص أبيض */
}

body.dark .teacher-message {
    background-color: #007BFF;
    /* خلفية داكنة للمستر */
    color: white;
    /* نص أبيض */
}

.latest-courses .course-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    /* الحدود الافتراضية */
    border-radius: 10px;
    overflow: hidden;
    background-color: #f9f9f9;
    /* خلفية فاتحة */
    transition: transform 0.3s ease;
}

.latest-courses .course-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.latest-courses .course-item .course-content {
    padding: 15px;
    background-color: #fff;
    /* خلفية فاتحة */
    color: #333;
    /* لون النص الافتراضي */
}

.latest-courses .course-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    /* لون العنوان الافتراضي */
}

.latest-courses .course-item p {
    font-size: 14px;
    color: #777;
    /* لون النص الافتراضي */
    margin-bottom: 10px;
}

.latest-courses .course-item a {
    background-color: #007bff;
    /* اللون الأزرق للأزرار */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.latest-courses .course-item:hover {
    transform: translateY(-5px);
}

.latest-courses .course-item:hover .course-content {
    background-color: #e9e9e9;
    /* تغيير الخلفية عند التحويم */
}

.latest-courses .course-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    /* الحدود الافتراضية */
    border-radius: 10px;
    overflow: hidden;
    background-color: #f9f9f9;
    /* خلفية فاتحة */
    transition: transform 0.3s ease;
}

.latest-courses .course-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.latest-courses .course-item .course-content {
    padding: 15px;
    background-color: #fff;
    /* خلفية فاتحة */
    color: #333;
    /* لون النص الافتراضي */
}

.latest-courses .course-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    /* لون العنوان الافتراضي */
}

.latest-courses .course-item p {
    font-size: 14px;
    color: #777;
    /* لون النص الافتراضي */
    margin-bottom: 10px;
}

.latest-courses .course-item a {
    background-color: #007bff;
    /* اللون الأزرق للأزرار */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.latest-courses .course-item:hover {
    transform: translateY(-5px);
}

.latest-courses .course-item:hover .course-content {
    background-color: #e9e9e9;
    /* تغيير الخلفية عند التحويم */
}


/* خصائص الثيم الداكن */

body.dark .latest-courses .course-item {
    background-color: #333;
    border-color: #444;
}

body.dark .latest-courses .course-item .course-content {
    background-color: #444;
    color: #ddd;
}

body.dark .latest-courses .course-item h3 {
    color: #ddd;
}

body.dark .latest-courses .course-item p {
    color: #bbb;
}

body.dark .latest-courses .course-item a {
    background-color: #555;
    color: white;
}

body.dark .latest-courses .course-item:hover {
    transform: translateY(-5px);
}

body.dark .latest-courses .course-item:hover .course-content {
    background-color: #666;
}


/* خصائص الثيم الداكن على العنصر p */


/* خصائص الفقرة p في الثيم الداكن */

.dark-theme .section-header p {
    color: #1869c5;
    background: #b4adad;
    /* لون النص الفاتح عند تفعيل الثيم الداكن */
}


/*******************************/


/******* Section Header ********/


/*******************************/

.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #EF233C;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 #236aef;
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #236aef;
    background: #ffffff;
}

.service .service-icon i {
    position: relative;
    font-size: 60px;
    color: #236aef;
    transition: .3s;
}

.service .service-item:hover i {
    font-size: 75px;
}

.service .service-text {
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.service .service-text p {
    margin: 0;
    font-size: 16px;
    transition: 1s;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .service .service-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .service .service-text p {
        font-size: 14px;
    }
}


/*******************************/


/********** About CSS **********/


/*******************************/

.about {
    position: relative;
    width: 100%;
    margin: -45px 0 45px 0;
}

.about .col-lg-6 {
    padding: 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-content {
    padding: 0 60px;
}

.about .about-text p {
    font-size: 16px;
}

.about .skills {
    margin-bottom: 30px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: #dddddd;
}

.about .progress .progress-bar {
    width: 0px;
    background: #0415fd;
    border-radius: 10px;
    transition: 2s;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content {
        padding: 45px 15px 0 15px;
    }
}

.footer {
    position: relative;
    margin-top: 45px;
    background: #0a31dd;
}

.footer .container-fluid {
    padding: 60px 0 0 0;
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
}

.footer .footer-info h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.footer .footer-info h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.footer .footer-menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer .footer-menu p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu p:last-child {
    border: none;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 20px;
    font-size: 20px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-social a:last-child i {
    margin: 5;
}

.footer .footer-social a:hover i {
    color: #414141;
}

.footer .copyright {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    font-weight: 600;
}

.footer .copyright p a:hover {
    color: #414141;
}

@media (max-width: 575.98px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }
    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}