@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

::selection {
    color: #f7f5fa;
    background: #6f1df4;
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #6f1df4;
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6f1df4;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    cursor: url(/asset/images/cursor.png), auto
}

body {
    background-color: #F7F5FA;
    direction: rtl;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;

}

@font-face {
    font-family: dinbold;
    src: url(/asset/fonts/ArbFONTS-DINNextLTArabic-Bold-2.ttf);
}

@font-face {
    font-family: direg;
    src: url(/asset/fonts/alfont_com_AlFont_com_BritishCouncil-Arabic-Bold.ttf);
}

/*start nav */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1363px;
    width: 100%;
    margin-right: 60px;
}

.navbar {
    position: fixed !important;
    top: 20px;
    width: 100% !important;
    color: #000;
    z-index: 100;
    direction: rtl;
    font-family: "Cairo", serif;
    padding: 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    background-color: #f7f5fa2d;
    backdrop-filter: blur(10px);
    border: 1px solid #9b4df429;
    border-radius: 40px;
}

.menu-items {
    order: 2;
    display: flex;
    margin-right: 125px;
}

.logo img {
    order: 1;
    width: 150px;
    margin-top: 10px;
    color: #0A033C;
    margin-right: 25px;
}

.menu-items li {
    list-style: none;
    margin-left: 2.5rem;
    font-size: 20px;
}

.co {
    margin-right: 250px;
}

.navbar a {
    color: #0A033C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #6f1df4;
}

@media (max-width: 992px) {
    .container {
        max-width: 1363px;
        width: 100%;
        margin-right: 0px;
    }



    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
        width: 300px;
        top: 0px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 29px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #f7f5fa;
        border-right: 1px solid #6f1df4;
        height: 100vh;
        /* max-width: 300px; */
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        padding-right: 20px;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .logo img {
        position: absolute;
        right: 15px;
        font-size: 20px;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .navbar {
        width: 350px;
    }
}

/* ... existing styles ... */

.menu-items li {
    position: relative;
    /* لجعل الدروب مينيو يظهر بشكل صحيح */
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 20px;
}

.menu-items li:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px;
}

.dropdown li a {
    color: black;
    text-decoration: none;
    padding: 2px;
}

.dropdown li a:hover {
    border-bottom: 1px solid #6f1df4;

    transition: all 0.3s ease-in-out;
}

/* ... existing styles ... */
/* Start the first sec */
.containerr {
    background: url(/asset/images/ooorganize.svg);
    margin-top: 90px;
    width: auto;
    height: 600px;
    background-position: center;
    display: flex;
    justify-content: Center;
}

.image {
    position: relative;
    z-index: -9999;
}

.image img {
    width: 648px;
    height: 673px;
    position: absolute;
    top: -400px;
    right: 500px;


}

.text {
    margin-top: 120px;
    padding: 0;
    align-items: center;
    align-content: center;
    text-align: center;
}

.vector {
    width: 141px;
    position: absolute;
    top: -21px;
    right: 519px;
    transform: rotate(30deg);
}

.text img {
    width: 141px;
    position: absolute;
    top: 50px;
    left: 719px;
    z-index: -999;
}

.text h3 {
    font-size: 18px;
    background-color: #FFFFFF;
    color: #6f1df4;
    display: inline-block;
    width: 450px;
    padding: 4px;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: cairo;
}

.text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 450;
    color: #0A033C;
    font-family: direg;
    line-height: 1.4;
}

span {
    color: #6f1df4;
}

.text p {
    font-size: 25px;
    width: 800px;
    color: #5D5A6F;
    font-family: "Cairo", serif;
    margin-top: 30px;

}

.text button {
    background-color: #6f1df4;
    width: 311px;
    height: 50px;
    margin-top: 20px;
    border: none;
    border-radius: 60px;
    color: #FFFFFF;
    font-size: 24px;
    font-family: "Cairo", serif;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.text button:hover {
    background-color: #3b25bf;
}

.online button:hover {
    background-color: #3b25bf;
}

/* responsive the first section */

@media (max-width: 992px) {
    .co {
        margin-right: 0px;
    }

    .text h3 {
        font-size: 20px;
        background-color: #FFFFFF;
        color: #6f1df4;
        display: inline-block;
        width: 500px;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        margin-bottom: 30px;
        font-weight: 400;
        font-family: "Cairo", serif;
    }

    .text {
        margin-top: 150px;
        padding: 40px;
        align-items: center;
        align-content: center;
    }

    .image img {
        width: 448px;
        height: 473px;
    }

    .text img {
        width: 141px;
        position: absolute;
        top: 30px;
        left: 619px;
        z-index: -999;
    }

    .text h1 {
        font-size: 55px;
        margin-bottom: 20px;
        font-weight: 450;
        color: #0A033C;
        font-family: direg;
        line-height: 1;
    }

    .text p {
        font-size: 20px;
        color: #5D5A6F;
        width: 700px;
        font-family: "Cairo", serif;
        margin-top: 30px;
    }

    .text button {
        background-color: #9C4DF4;
        width: 311px;
        height: 40px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
}

@media (max-width: 768px) {
    .containerr {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .co {
        margin-right: 0px;
    }

    .text h3 {
        font-size: 15px;
        color: #6f1df4;
        display: inline-block;
        width: 300px;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        margin-bottom: 10px;
        font-weight: 400;
        font-family: "Cairo", serif;
    }

    .text {
        margin-top: 90px;
        padding: 40px;
        align-items: center;
        align-content: center;
    }

    .image img {
        width: 400px;
        height: 433px;
        margin-top: 50px;
    }

    .width p {
        width: 250px;
        margin: auto;
    }

    .text img {
        width: 84px;
        position: absolute;
        top: 64px;
        left: 460px;
        z-index: -999;
    }

    .text h1 {
        font-size: 45px;
        margin-bottom: 20px;
        font-weight: 450;
        color: #0A033C;
        font-family: direg;
        line-height: 1.6;
        width: 368px;
        text-align: center;
        /* margin-right: 200px; */
    }

    .text p {
        font-size: 15px;
        color: #5D5A6F;
        font-family: "Cairo", serif;
        margin-top: 30px;

    }

    .text button {
        background-color: #9C4DF4;
        width: 211px;
        height: 40px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
}



/*animation */
.fade-in-left,
.fade-in-right, .fade-in-top {
    opacity: 0;
    /* اجعل العنصر غير مرئي في البداية */
    transition: opacity 1s ease-in-out;
    /* إضافة انتقال سلس */
}

.fade-in-left.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInLeft 1s forwards;
}

.fade-in-right.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInRight 1s forwards;
}

.fade-in-top.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInRight 1s forwards;
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIntop {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*animation */
.fade-in-left,
.fade-in-right, .fade-in-top {
    opacity: 0;
    /* اجعل العنصر غير مرئي في البداية */
    transition: opacity 1s ease-in-out;
    /* إضافة انتقال سلس */
}

.fade-in-left.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInLeft 1s forwards;
}

.fade-in-right.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInRight 1s forwards;
}

.fade-in-top.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInRight 1s forwards;
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIntop {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*about sec*/
.about {
    display: flex;
    justify-content: space-between;
    padding-left: 70px;
    padding-right: 70px;
    font-family: direg;
    margin-top: 80px;
    position: relative;
}

.rotating-image {
    animation: rotate 5s linear infinite;
}

.rotating-image {
    width: 100px;
    position: absolute;
    top: 30px;
    right: -60px;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-text {
    margin-top: 10px;
    position: relative;
}

.about-text h3 {
    color: #6f1df4;
    font-family: cairo;
    margin-bottom: 10px;
}

.about-text h1 {
    color: #0A033C;
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: cairo;
    line-height: 1.5;
    width: 600px;

}

.about-text button {
    background-color: #6f1df4;
    width: 311px;
    height: 50px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-family: "Cairo", serif;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.about-text button:hover {
    background-color: #3b25bf;
}


.image-about img {
    width: 500px;
}

@media (max-width: 992px) {
    .about {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        font-family: direg;
        margin-top: 80px;
        position: relative;
    }

    .about-text h1 {
        color: #0A033C;
        font-size: 40px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .about-text p {
        color: #333;
        font-size: 20px;
        margin-bottom: 10px;
        font-family: cairo;
        line-height: 1.5;
        width: 600px;

    }

    .about-text button {
        background-color: #6f1df4;
        width: 311px;
        height: 50px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 24px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    .about-text p {
        width: 100%;
    }

    .text img {
        display: none;
    }

    .image img {
        display: none;
    }
}

@media (max-width: 768px) {
    .about {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        font-family: direg;
        margin-top: 80px;
        position: relative;
    }

    .about-text h1 {
        color: #0A033C;
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .about-text p {
        color: #333;
        font-size: 15px;
        margin-bottom: 10px;
        font-family: cairo;
        line-height: 1.5;

    }

    .about-text button {
        background-color: #6f1df4;
        width: 190px;
        height: 50px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 20px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }


    .text img {
        display: none;
    }

    .image img {
        display: none;
    }

    .image-about img {
        width: 250px;
        margin-top: 50px;
    }
}

/* services */
.services {
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.services h1 {
    font-size: 45px;
    color: #0A033C;
    font-family: direg;
    width: 750px;
    display: inline-block;
}

.services p {
    font-size: 16px;
    color: #5D5A6F;
    font-family: cairo;
    margin-top: 20px;
    display: inline-block;
    width: 700px;
}


@media (max-width: 992px) {


    .services h1 {
        font-size: 35px;
        color: #0A033C;
        font-family: dinbold;
        width: 300px;
        display: inline-block;
    }

    .services p {
        font-size: 10px;
        color: #5D5A6F;
        font-family: cairo;
        margin-top: 20px;
        display: inline-block;
        width: 300px;
    }

    .services {
        margin-top: 20px;
    }
}

.container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    font-family: cairo;
    row-gap: 0px;
}

.card {
    background-color: white;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.053);
    transition: all .5s ease;
    margin-top: 50px;
}

.card h3 {
    font-size: 20px;
    color: #0A033C;
    margin: 0;
    font-weight: 600;
}

.card p {
    margin: 10px 0;
    color: #5D5A6F;
}

.card .number img {
    font-size: 30px;
    font-weight: bold;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    /* border-radius: 50%; */
    margin: auto;
    margin-bottom: 10px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.about-text .arrow {
    width: 250px;
    position: absolute;
    right: 90px;
    bottom: -50px;
}

@media (max-width: 992px) {
    .about-text .arrow {

        display: none;
    }
}


.an {
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 500px;
}

.ana {
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 500px;
}

@media (max-width: 992px) {
    .an {
        align-items: center;
        text-align: center;
        justify-self: center;
        width: 400px;
        height: 400px;
    }

    .ana {
        align-items: center;
        text-align: center;
        justify-self: center;
        width: 300px;
        height: 400px;
    }
}

.container, .containerr {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* يمكن تعديل القيمة حسب الحاجة */
}

.containerr {
    margin-top: 120px;
}


.container3 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.member {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-right: 4px solid #6f1df4;
    position: relative;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: fill;
    margin: 0 auto 1rem;
    border: 3px solid #6f1df4;
    display: block;
}

.ceo-founder .member-image {
    width: 150px;
    height: 150px;
    border-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.member-header {
    text-align: center;
    margin-bottom: 1rem;
    font-family: dinbold;

}

.ar-name {
    font-size: 1.4rem;
    color: #333;
    font-weight: 700;
    margin-top: 0.5rem;
}

.en-name {
    font-size: 1.1rem;
    color: #6f1df4;
    margin: 0.5rem 0;
    text-transform: uppercase;
}

.position {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.description {
    font-size: 0.75rem;
    /* line-height: 1.6; */
    color: #444;
    text-align: center;
    font-family: cairo;
}

.ceo-founder {
    background: #6f1df4;
    color: white;
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
}

.ceo-founder .ar-name,
.ceo-founder .en-name,
.ceo-founder .description {
    color: white;
}

.ceo-founder .position {
    color: #e0e0e0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .member {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }
}

.member {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    overflow: hidden;
    cursor: pointer;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(111, 29, 244, 0.15);
}

.member::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: #6f1df4;
    transition: width 0.4s ease;
}

.member:hover::before {
    width: 100%;
}

.member-image {
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.member:hover .member-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.ceo-founder::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: #ffffff;
    transition: width 0.4s ease;
}


.ceo-founder {
    transition: all 0.4s ease;
}

.ceo-founder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(111, 29, 244, 0.3);
}

/* أنيميشن ظهور الأعضاء */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.member:nth-child(1) {
    animation-delay: 0.2s;
}

.member:nth-child(2) {
    animation-delay: 0.4s;
}

.member:nth-child(3) {
    animation-delay: 0.6s;
}

.member:nth-child(4) {
    animation-delay: 0.8s;
}

/* تأثيرات خاصة للـ CEO */
.ceo-founder::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.ceo-founder:hover::after {
    opacity: 1;
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .member:hover {
        transform: translateY(-5px);
    }

    .ceo-founder:hover {
        transform: scale(1.01);
    }
}

.hidden-members {
    display: none;
    opacity: 0;
    transition: all 0.6s ease;
}

.show-more {
    display: block;
    margin: 2rem auto;
    padding: 12px 35px;
    background: #6f1df4;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 29, 244, 0.3);
}

.show-more:hover {
    background: #5a15d1;
    transform: translateY(-2px);
}

.show-more.active {
    background: #4a10b0;
}

.visible {
    display: grid;
    opacity: 1;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-member {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.hidden-member.visible {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-flow: dense;
}

.teem {
    font-family: dinbold;
    padding-right: 80px;
    padding-bottom: 40px;

}


.contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: 780px;
    margin-right: auto;
    padding: 3rem 1rem;
    font-family: cairo;

}

.contact-intro>*+* {
    margin-top: 1rem;
}

.contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.contact-description {
    color: rgb(107 114 128);
}

.form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
    color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid #5a15d1;
    outline-offset: 2px;
}

.form-textarea {
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1.2rem;
    border: none;
    background-color: #5a15d1;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
    transition: all 0.6s ease;
}

.form-submit:hover {
    width: 100%;
    margin-top: 1.2rem;
    border: none;
    background-color: #3a0b8b;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
}

.containerf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: cairo;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    color: #333;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.section {
    margin: 10px;
    text-align: right;
}

.section h3 {
    margin: 5px 0;
    font-size: 16px;
    font-weight: normal;
    color: #555;
}

.section h3:hover {
    color: #5a15d1;
}

.social-media {
    text-align: center;
    margin: 20px 0;
}

.social-media a {
    color: #333;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #5a15d1;
}

.footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #777;
}



a {
    text-decoration: none;

}

.footer p {
    margin: 5px 0;
    text-decoration: none;
    border: none;

}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .section {
        margin: 10px 0;
        text-align: center;
    }

    .social-media {
        margin: 10px 0;
    }
}