@import url("https://fonts.googleapis.com/css?family=Baloo+Paaji|Open+Sans:300,300i,400,400i,600,600i,700,700i");

:root {
--color-primary: #1B3C73;
    --color-secondary: #A8C6E8;
    --color-bg: #f3efef;
    --heading-color: #ffd580;
    --color-text: #1E1E1E;
    --color-btn: #E2EAF4;
    --color-btn-text: #1B3C73;
    --heading-color-alt: rgb(255, 197, 82);
    --color-bg-side:rgba(27, 59, 115, 0.782) ;
    --color-overlay:rgba(27, 59, 115, 0.403);
    --color-header-bg:var(--color-primary);
}

/* Body */
body {
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    background: var(--color-primary);
    color: var(--color-btn);
    text-decoration: none;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-btn);
        color: var(--color-primary);
}

/* Links / Secondary Text */
a,
.secondary-text {
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    max-width: 1170px;
}

h2 {
    font-size: 250%;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-align: center;
}
h2 span {
    color: var(--color-bg);
}
ul{
    list-style: none;
}
/* -------------------------------
   Skip Link (Accessibility)
--------------------------------*/
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: var(--color-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    transition: top 0.3s ease;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.skip-link:focus {
    top: 10px;
    z-index: 100;
}
/* ======= Start Settings Box ======= */
#settings-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    background: var(--color-overlay);
    color: #fff;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1999;
    transition: 0.3s;
}
/* Left Box */
#settings-box {
    position: fixed;
    top: 0;
    left: -320px;
    /* Hidden */
    width: 300px;
    height: 100%;
    background: var(--color-bg);
    padding: 20px;
    transition: left 0.35s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
    z-index: 1998;
}
#settings-box.active {
    left: 0;
}
#settings-box h3 {
    margin-top: 0;
    color: var(--color-primary);
}
.option {
    margin-bottom: 15px;
}
.option-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.colors span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
    border: 2px solid #eee;
    transition: 0.3s;
}
.colors span:hover {
    transform: scale(1.2);
}
/*  Reset */
#reset-btn {
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 768px) {
    #settings-btn {
            display: none;
        }
}
/* ======= End Settings Box ======= */

/* ======= Start Nav Bullets =======*/
.nav-bullets {
    display: none;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        z-index: 1000;
}

.nav-bullets .bullet {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-primary);
    margin: 20px auto;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.nav-bullets .bullet:hover .tooltip {
    display: block;
}

.nav-bullets .bullet .tooltip {
    background-color: var(--color-primary);
    width: 120px;
    color: #FFF;
    padding: 8px 10px;
    position: absolute;
    right: 32px;
    top: -10px;
    text-align: center;
    cursor: default;
    pointer-events: none;
    display: none;
}

.nav-bullets .bullet .tooltip:before {
    content: '';
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent transparent var(--color-primary);
    height: 0;
    width: 0;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}
/* ===== End Nav Bullets =====*/

/* ===== Start Navigation Bar ===== */
/* Start Header */
header {
    position: absolute;
    top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: var(--color-overlay);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 97px;
    position: relative;
    padding: 0 15px;
}

header .container::after {
    content: '';
    position: absolute;
    height: 1px;
    background-color: var(--color-primary);
    bottom: 0;
    width: calc(100% - 30px);
    left: 15px;
}

header .logo img {
    height: 40px;
}

header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header nav .toggle-menu {
    color: white;
    font-size: 22px;
}

@media (min-width:767px) {
    header nav .toggle-menu {
        display: none;
    }
}

header nav ul {
    display: flex;
}

@media (max-width:767px) {
    header nav ul.links {
            display: none;
            flex-direction: column;
            width: 40%;
            background-color: var(--color-btn-text);
            position: absolute;
            top: 97px;
            left: 0;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        header nav ul.links.open {
                     display: flex;
         }
        
         header nav ul.links li a {
        padding: 40px 10px;
        border-bottom: 1px solid var(--heading-color-alt);
                    
         }
}

header nav .toggle-menu:hover+ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    background-color: var(--color-btn-text);
}

header nav ul li a {
    padding: 15px !important;
}

header nav ul li a {
    padding: 40px 10px;
    display: block;
    color: var(--color-btn);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: var(--heading-color-alt);
    border-bottom: 1px solid var(--heading-color-alt);
}

header nav .form {
    width: 40px;
    height: 30px;
    position: relative;
    margin-left: 30px;
    border-left: 1px solid white;
}

header nav .form i {
    color: white;
    position: absolute;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

/* End Header */
/* Start Landing  */
.landing {
    min-height: 100vh;
    background-color: #1f2021;
    background-image: url("../images/hero-bg1.jpg");
    background-size: cover;
    position: relative;
}

.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:var(--color-overlay);
}

.landing .text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 50px;
    background-color: var(--color-bg-side);
    color: white;
    display: flex;
    justify-content: flex-end;
}

.landing .text .content {
    max-width: 500px;
}

.landing .text .content h2 {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
        color: var(--color-bg);
}

.landing .text .content p {
    font-size: 14px;
    line-height: 2;
}

.landing .change-background {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd;
}
.landing .left {
    left: 30px;
}

.landing .right {
    right: 30px;
}
.landing .bullets {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.landing .bullets li {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landing .bullets li.active {
    background-color: #FFD580;
    border-color: #FFD580;
}

.landing .bullets li.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
/* Responsive */
@media (max-width: 991px) {
    .landing {
        min-height: 70vh;
    }

    .landing .text {
        width: 70%;
        padding: 30px;
    }

    .landing .text .content {
        max-width: 350px;
    }

    .landing .text .content h2 {
        font-size: 2rem;
    }

    .landing .text .content p {
        font-size: 0.95rem;
    }
}
@media (max-width: 767px) {
    .landing {
        min-height: 60vh;
    }

    .landing .text {
        width: 90%;
        padding: 5px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .landing .text .content {
        max-width: 100%;
        text-align: center;
    }

    .landing .text .content h1 {
        font-size: 1rem;
    }

    .landing .text .content p {
        font-size: 0.7rem;
    }

    .landing .change-background {
        display: none;
    }
}
/* ===== End Landing Section ===== */

/* =====  Start About Section ===== */
.about {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
}
.about .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.about .section-title p {
    font-size: 1.1rem;
    color: var(--color-text);
}
/* Content Layout */
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.about-image {
    max-width: 100%;
    height: auto;
    flex: 1 1 300px;
    max-width: 350px;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    vertical-align: middle;

}
.about-text {
    flex: 2 1 400px;
}
.about-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.about-text .about-intro {
    font-size: .9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.about-info {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.about-info ul {
    list-style: none;
    padding: 0;
}
.about-info ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.about-description {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-text {
        text-align: center;
        width: 100%;
    }
        .about-text .about-intro {
            text-align: left;
        }
   .about-image {
    flex: none;
        width: 150px;
        height: 150px;
        margin: 0 auto;
   }
    .about-image img {
        width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
}

    .about-info {
    display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .about-info ul {
        flex: 1 1 45%;
        max-width: 48%;
        text-align: left;
        
}
.about-info ul li {
    font-size: 0.85rem;
}
}
@media (max-width: 576px) {
    .about-text h3 {
        font-size: 1.4rem;
    }
    .about-text .about-intro,
    .about-description {
        font-size: 0.85rem;
    }
}
/* =====  End About Section ===== */

/* =====  Start Skills Section ===== */
.skills {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
}

.skills .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.skills .section-title h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.skills .section-title p {
    color: var(--color-text);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.skills-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.skill-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}
.skill-box:hover {
    transform: translateY(-6px);
}
.skill-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}
.progress-bar-wrap {
    background: #e5e5e5;
    height: 10px;
    border-radius: 6px;
    overflow: hidden;
}
.progress-bar {
    height: 10px;
    background-color: var(--color-secondary);
    border-radius: 6px;
    width: 0;
    transition: width 1s ease-in-out;
}
@media (max-width: 768px) {
    .skills {
        padding: 60px 0;
        min-height: auto;
    }

    .skills .section-title h2 {
        font-size: 1.8rem;
    }

    .skills-content {
        display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 10px;
            padding: 0 10px;

    }

    .skill-box {
        padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            background-color: #fff;
    }
        .skill-name {
            font-size: 0.85rem;
            margin-bottom: 5px;
        }
    
        .progress-bar-wrap {
            height: 8px;
            border-radius: 6px;
        }
    
        .progress-bar {
            height: 8px;
            border-radius: 6px;
        }
}

/* =====  End Skills Section ===== */

/* =====  Start Resume Sections ===== */
.resume-section {
    background-color: var(--color-bg);
    padding: 5px 10px;
}
.resume-section .section-title {
    text-align: center;
    margin-bottom: 5px;
}
.resume-section h2 {
    margin-bottom: 10px;
}
.resume-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.resume-section .section-title p {
    font-size: 1rem;
    color: var(--color-text);
}

/* Resume Grid */
.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.resume-column {
    display: flex;
    flex-direction: column;
}
.resume-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 20px;
}
.resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    /* padding-left: 20px; */
    border-left: 3px solid var(--color-primary);
    /* margin-bottom: 30px; */
    position: relative;
}
.resume-item h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}
.resume-item h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--color-btn-text);
}
.resume-item p {
    margin-bottom: 10px;
}
.resume-item ul {
    padding-left: 20px;
    list-style-type: disc;
}
.resume-item ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.resume-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0px;
    width: 14px;
    height: 14px;
    background: var(--color-bg);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .resume-item {
        padding-left: 15px;
    }
}
/* ======= End resume Section ======== */

/* ======= Start portfolio Section ======== */
.portfolio {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.portfolio p {
    padding-bottom: 20px;
    text-align: center;
}
.portfolio-filters {
    list-style: none;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
}
.portfolio-filters li {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    background: #f0f0f0;
    transition: 0.3s;
}
.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
    background: var(--color-primary);
    color: #fff;
}
.portfolio-grid {
    display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        justify-items: center;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}
.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}
.portfolio-item:hover .portfolio-info {
    opacity: 1;
}
.portfolio-info h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.portfolio-info p {
    font-size: 0.95rem;
    line-height: 1.4;
}
.portfolio-info a {
    color: #fff;
    margin: 10px 5px 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.portfolio-info a:hover {
    transform: scale(1.2);
}
/* Responsive */
@media(max-width:992px) {
    .portfolio-item {
        grid-template-columns: repeat(3, 1fr);
        /* width: calc(50% - 15px); */
    }
}

@media(max-width:576px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .portfolio-item {
        width: 100%;
    }
}
/* ======= End Portfolio Section ======== */

/* ======= Start Service Section ======== */
.what-section {
    padding: 100px 20px;
    background: var(--color-bg);
}
.container-sev {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.content-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.desc {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}
.content-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-secondary);
    transition: 0.3s;
}
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}
.box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.box p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 15px;
}
/* RESPONSIVE */
@media (max-width: 850px) {
    .container-sev {
        grid-template-columns: 1fr;
    }

    .content-right {
        margin-top: 20px;
    }
}
/* ======= End Services Section ======== */

/* ======== Start Testimonials ==========*/
.clearfix {
    clear: both;
}
.testimonials {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.testimonials h2 span{
    background-color: var(--color-overlay);
    
}
.testimonials:before {
    content: '';
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-primary);
    height: 100%;
}
.testimonials:after {
    content: '';
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color-secondary);
    height: 100%;
}
.testimonials h2 {
    font-weight: bold;
    font-size: 30px;
    color: #FFF;
    margin: 0 0 30px;
    text-align: left;
    position: relative;
    z-index: 2;
    background-color: var(--color-overlay);
    width: 50%;
}
@media (max-width: 767px) {
    .testimonials h2 {
        font-size: 200%;
         text-align: center;
        background: none;
    }
        .testimonials h2 span {
        background: none;
        color: var(--color-primary);
        }
        .testimonials:before,
        .testimonials:after {
            display: none;
        }
}
.testimonials .ts-box {
    position: relative;
    z-index: 2;
    width: calc(98% / 3);
    float: left;
    background-color: #FFF;
    padding: 20px;
}
@media (max-width: 767px) {
    .testimonials .ts-box {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}
.testimonials .ts-box:not(:last-of-type) {
    margin-right: 1%;
}
.testimonials .ts-box>p {
    margin: 0 0 20px;
    line-height: 1.5;
    font-size: 15px;
    color: #707070;
    font-style: italic;
}
.testimonials .ts-box .person-info {
    overflow: hidden;
}
@media (max-width: 991px) {
    .testimonials .ts-box .person-info {
        text-align: center;
        overflow: visible;
    }
}
.testimonials .ts-box .person-info img {
    float: left;
    border-radius: 50%;
    margin-right: 20px;
}
@media (max-width: 991px) {
    .testimonials .ts-box .person-info img {
        float: none;
        margin-right: 0;
    }
}
.testimonials .ts-box .person-info h4 {
    margin: 14px 0 10px;
}
.testimonials .ts-box .person-info p {
    color: #707070;
    margin: 0;
}
/* ====== End Testimonials ====== */

/* ====== Start Contact Us ======*/
.contact {
    padding: 50px 20px;
    background: #f9f9f9;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.contact-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-form,
.contact-map {
    flex: 1 1 400px;
    min-width: 300px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}
.contact-form button {
    padding: 12px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--color-secondary);
}
.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
/* ===== Responsive ===== */
@media (max-width: 991px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form,
    .contact-map {
        width: 100%;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 15px;
    }

    .contact-map {
        height: 300px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .contact-form button {
        padding: 10px;
        font-size: 0.9rem;
    }
}
/* ======= End Contact Us ======== */

/* ======= Start Footer  ======== */
.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 10px;
}
.footer .social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex: 1 1 100%;
}
.footer .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color:var(--color-secondary);
    color:var(--color-primary);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer .social-links a:hover {
    background-color: var(--color-btn);
    color: var(--color-primary);
    transform: scale(1.1);
}
@media (max-width: 600px) {

    .footer p,
    .footer .social-links {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer .social-links {
        margin-top: 10px;
    }
}
/* ======= End Footer ======== */

/* ===== Scroll Top ===== */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 10px 15px;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: background 0.3s, transform 0.3s;
}
.scroll-top:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== Preloader ===== */
/* ===== Preloader Overlay ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg, #ffffff);
    /* خلفية متوافقة مع الموقع */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner */
#preloader .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--color-primary, #0D1B2A);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    #preloader .spinner {
        width: 40px;
        height: 40px;
        border-width: 4px;
    }
}


/* Start Grid System */
@media (min-width: 576px) {

    /* Small Devices => Landscape Phones */
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    /* Medium Devices => Tablets */
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    /* Desktops */
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    /* Large Screens */
    .container {
        max-width: 1140px;
    }
}
/* End Grid System */