/* Hero Section */
:root {
    /*heading color*/
    --main-color: rgb(52, 52, 52);
    /*text color*/
    --secondary-color: rgb(116, 129, 130);
    --third-color: rgb(255, 255, 255);
    /* icon bg-color */
    --background-color1: #f7f7f7;
    /* btn bg-color */
    --background-color2: #1C1C1C;
    --bs-navbar-toggler-focus-width: 0;
}



body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}


a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}





/* start navbar*/
 
nav {
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.9) 0%, rgba(171, 165, 165, 0.68) 100%) !important;
    padding-top: 20px;
    margin-top: 0px;
    /* height: 100px; */
    justify-content: center;
    align-items: center;
    z-index: 9999;

}


.navbar-nav li a.active {
    color: #FF5C28 !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}

.langEn img {
    max-width: 100%;
    height: auto;
}

.langAr img {
    max-width: 100%;
    height: auto;
}


.navbar-nav li a.nav-link {
    color: rgb(255, 238, 242);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    transition: color 1s;
    align-items: center;
    font-family: "Poppins", sans-serif;

}

.navbar-nav li a:hover.nav-link {
    color: #b5aeb0;

}

.navbar-toggler {
    border: none;
    --bs-navbar-toggler-focus-width: 0;
}

.navbar-toggler :focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    border: none;
} */

/*end navbar*/



/* Ensure the header text is right-aligned in RTL mode */
header[dir="rtl"] .header-content h1 {
    text-align: right;
}

header[dir="rtl"] .header-content p {
    text-align: right;
}

/* Adjust the navbar items to ensure proper RTL alignment */
header[dir="rtl"] .navbar-nav {
    margin-right: 0;
}

header[dir="rtl"] .navbar-nav .nav-link {
    text-align: right;
}

/*end rtl header*/



/* Adjust the logos and language switcher */
/* header[dir="rtl"] .langEn, header[dir="rtl"] .langAr {
  display: inline-block;
  margin: 0 10px;
} */
/*end rtl header*/





.hero {
    position: relative;
    background-image: url('../../images/pexels-cottonbro-studio-3205570-1.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .content {
    max-width: 800px;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
}

.hero p2 {
    font-size: 3rem;
    color: #c94e1e;
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

/*
.hero .buttons {
    display: flex;
    justify-content: space-around;
}

.hero .buttons a {
    padding: 15px 30px;
    background-color: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .buttons a:hover {
    background-color: #c94e1e;
} */
.hero .buttons {
    display: flex;
    gap: 60px;
    /* Reduced gap for smaller spacing */
    justify-content: center;
    /* Aligns buttons to the left */
    margin-top: 20px;
}

.hero .buttons a {
    display: inline-block;
    padding: 10px 20px;
    /* Reduced padding */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

/* Contact Us Button (Solid) */
.hero .buttons a:first-child {
    background-color: #D44B1F;
    color: white;
}

/* Learn More Button (Transparent with border) */
.hero .buttons a:last-child {
    background-color: transparent;
    color: white;
    border: 2px solid rgb(216, 70, 2);
    backdrop-filter: blur(0px);
}

/* Hover Effect (Blurred Background) */
.hero .buttons a:last-child:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}


/* Mission & Vision Section */
.mission-vision {
    padding: 50px 20px;
    text-align: center;
}

.mission-vision .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #c94e1e;
}

.mission-vision p2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c94e1e;
}

.mission-vision-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mission-vision .left-column {
    flex: 1;
    text-align: left;
    font-size: 1.1rem;
}

.mission-vision .right-column {
    flex: 1;
}

.mission-vision .right-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Apply Now Section */
.apply-now {
    background-color: #f7b25b;
    /* Light Orange */
    padding: 30px 20px;
    text-align: center;
}

.apply-now .container {
    max-width: 1200px;
    margin: 0 auto;
}

.apply-now-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.apply-now .left-column {
    flex: 1;
    text-align: left;
    font-size: 1.2rem;
}

.apply-now .right-column {
    flex: 1;
    text-align: right;
}

.apply-now .apply-button {
    padding: 15px 30px;
    background-color: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.apply-now .apply-button:hover {
    background-color: #c94e1e;
}

/* Adjust text alignment for RTL */
html[lang="ar"] .content, html[lang="ar"] .mission-vision-content {
    text-align: right;
}

html[lang="ar"] .left-column, html[lang="ar"] .right-column {
    text-align: right;
}


/* Media Queries */

/* Hero Section */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .hero .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero .buttons a {
        padding: 12px 25px;
    }
}

/* Mission & Vision Section */
@media (max-width: 768px) {
    .mission-vision-content {
        flex-direction: column;
        gap: 30px;
    }

    .mission-vision .left-column {
        font-size: 1rem;
    }

    .mission-vision .right-column {
        max-width: 100%;
    }

    .mission-vision h2 {
        font-size: 2.5rem;
    }
}

/* Apply Now Section */
@media (max-width: 768px) {
    .apply-now-content {
        flex-direction: column;
        gap: 20px;
    }

    .apply-now .left-column {
        font-size: 1rem;
    }

    .apply-now .right-column {
        max-width: 100%;
        text-align: center;
    }

    .apply-now .apply-button {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {

    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero .buttons a {
        padding: 10px 20px;
    }

    /* Mission & Vision Section */
    .mission-vision h2 {
        font-size: 2rem;
    }

    .mission-vision .left-column {
        font-size: 0.9rem;
    }

    /* Apply Now Section */
    .apply-now .left-column {
        font-size: 0.9rem;
    }

    .apply-now .apply-button {
        font-size: 13px;
        padding: 12px 25px;
    }
}