:root {
    --main-title1: #1c3f7a;
    --main-title2: #0074d9;
    --text-shadow: none;
    --text: black;
    --section-bg: #eef2f5;
    --Raed: #636363;
    --post-bg: white;
    --post-shadow: rgba(0, 0, 0, 0.2);
    --post-shadow-hover: rgba(0, 0, 0, 0.3);
    --post-titles: #2c3e50;
    --event-card: #eef2f5;
    --event-card-border: black;
    --info-contact-post: white;
    --modal-major-container: rgba(0, 0, 0, 0.3);
    --modal-major: rgb(230, 230, 230);
    --time-section-bg: #f8f8f8;
    
}

[data-theme="dark"] {
    --main-title1: white;
    --main-title2: white;
    --text-shadow: white;
    --text: white;
    --Raed: #C7c7c7;
    --section-bg: #0a0e19;
    --post-bg: #0b0e16;
    --post-shadow: rgba(255, 255, 255, 0.2);
    --post-shadow-hover: rgba(255, 255, 255, 0.3);
    --post-titles: #5e9ad6;
    --event-card: #0A0E19;
    --event-card-border: white;
    --info-contact-post: #0e121d;
    --modal-major-container: rgba(210, 210, 210, 0.3);
    --modal-major: rgb(29, 35, 54);
    --time-section-bg: #0e121d;
}
 /* الخلفية المغبشة */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    font-family: "Tajawal", "Segoe UI", sans-serif;
}

  /* المحتوى */
.modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    direction: rtl;
    text-align: right;
    animation: fadeIn 0.4s ease;
}

.modal-content h2 {
    color: #0050d5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #333;
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 10px 0;
}

.modal-content strong {
    color: #0050d5;
}

.actions {
    text-align: center;
    margin-top: 1.5rem;
}

.modal-content button {
    background-color: #0050d5;
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover {
    background-color: #003fa8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  /* 📱 للجوال */
@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content button {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}

/* Greating */
#greating {
    margin-top: 90px;
}

#portal-greating {
    text-align: center;
    margin-top: 190px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 85px;
    background: linear-gradient(to right, var(--main-title1), var(--main-title2)); /* الأزرق الغامق إلى الفاتح */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#greating p {
    text-align: center;
    font-size: 30px;
    font-family:"Tajawal", sans-serif;
    color: var(--text);
}

#choosing-school {
    width: 90%;
    margin: auto;

}

#buttons-top {
    display: flex;
    flex-direction: row-reverse;
    width: 75%;
    margin: 30px auto 10px auto;
    justify-content: space-between;
    max-width: 900px;
}


#buttons-top a {
    width: 49%;
    cursor: pointer;
}



.greating-buttons {
    padding: 11px 50px;
    background: linear-gradient(-120deg, #103291, #146394);
    color: white;
    border: none;
    width: 100%;
    font-size: 21px;
    cursor: pointer;
    transition:  transform 0.3s ease, box-shadow 0.3s ease;
}

.greating-buttons:hover {
    background: none; /* smoother transition */
    background-color: #ff4b2b;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#edu-button {
    border-radius: 17px 17px 25px 17px;
}

#major-button-div {
    width: 75%;
    margin: auto;
    max-width: 900px;
}

#major-button {
    border-radius: 25px 17px 27px ;
}

#blackboard-button {
    border-radius: 25px 17px 17px ;
}

#a-library {
    width: 75%;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

#library-button {
    width: 100%;
    padding: 10px 0;
    border-radius: 7px 20px;
}

/* choosing major modal */
#modal-container-major {
    background-color: var(--modal-major-container);
    position: fixed;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
}

#modal-container-major.show {
    opacity: 1 !important;
    pointer-events: auto;
}

#modal-major {
    background-color: var(--modal-major);
    border-radius: 20px;
    color: var(--text);
    width: 90%;
    max-width: 1000px;
}

#modal-major-header {
    background-color: #005cbf;
    margin: 0 0 20px 0px;
    padding: 10px;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid var(--event-card-border);
}

#close-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

#close-btn:hover {
    color: #ff4b2b;
    transform: rotate(90deg);
}

#modal-major-body{

}

#modal-body-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
    text-align: center;
}

#modal-jic {
    grid-area: 1 / 1 / 2 / 2;
    padding: 20px;
}

#modal-jti {
    grid-area: 1 / 2 / 2 / 3;
    padding: 20px;
    border-left: 1px solid var(--text);
}

#modal-jti a, #modal-jic a {
    width: fit-content;
    margin: auto;
}

#modal-jic button:hover {
    background: linear-gradient(90deg, rgb(1, 102, 1), rgb(132, 213, 120));
    color: white;
    box-shadow: 1px 1px 10px;
}

#modal-jti button:hover {
    background: linear-gradient(90deg, rgb(25, 82, 147), rgb(120, 160, 213));
    color: white;
    box-shadow: 1px 1px 10px;
}

#modal-jti button, #modal-jic button {
    font-size: 17px;
    padding: 10px 20px;
    margin: 20px auto;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    
    box-shadow: 1px 1px 5px var(--text);
    
}

/* Last news section */

#last-news {
    width: 87%;
    margin: 90px auto;
    background-color: var(--section-bg);
    border-radius: 50px;
    padding: 20px 10px;
}

#last-news-title-container {
    width: 80%;
    margin: 40px auto;
    border-radius: 25px;
}

#last-news-title-container h1, #last-news-title-container p {
    text-align: center;
    margin: auto;
    color: var(--text) !important;
}

#last-news-title-container h1 {
    font-size: 40px ;
}

.subtitle {
    padding: 40px 70px 10px 0;
    font-size: 50px;
    text-align: right;
    color: var(--text);
}

.p-text {
    padding: 5px 70px 40px 0;
    font-size: 30px;
    text-align: right;
    max-width: 900px;
    margin-left: auto;
    color: var(--text);
    direction: rtl;
}



#last-news .subtitle {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 2.5em;
}

#last-news .p-text {
    color: var(--text);
    font-size: 1.2em;
    margin-bottom: 40px;
}

#news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    
}

.news-post {
    background: var(--post-bg);
    padding: 27px;
    border-radius: 30px;
    border: 1px solid var(--event-card-border);
    transition: transform 0.3s ease;
    color: var(--text);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
    min-height: 400px;
    text-align: right;
    margin-bottom: 10px;
}

.news-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--post-shadow-hover);
}

.news-post h2 {
    color: var(--post-titles);
    margin: 15px 0;
    font-size: 1.2em;
    text-align: right;
    line-height: 1.4;
    
}

.news-post p {
    color: var(--text);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.news-post button {
    background: linear-gradient(90deg, #103191, #106091);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 17px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-post button:hover {
    background: #0056b3;
}

/* تحسينات للعرض على الجوال */
@media (max-width: 768px) {
    #last-news .subtitle {
        font-size: 2em;
    }
    
    #news {
        grid-template-columns: 1fr;
        width: 80%;
        gap: 20px;
    }
    
    .news-post {
        min-height: 350px;
        padding: 20px;
    }
    
    .news-post h2 {
        font-size: 1.2em;
    }
}

/* Calender Section */
#calender-container {
    width: 90%;
    margin: 70px auto;
    color: var(--text);
    direction: rtl;
}

#calender-title-container p, #calender-title-container h1 {
    text-align: center;
    margin: 10px auto;
}

#calender-events {
    display: flex;
    width: 90%;
    margin: 10px auto 30px auto;
    justify-content: space-evenly;
    text-align: center;
}

.event-post {
    padding: 18px 30px;
    background-color: var(--event-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    width: 25%;
    max-width: 400px;
}

.active-today {
    background: linear-gradient(90deg, #103191, #106091);
    color: white;
}

.active-today .time-section {
    background-color: #0071bc;
}

.event-title {
    font-size: 25px;
    font-weight: 30px;
    margin-top: 25px;
}

.p-event-date {
    font-size: 18px;
    margin: 10px;
    color: var(--Raed);
}

.event-timer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
}

.time-section {
    background-color: var(--time-section-bg);
    width: 25%;
    padding: 10px;
    border-radius: 15px;
    margin: 5px;
}

.time-sectoin-day {
    border-radius: 15px 15px 15px 30px;
}

.time-sectoin-min {
    border-radius: 15px 30px 15px 15px;
}

.time-section h1 {
    font-size: 50px;
    font-weight: 100;
}

.time-day {
    border-left: none !important;

}

.time-hour {
    
}

.hour-string {
    
    
}

.day-string {
    
}


/* Tools Container */
#tools-cont {
    background-color: var(--section-bg);
    width: 90%;
    margin: 70px auto;
    border-radius: 50px;
    padding-bottom: 30px;
}

#tools-header p, #tools-header h1 {
    text-align: center;
    margin: 10px auto;
}

#tools-cards {
    display: flex;
    flex-direction: row-reverse;
    width: 90%;
    margin: 40px auto;
    justify-content: space-evenly;
}


.tool {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--event-card-border);
    padding: 20px;
    border-radius: 40px;
}

.tool img {
    width: 45%;
    height: 50%;
}

.tool h2 {
    color: var(--text);
    font-size: 27px;
    direction: rtl;
    text-align: center;
    margin-top: 35px;
}

.tool p {
    color: var(--text);
    direction: rtl;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.tool a {
    font-size: 20px;
    font-weight: 20px;
    font-family:"Tajawal";
    text-align: center;
    cursor: pointer;
    background: linear-gradient(90deg, #103191, #106091);
    width: 80%;
    margin: 10px auto;
    padding: 14px;
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
}

.tool a:hover {
    background: #106091;
    transform: translateY(-3px) scale(1.05);
}

/* Student library */
#student-cont {
    width: 90%;
    margin: 40px auto;
    border-radius: 30px;
}

#student-header p, #student-header h1 {
    text-align: center;
    margin: 10px auto;
}

#student-cards {
    display: flex;
    width: 88%;
    margin: 10px auto;
    justify-content: space-evenly;
}


.student-div {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--event-card-border);
    padding: 20px;
    border-radius: 40px;
    background-color: var(--section-bg);;
}

.student-div img {
    width: 55%;
    height: 55%;
}

.student-div h2 {
    color: var(--text);
    font-size: 27px;
    direction: rtl;
    text-align: center;
    margin-top: 35px;
}
.student-div p {
    color: var(--text);
    direction: rtl;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.student-div a {
    font-size: 20px;
    font-weight: 200;
    font-family:"Tajawal";
    text-align: center;
    cursor: pointer;
    background: linear-gradient(90deg, #103191, #106091);
    width: 80%;
    margin: 20px auto;
    padding: 14px;
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
}

.student-div a:hover {
    background: #106091;
    transform: translateY(-3px) scale(1.05);
}

#student-cont .arrow-btn.left {
    transform: scaleX(-1);
}

#student-cont .arrow-btn.right {
    transform: scaleX(-1);
}


/* Contact with us */
#contact-us {
    background-color: var(--section-bg);
    width: 87%;
    margin: 40px auto;
    text-align: center;
    border-radius: 50px;
}

#contict-title-container {
    color: var(--text);
}

#contict-title-container .subtitle {
    padding-top: 40px;
}

#contict-title-container .p-text {
    padding: 5px;
    margin: 10px auto 30px auto;
}

#contict-title-container .subtitle, #contict-title-container .p-text {
    text-align: center;
}

#contict-title-container h3 {
    padding: 5px;
    margin: 10px auto 30px auto;
    font-family:"Tajawal";
}

#out-information {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto 40px auto;
    padding-bottom: 80px;
    flex-wrap: wrap;
}

.member-card {
    border: 2px solid var(--event-card-border);
    border-radius: 40px;
    width: 25%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 30px;
}

.member-card img {
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
}

.member-card h4 {
    margin: 10px;
    font-size: 29px;
    color: var(--text);
}

.member-card p {
    margin: 5px auto;
    max-width: 90%;
    text-align: center;
    font-size: 18px;
    color: var(--text);
}

.member-card a {
    background: linear-gradient(90deg, #105f91, #103191);
    border-radius: 20px;
    width: 80%;
    margin: 5px auto;
    padding: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-family:"Tajawal";
    transition: all 0.3s ease-in;
    margin-top: 20px;
    margin-bottom: 20px;
}

.member-card a:hover {
    background: #105f91;
    transform: translateY(-3px) scale(1.05);
}


/* Major titles style */

.title-div {
    margin-top: 130px;
    width: 100%;
}

.title-hr {
    border-top: rgb(255, 255, 255) solid 2px;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    
}

.title-h1 {
    margin: 10px auto;
    text-align: center;
}


/* Majors list style */

.majors-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px auto;
    width: 90%;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
}

.major {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 18%;
    height: 90px;
    margin: 10px;
    padding: 5px;
    border: rgb(89, 89, 89) solid 2px;
    cursor: pointer;
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 10px;
    background: linear-gradient(90deg, #0004287f, #004e9257);
    transition: box-shadow 0.3s ease-in-out;
}

@media (max-width: 1430px) {
    .major {
        width: 25%;
    }
}

@media (max-width: 870px) {
    .major {
        width: 30%;
    }
}

@media (max-width: 700px) {
    .major {
        width: 50%;
    }
}

.major h3 {
    margin: 5px;
    color: rgb(255, 255, 255);
}

.major:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.401) ;
}


/* Making the page responsive */

/* ===== Slider Arrows (≤1235px) ===== */

.arrow-btn {
    display: none;
}
@media (max-width: 1235px) {
    .slider-wrapper {
        position: relative;
        width: 90%;
        margin: auto;
    }

    .arrow-btn {
        position: absolute;
        top: 50%;
        display: block;
        transform: translateY(-50%);
        background: var(--post-shadow);
        color: white;
        border: none;
        font-size: 2.5rem;
        padding: 1px 18px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .arrow-btn:hover {
        background: #ff4b2b;
        transform: translateY(-50%) scale(1.1);
    }

    .arrow-btn.left  { left: 10px; }
    .arrow-btn.right { right: 10px; }

    #news,
    #calender-events,
    #tools-cards,
    #student-cards {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px ;
        
    }

    #tools-cards {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0;
        justify-content: flex-start; /* important: remove space-evenly! */
    }

    #tools-cards::-webkit-scrollbar, #student-cards::-webkit-scrollbar {
        display: none;
    }

    .tool, .student-div {
        flex: 0 0 75%;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
        max-width: 400px;
    }

    .news-post,
    .event-post {
        flex: 0 0 85%;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
        max-width: 400px;
    }



    .news-post:hover,
    .event-post:hover,
    .tool:hover,
    .student-div:hover {
        transform: scale(1.03);
    }

    /* Hide scrollbar */
    #news::-webkit-scrollbar,
    #calender-events::-webkit-scrollbar,
    #tools-cards::-webkit-scrollbar,
    #student-cards::-webkit-scrollbar {
        display: none;
    }

    /* contact with us */
    .member-card h4 {
        font-size: 25px;
    }

    .member-card p {
        font-size: 15px;
    }
}

@media (max-width: 945px) {
    #out-information {
        justify-content: center;
    }

    .member-card {
        width: 29%;
        margin: 20px;
    }

    .member-card h4 {
        font-size: 20px;
    }

    .member-card p {
        font-size: 12px;
    }

    .member-card a {
        font-size: 15px;
    }
}



@media (max-width: 840px) {

    /* Greating */
    #portal-greating {
        font-size: 65px;
    }

    #greating p {
        font-size: 18px;
    }

    #edu-button {
        height: 100%;
    }

    .greating-buttons {
        font-size: 18px;
    }
    

    /* titles and pargraphes */
    .subtitle {
        font-size: 40px !important;
    }

    .p-text {
        font-size: 20px !important;
    }

    /* contact with Us */
    .member-card h4 {
        font-size: 15px;
    }

    .member-card p {
        font-size: 9px;
    }

    .member-card a {
        font-size: 10px;
    }
}

@media (max-width: 770px) {

    /* Greating */
    .greating-buttons {
        font-size: 15px;
    }

    /* sliders */
        /* news */
    .news-post div h2 {
        font-size: 18px;
    }

    .news-post div p {
        font-size: 14px;
    }

    .news-post button {
        font-size: 14px;
    }

    /* Contact with us */
    #out-information {
        width: 95%;
    }

    .member-card{
        width: 33%;
    }
}

@media (max-width: 700px) {

    /* Greating */
    .greating-buttons {
        font-size: 12px;
    }

    /* sliding */
    .event-post {
        flex: 0 0 70%;
    }
    
    .tool, .student-div {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {

    /* Greating */
    #buttons-top, #major-button-div {
        width: 90%;
    }

    #a-library {
        width: 90%;
    }

    /* slider */
    .tool, .student-div {
        flex: 0 0 70%;
    }

    .tool a, .student-div a {
        font-size: 15px;
    }

    .event-post {
        flex: 0 0 60%;
    }

    /* Contact with Us */
    #out-information {
        width: 100%;
    }

    .member-card h4 {
        font-size: 12px;
    }

    .member-card a {
        font-size: 9px;
        padding: 5px;
    }
}

@media (max-width: 570px) {

    /* Greating */
    .greating-buttons {
        font-size: 10px;
        padding: 9px;
    }

    /* sliders */
        /* news */
    .news-post img {
        height: 150px !important;
    }

        /* Calender events */
    .time-section h1 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {

    /* Greating */
    #portal-greating {
        font-size: 50px;
    }

    #greating p {
        font-size: 14px;
    }

    /* titles and pargraphes */
    .subtitle {
        font-size: 30px !important;
    }

    .p-text {
        font-size: 15px !important;
    }

    /* sliders */
    .slider-wrapper {
        width: 100%;
    }
        /* news */
    .news-post div h2 {
        font-size: 15px;
    }

    .news-post div p {
        font-size: 10px;
    }

    .news-post button {
        font-size: 10px;
    }
}

@media (max-width: 418px) {
    /* Contact with us */
    #out-information {
        align-items: center;
        justify-content: center;
    }

    .member-card {
        width: 60%;
    }
}

@media (max-width: 400px) {
    /* slider */
    .event-post {
        flex: 0 0 50%;
        max-height: 250px;
    }

        /* Calender events */
    .time-section h1 {
        font-size: 20px;
    }

    .event-timer{
        width: 90%;
    }

    .event-post {
        flex: 0 0 90%;
    }
}

@media (max-width: 360px) {

    /* Greating */
    #portal-greating {
        font-size: 40px;
    }

    #greating p {
        font-size: 10px;
    }

    /* titles and pargraphes */
    .subtitle {
        font-size: 22px !important;
    }

    .p-text {
        font-size: 12px !important;
    }
}



/* last news */



/* Search section  */



/* Feedback responsive */

@media (max-width: 1000px) {
    #web-features {
        margin: 20px auto 70px auto;
        width: 88%;
    }

    #highlights div h2 {
        font-size: 20px;
    }
}

@media (max-width: 900px) {

    #web-feedback nav .subtitle {
        font-size: 10px !important;
    }

    #web-feedback nav .p-text {
        font-size: 15px !important;
    }

    #web-features .subtitle {
        font-size: 35px ;
    }

    #highlights {
        flex-direction: column-reverse;
        margin: 40px auto;
        width: 90%;
        align-items: center;
    }

    #highlights div {
        width: 80%;
        border-radius: 20px;
    }

    
}

@media (max-width: 750px){
    #web-features .subtitle {
        font-size: 29px !important;

    }

    #web-features ul li {
        font-size: 17px;
        
    }

    #feedback-text2, #feedback-text{
        font-size: 17px;
    }

    #highlights div h2 {
        font-size: 15px;
        padding: 5px 20px;
    }
}

@media (max-width: 500px) {
    #feedback-text {
        font-size: 15px !important;
    }

    #feedback-h1 {
        font-size: 35px !important;

    }

    #web-features ul li {
        font-size: 15px;

    }
}

/* Contact with us section responsive */

