/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
}

.arabic-text {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
}

.english-text {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
    url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Add crowd silhouette effect */
.hero-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 95%, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Portfolio Section */
.portfolio-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 2rem;
    font-size: 3.5rem;
    font-weight: 700;
}

.portfolio-text {
    display: flex;
    flex-direction: column;
}

.portfolio-line {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    letter-spacing: 2px;
    justify-content: center;
}
.portfolio-line .text-white{
    letter-spacing: 2px;
}

.text-white {
    color: white;
}

.green-dot {
    width: 30px;
    height: 30px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}

.green-line {
    width: 65px;
    height: 23px;
    background-color: #28a745;
    display: inline-block;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.green-line-ar {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.year-text {
    color: white;
    letter-spacing: 2px;
}



.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #28a745, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
}

/* Events Section */
.events-section {
    background: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.events-content {
    padding: 4rem 3rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #28a745;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.event-features {
    margin-bottom: 3rem;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #ccc;
}

.crowd-image-placeholder {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    position: relative;
    overflow: hidden;
}

.crowd-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.crowd-image-placeholder i {
    margin-bottom: 1rem;
    color: #28a745;
}

.image-description {
    margin-top: 1rem;
    text-align: center;
    color: #999;
}

/* About Ghadarah Section */
.about-ghadarah-section {
    background: white;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-ghadarah-section .about-content {
    padding-right: 3rem;
}

.bowl-container-mission{
    left: -7%;
    bottom: -15%;
}

.bowl-img-mission{
    width: 500px;
}

.section-title {
    background: url('assets/shade.png') no-repeat center center;
    background-size: cover;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 50px;
    color: white;
    height: 7rem;
    line-height: 1.6;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px solid white;
}

.arabic-text-content {
    direction: rtl;
    text-align: right;
}

.arabic-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

.highlight-text {
    display: flex;
    align-items: center;
    margin-top: 6rem;
    text-align: justify;
}

.arabic-text-content .highlight-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 1rem;
}

.highlight-text .green-line{
    width: 300px;
}

/* Bowl Container */
.bowl-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.bowl-background {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bowl-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 650px;
    background: url('assets/colors.svg') no-repeat center center;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.bowl-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bowl-img {
    width: 1100px;
    height: 1100px;
    position: relative;
    left: 15%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.about-content p .green-text{
    background-color: #28a745;
    font-size: 2rem;
    color: #000;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
}

/* Contact Section */
.contact-section {
    background: #333;
    color: white;
    padding: 5rem 0;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
}

.form-control::placeholder {
    color: #ccc;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #28a745;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h5,
.footer-social h5 {
    color: #28a745;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #28a745;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #28a745;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #666;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #218838, #1ea085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .events-content {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: 100vh;
    }
    
    .crowd-image-placeholder {
        height: 50vh;
        min-height: 400px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-container {
        max-width: 500px;
    }
    
    .logo-image {
        max-height: 150px;
    }
    
    .portfolio-section {
        width: 100%;
        margin-top: 2rem;
    }
    
    .portfolio-line {
        font-size: 1.5rem;
    }
    
    .year-text {
        font-size: 1.5rem;
    }
    
    .about-ghadarah-section .about-content {
        padding-right: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 30px;
        height: 5rem;
    }
    
    .arabic-text-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .highlight-text {
        margin-top: 3rem;
    }
    
    .highlight-text .green-line {
        width: 200px;
    }
    
    .bowl-img {
        width: 800px;
        height: 800px;
        left: 10%;
    }
    
    .bowl-background::before {
        width: 500px;
        height: 500px;
        left: 60%;
    }
    
    .bowl-background {
        width: 350px;
        height: 350px;
    }
    
    .bowl-background::before {
        width: 300px;
        height: 300px;
    }
    
    .bowl-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .events-content {
        padding: 1.5rem 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .logo-container {
        max-width: 400px;
    }
    
    .logo-image {
        max-height: 120px;
    }
    
    .portfolio-section {
        width: 100%;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .portfolio-line {
        font-size: 1.2rem;
    }
    
    .year-text {
        font-size: 1.2rem;
    }
    
    .green-dot {
        width: 10px;
        height: 10px;
    }
    
    .green-line {
        width: 30px;
        height: 2px;
    }
    
    .about-ghadarah-section {
        padding: 3rem 0;
    }
    
    .about-ghadarah-section .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 20px;
        height: 4rem;
        text-align: center;
    }
    
    .arabic-text-content {
        text-align: center;
    }
    
    .arabic-text-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .highlight-text {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .highlight-text .green-line {
        width: 150px;
    }
    
    .bowl-img {
        width: 600px;
        height: 600px;
        left: 5%;
    }
    
    .bowl-background::before {
        width: 400px;
        height: 400px;
        left: 50%;
    }
    
    .bowl-background {
        width: 300px;
        height: 300px;
    }
    
    .bowl-background::before {
        width: 250px;
        height: 250px;
    }
    
    .bowl-image {
        width: 200px;
        height: 200px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .logo-container {
        max-width: 300px;
    }
    
    .logo-image {
        max-height: 100px;
    }
    
    .portfolio-section {
        width: 100%;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-line {
        font-size: 1rem;
    }
    
    .year-text {
        font-size: 1rem;
    }
    
    .green-dot {
        width: 8px;
        height: 8px;
    }
    
    .green-line {
        width: 25px;
        height: 2px;
    }
    
    .about-ghadarah-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 15px;
        height: 3rem;
    }
    
    .arabic-text-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .highlight-text {
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .highlight-text .green-line {
        width: 100px;
        margin-bottom: 0.5rem;
    }
    
    .bowl-img {
        width: 400px;
        height: 400px;
        left: 0;
    }

    .bowl-img-mission{
        width: 400px;
        height: 400px;
    }

    .bowl-container-mission{
        left: 0;
        bottom: 0;
    }
    
    .bowl-background::before {
        width: 300px;
        height: 300px;
        left: 40%;
    }
    
    .bowl-background {
        width: 250px;
        height: 250px;
    }
    
    .bowl-background::before {
        width: 250px;
        height: 250px;
    }
    
    .bowl-image {
        width: 150px;
        height: 150px;
    }
    
    /* New Sections Responsive */
    .section-number {
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .arabic-vision,
    .arabic-message,
    .arabic-values,
    .arabic-services,
    .arabic-why,
    .arabic-customers {
        font-size: 1.5rem;
    }
    
    .mission-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-logo .ghadarah-logo .arabic-logo {
        font-size: 2rem;
    }
    
    .mission-logo .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .mission-logo .logo-circle::before {
        width: 45px;
        height: 45px;
    }
    
    .mission-quote {
        padding: 2rem;
    }
    
    .mission-quote p {
        font-size: 1rem;
    }
    
    .vertical-mission-text {
        font-size: 1.2rem;
    }
    
    .green-text,
    .white-text {
        font-size: .9rem;
    }
    
    .mission-section {
        padding: 3rem 0;
    }
    
    .mission-logo .ghadarah-logo .arabic-logo {
        font-size: 1.8rem;
    }
    
    .mission-logo .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .mission-logo .logo-circle::before {
        width: 35px;
        height: 35px;
    }
    
    .mission-quote {
        padding: 1.5rem;
    }
    
    .mission-quote p {
        font-size: 0.9rem;
    }
    
    .vertical-mission-text {
        font-size: 1rem;
    }
    
    .decorative-circle {
        width: 40px;
        height: 40px;
    }
    
    .vision-quote,
    .message-text {
        padding: 1.5rem;
    }
    
    .vision-quote p,
    .message-text p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .values-list {
        padding: 1.5rem;
    }

    .services-list {
        padding: 1.5rem;
    }
    
    .service-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .service-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
    
    .why-point {
        padding: 1rem;
        gap: 1rem;
    }
    
    .point-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .why-point p {
        font-size: 1rem;
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customer-logo img {
        width: 80px;
        height: 80px;
    }
    
    /* Footer Responsive */
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-img {
        width: 100px;
    }
    
    .footer-arabic-brand {
        font-size: 1.5rem;
    }
    
    .footer-english-brand {
        font-size: 0.9rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .logo-container {
        max-width: 300px;
    }
    
    .logo-image {
        max-height: 100px;
    }
    
    .portfolio-section {
        width: 100%;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-line {
        font-size: 1rem;
    }
    
    .year-text {
        font-size: 1rem;
    }
    
    .green-dot {
        width: 8px;
        height: 8px;
    }
    
    .green-line {
        width: 25px;
        height: 2px;
    }
    
    .about-ghadarah-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 15px;
        height: 3rem;
    }
    
    .arabic-text-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .highlight-text {
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .highlight-text .green-line {
        width: 100px;
        margin-bottom: 0.5rem;
    }
    
    .bowl-img {
        width: 400px;
        height: 400px;
        left: 0;
    }

    .bowl-img-mission{
        width: 400px;
        height: 400px;
    }

    .bowl-container-mission{
        left: 0;
        bottom: 0;
    }
    
    .bowl-background::before {
        width: 300px;
        height: 300px;
        left: 40%;
    }
    
    .bowl-background {
        width: 250px;
        height: 250px;
    }
    
    .bowl-background::before {
        width: 250px;
        height: 250px;
    }
    
    .bowl-image {
        width: 150px;
        height: 150px;
    }
    
    /* New Sections Responsive */
    .section-number {
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .arabic-vision,
    .arabic-message,
    .arabic-values,
    .arabic-services,
    .arabic-why,
    .arabic-customers {
        font-size: 1.5rem;
    }
    
    .mission-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-logo .ghadarah-logo .arabic-logo {
        font-size: 2rem;
    }
    
    .mission-logo .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .mission-logo .logo-circle::before {
        width: 45px;
        height: 45px;
    }
    
    .mission-quote {
        padding: 2rem;
    }
    
    .mission-quote p {
        font-size: 1rem;
    }
    
    .vertical-mission-text {
        font-size: 1.2rem;
    }
    
    .green-text,
    .white-text {
        font-size: .9rem;
    }
    
    .mission-section {
        padding: 3rem 0;
    }
    
    .mission-logo .ghadarah-logo .arabic-logo {
        font-size: 1.8rem;
    }
    
    .mission-logo .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .mission-logo .logo-circle::before {
        width: 35px;
        height: 35px;
    }
    
    .mission-quote {
        padding: 1.5rem;
    }
    
    .mission-quote p {
        font-size: 0.9rem;
    }
    
    .vertical-mission-text {
        font-size: 1rem;
    }
    
    .decorative-circle {
        width: 40px;
        height: 40px;
    }
    
    .vision-quote,
    .message-text {
        padding: 1.5rem;
    }
    
    .vision-quote p,
    .message-text p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .values-list {
        padding: 1.5rem;
    }

    .services-list {
        padding: 1.5rem;
    }
    
    .service-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .service-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
    
    .why-point {
        padding: 1rem;
        gap: 1rem;
    }
    
    .point-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .why-point p {
        font-size: 1rem;
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customer-logo img {
        width: 80px;
        height: 80px;
    }
    
    /* Footer Responsive */
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-img {
        width: 100px;
    }
    
    .footer-arabic-brand {
        font-size: 1.5rem;
    }
    
    .footer-english-brand {
        font-size: 0.9rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Logo image hover effect */
.logo-image {
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Hover effects */
.feature-item:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Loading animation */
.hero-section {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== NEW SECTIONS STYLING ===== */

/* Common Section Styles */
.section-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 10rem;
    font-weight: bold;
    color: white;
    z-index: 10;
}

/* Vision Section */
.vision-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg_section.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.customer-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/customer_bg.svg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.why-background{
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/why_bg.svg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.vision-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.vision-content {
    color: white;
    padding: 2rem;
}

.vision-title {
    margin-bottom: 3rem;
}

.arabic-vision {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.english-vision {
    display: flex;
    align-items: baseline;
    letter-spacing: 1px;
}

.green-text {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
}

.white-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
}

.green-underline {
    width: 60px;
    height: 3px;
    background-color: #28a745;
    margin-left: 1rem;
}

.vision-quote {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-mark {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: #28a745;
    font-weight: bold;
}

.vision-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    direction: rtl;
    text-align: right;
}

.vision-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ghadarah-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.ghadarah-logo .arabic-logo {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
}

.ghadarah-logo .english-logo {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    letter-spacing: 2px;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: url('assets/logo-circle.png') no-repeat center center;
    background-size: contain;
}

/* Mission Section */
.mission-section {
    background: white;
    min-height: 100vh;
    padding: 5rem 0;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.02) 0%, transparent 50%);
}

.mission-content {
    padding: 2rem;
    position: relative;
}

.mission-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.custom-fieldset {
    border: 4px solid #27aa4a !important;
    border-radius: 15px;
    padding: 0 1rem;
    position: relative;
  }
  
  /* Legend alignment */
.custom-legend {
    float: right; /* move it to the right */
    width: auto;
    margin-right: 15px; /* add some spacing */
    padding: 0 10px;
    background: #fff; /* white background to not "cut" the border */
    border: none; /* remove default border */
}
  
  /* Paragraph style */
.custom-fieldset p {
    text-align: justify;
    font-size: 1.5rem;
    direction: rtl;
    font-weight: 500;
}
  

.mission-logo .ghadarah-logo {
    text-align: left;
}

.mission-logo .ghadarah-logo .arabic-logo {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
}

.mission-logo .ghadarah-logo .english-logo {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    letter-spacing: 2px;
}

.mission-logo .logo-circle {
    width: 80px;
    height: 80px;
    background: conic-gradient(from 0deg, #ff6b35 0deg 120deg, #28a745 120deg 240deg, #007bff 240deg 360deg);
    border-radius: 50%;
    position: relative;
}

.mission-logo .logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.mission-quote {
    position: relative;
    background: rgba(40, 167, 69, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    margin-bottom: 2rem;
}

.mission-quote .quote-mark {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: #28a745;
    font-weight: bold;
}

.mission-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    direction: rtl;
    text-align: right;
    margin: 0;
}

.decorative-elements {
    position: relative;
    margin-top: 2rem;
}

.decorative-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
}

.decorative-circle.orange {
    background: #ff6b35;
    top: 0;
    left: 0;
}

.decorative-circle.green {
    background: #28a745;
    top: 20px;
    left: 30px;
}

.decorative-circle.blue {
    background: #007bff;
    top: 40px;
    left: 60px;
}

.vertical-mission-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #28a745;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.vertical-mission-text span {
    margin: 0.5rem 0;
}

/* Message Section */
.message-section {
    position: relative;
    background: #fff;
    min-height: 100vh;
    overflow: hidden;
}

.message-section .message-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg_message.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* .message-section .message-visual .message-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #56a668
} */

.message-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff
}

.message-content {
    color: white;
    padding: 2rem;
}

.message-title {
    margin-bottom: 3rem;
}

.arabic-message {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.english-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    direction: rtl;
    text-align: right;
}

.message-visual {
    height: 100%;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Values Section */
.values-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
}

.values-background {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/values-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.values-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
}

.values-content {
    color: white;
    padding: 2rem;
}

.values-title {
    margin-bottom: 3rem;
}

.arabic-values {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.english-values {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    direction: rtl;
}

.values-visual {
    height: 100%;
    background: url('assets/traditional-person.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
}

/* Services Section */
.services-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
}

.services-background {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg_services1.svg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.services-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
}

.services-content {
    color: white;
    padding: 2rem;
}

.services-title {
    margin-bottom: 3rem;
}

.arabic-services {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.english-services {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-list {
    position: relative;
    background: #74c88b;
    border-radius: 40px;
    padding: 2rem;
    z-index: 1; /* keep content above pseudo-border */
}

.values-list {
    position: relative;
    background: #579063d1;
    border-radius: 40px;
    padding: 6rem 3rem;
    z-index: 1; /* keep content above pseudo-border */
}

.values-item-text{
    font-size: 1.3rem;
    font-weight: 400px;
    line-height: 1rem;
    margin-top: 2rem;
}

.values-list > .col-md-3 {
    position: relative;
}

/* vertical line */
.values-list > .col-md-3:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 3px;
    height: 75%;
    background-color: #fff /* white line, slightly transparent */
}

/* hide the vertical lines on small screens */
@media (max-width: 767.98px) {
    .values-list > .col-md-3::after {
        display: none;
    }
}


/* create a pseudo-border */
.services-list::before {
    content: "";
    position: absolute;
    top: -4px;  /* adjust for desired offset */
    left: -4px; /* adjust for desired offset */
    width: 100%;
    height: 100%;
    border: 4px solid #000000;
    border-radius: 40px;
    transform: translate(17px, 13px); /* move the border without moving content */
    z-index: -1; /* behind content */
    pointer-events: none; /* ignore clicks */
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #000;
    border-radius: 15px;
}

.service-number {
    background: #d42f2f;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-icon {
    color: #dc3545;
}

.service-text {
    flex: 1;
    font-size: .8rem;
    color: white;
    direction: rtl;
    text-align: right;
}

.services-visual {
    height: 100%;
    background: url('assets/services-bowl.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
}

/* Why Ghadarah Section */
.why-ghadarah-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
}

.why-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
}

.why-content {
    color: white;
    padding: 2rem;
}

.why-title {
    margin-bottom: 3rem;
}

.arabic-why {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.english-why {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-points {
    margin-top: 3rem;
    margin-right: -70px; /* pull points into the image column */
    text-align: right;   /* keep Arabic aligned right */
    position: relative;
    z-index: 2;    
}

@media (max-width: 991.98px) {
    .why-points {
      margin-right: 0; /* reset on tablets/phones */
    }
  }

.why-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    justify-content: end;
}

.point-number {
    background: #28a745;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2.2rem;
    flex-shrink: 0;
    border: 6px solid white;
}

.why-point p {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #000;
    direction: rtl;
    text-align: right;
    margin: 0px;
    font-weight: 500;
}

.why-visual{
    height: 100%;
    position: relative;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Customers Section */
.customers-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
}

.customers-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #fff;
}

.customers-content {
    color: white;
    padding: 3rem 0;
}

.customers-content .green-line{
    width: 120px;
    height: 25px;
}

.customers-title {
    margin-bottom: 3rem;
    display: flex;
    align-items: baseline;
}

.arabic-customers {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 10px;
}

.english-customers {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customers-grid {
    margin-top: 7rem;
    margin-bottom: 7rem;
    justify-content: center;
}

.customer-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.customer-logo:hover {
    transform: translateY(-5px);
}

.customer-logo img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.arabic-name {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.english-name {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 400;
}

.customers-visual {
    height: 100%;
    background: url('assets/drum-players.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
}

/* ===== FOOTER SECTION ===== */

.footer-section {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

/* Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-arabic-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-english-brand {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

/* Footer Headings */
.footer-heading {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #28a745;
}

/* Contact Information */
.footer-contact p {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #28a745;
    width: 16px;
}

/* Social Links */
.footer-social h6 {
    color: #28a745;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #28a745;
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright-text {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
    direction: rtl;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #28a745;
}


        /* Your existing CSS styles here */

        /* New styles for language dropdown */
        .language-dropdown .dropdown-toggle::after {
            display: none;
        }

        .language-dropdown .dropdown-menu {
            min-width: 6rem;
            text-align: center;
        }

        .language-dropdown .dropdown-item {
            text-align: center;
            padding: 0.5rem 1rem;
        }

        .language-dropdown .dropdown-item.active {
            background-color: #198754;
            color: white;
        }

        .language-dropdown .dropdown-item:hover:not(.active) {
            background-color: #f8f9fa;
            color: #000;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            margin-right: 5px;
            display: inline-block;
            vertical-align: middle;
        }


@media (max-width: 575.98px) {
    .arabic-vision, .arabic-message, .arabic-values, .arabic-services, .arabic-why, .arabic-customers {
        font-size: 1.5rem;
    }
}