* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-weight: 300;
}

:root {
    --primary-color: #030343;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

img {
    object-fit: contain;
}

.welcome-list {
    width: 80%;
    margin: auto;

    @media (max-width: 768px) {
        width: 90%;
    }
}

.w-section-number {
    font-family: 'Abril Fatface', cursive;
    font-size: 60px;
    text-align: center;
    margin-bottom: 1rem;
     padding: 0 10px;
}

.w-section-title {
    font-family: 'Abril Fatface', cursive;
    font-size: 35px;
    text-align: center;
    margin-bottom: 1rem;
     padding: 0 10px;
}

.w-action-wrapper {
    width: 100%;
    padding-left: 50%;
    
   
}


a.w-action-read-more {
    display: block;
    background-color: #030343;
    color:  #50ccf2;
    padding: 10px;
    border-radius: 20px;
    width: 140px;
    text-align: center;
    

    @media (max-width: 768px) {
        margin: auto;

    }
}

/* Custom Components */
.CustomButton {

    background-color: #66b5ee;
    color: white;
    padding: 10px 60px;
    border-radius: 20px;
    margin-top: 30px;
    display: block;
    width: fit-content;
}

/* ===== Hero Section ===== */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60vh;
    position: relative;
}

/*.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}*/

.hero-section .hero-image {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    opacity: 0.8;
}

.hero-text-wrapper {
    margin: 10%;
    max-width: 60%;
    position: relative;
    z-index: 30;
    text-align: left;
}

.hero-title {
    font-size: 48px;
    color: #66b5ee;
    margin: 0 0 20px 0;
    font-family: 'Bebas Neue', sans-serif;
    text-align: left;
    padding-left: 1rem;
}

.hero-text {
    position: relative;
    font-size: 22.4px;
    color: white;
    line-height: 1.5;
    font-family: 'Bebas Neue', sans-serif;
    height: 80px;
    white-space: nowrap;
}

/* ===== Responsive للموبايل ===== */
@media (max-width: 768px) {
    .hero-text {
        width: 100%;
        /* ياخذ عرض الشاشة */
        height: auto;
        font-size: 18px;
        padding: 10px 15px;
        white-space: normal;
        /* يسمح للنص ينزل أسطر */
    }
}

/*  
     Welcome section 
*/
.welcome-section {
    position: relative;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    /* يمنع الشكل من الخروج */

}

.welcome-section h1,
.welcome-section h2,
.welcome-section p,
.welcome-section ul {
    position: relative;
    z-index: 2;
    /* فوق الشكل */
    text-align: center;
    margin: 0 auto;
}

.welcome-section h1 {
    font-family: 'Trocchi', serif;
    font-size: 20px;
    margin-bottom: 20px;

}

.welcome-section h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 35px;
    margin-top: 40px;
}

.welcome-section p {
    font-size: 13px;
    margin: 20px auto 0 auto;
    /* يبقى فوق وأسفل مسافة 20px، مركز */
    max-width: 500px;
    /* أقصى عرض للفقرة */
    text-align: center;
}

.welcome-section ul {
    max-width: 700px;
    /* عرض أقصى للقائمة */
    margin: 10px auto 20px auto;
    /* محاذاة في الوسط مع مسافات */
    text-align: left;
    /* محاذاة النص داخل القائمة */
    font-weight: 600;
    /* يجعل النص غامق */
    padding-left: 20px;
    /* مسافة من اليسار للنقاط */
    list-style-type: disc;
    /* النقاط تكون على شكل دوائر */
    font-size: 13px;
}


@media (max-width: 768px) {

    .welcome-section h1 {
        font-size: 18px;
    }

    .welcome-section h2 {
        font-size: 22px;
        margin-top: 15px;
    }

    .welcome-section p {
        font-size: 12px;
    }
}

/* Section 2 */

.section-A,
.section-B,
.section-C,
.section-D {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 8%;
    margin-top: 60px;
    gap: 2rem;
}

.w-content-wrapper {
    display: flex;
    max-width: 600px;
    position: relative;
    z-index: 2;

}

.w-text-content {
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
      width: 100%; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 4;
}

.w-text-content:hover {
    transform: translateY(-5px);
}

.w-text-content p {
    color: #030343;
    font-size: 0.95em;
    
    /* أصغر */
    line-height: 1.4;
}


.w-image-content {

    z-index: -2;
    background-color: rebeccapurple;
}

.w-image-content img {

    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .w-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .w-image-content {
        margin: auto;
    }

    .w-image-content img {
        width: 100%;
        max-width: 250px;
    }

    .cardsection2 {
        width: 100%;
    }
}


/* Partners Section */

.SectionPartners {
    padding: 80px 10%;
    background-color: white;
    text-align: center;
}

.SectionPartners .partners-image img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.SectionPartners h2 {
    font-size: 28px;
    color: #030343;
    margin-bottom: 40px;
}

/* صور الشعارات */
.SectionPartners .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.SectionPartners .partners-logos img {
    width: auto;
    height: 80px;
    object-fit: contain;
}


/* Responsive */
@media (max-width: 768px) {
    .SectionPartners .partners-logos img {
        width: 90px;
    }
}



/* 
Shapes 
their are 3 shapes 
welcome shape, left leaning shape and right leaning shape 
*/

.welcome-shape-parent {
    position: relative;
    display: inline-block;
    text-align: center;
}

@media (max-width: 768px) {
    .welcome-shape-parent {
        width: auto;
    }
}

.welcome-shape-parent::after {
    content: "";
    display: block;
    position: absolute;
    top: 0%;
    left: 15%;
    width: 75%;
    bottom: -5%;
    background-color: #66b5ee;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    z-index: -1;

}


.left-shape-parent {
    position: relative;
    display: inline-block;
    text-align: center;
   width: 50%;
}

.left-shape-parent::after {
    content: "";
    display: block;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 110%;
     height: 100%;
   
    background-color: #66b5ee;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}





.right-shape-parent {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 50%;

}

.right-shape-parent::after {
    content: "";
    display: block;
    position: absolute;
    top: 0%;
    left: -10%;
    width: 110%;
    bottom: -5%;
    background-color: #66b5ee;
    clip-path: polygon(0% 0%, 80% 0, 100% 100%, 20% 100%);
    z-index: -1;

    @media (max-width: 768px) {
        left: 0%
    }
}

/* ===== Sections A, B, C, D Columns ===== */
.section-A .w-content-wrapper,
.section-B .w-content-wrapper,
.section-C .w-content-wrapper,
.section-D .w-content-wrapper {
    display: flex;
    flex-direction: row; /* ترتيب الأعمدة أفقي */
    flex-wrap: wrap;     /* يسمح بالهبوط على الشاشات الصغيرة */
}

.section-A .w-content-wrapper > div,
.section-B .w-content-wrapper > div,
.section-C .w-content-wrapper > div,
.section-D .w-content-wrapper > div {
    flex: 1 1 33.33%;    /* كل div ياخذ ثلث مساحة الصف */
}

/* ===== Responsive للموبايل ===== */
@media (max-width: 768px) {
    .section-A .w-content-wrapper,
    .section-B .w-content-wrapper,
    .section-C .w-content-wrapper,
    .section-D .w-content-wrapper {
        flex-direction: column; /* الأعمدة فوق بعض */
    }

    .section-A .w-content-wrapper > div,
    .section-B .w-content-wrapper > div,
    .section-C .w-content-wrapper > div,
    .section-D .w-content-wrapper > div {
        flex: 1 1 100%; /* كل div ياخذ كامل العرض */
    }
}



/* ******************************************************* */

.Section2 {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 8%;
    /* أقل من قبل */
    margin-top: 60px;
}

.content-wrapper {
    display: flex;
    max-width: 800px;
    /* أصغر */
    gap: 20px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* .text-content,
.image-content {
    flex: 1;
} */

.cardsection2 {
    background: #030343;
    padding: 10px;
    /* أقل */
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.cardsection2:hover {
    transform: translateY(-5px);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
}

.text-content p {
    color: white;
    font-size: 0.95em;
    /* أصغر */
    line-height: 1.4;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.image-content img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    /* أصغر */
    max-height: 250px;
   
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}


/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .image-content img {
        width: 100%;
        max-width: 300px;
    }

    .cardsection2 {
        width: 100%;
    }
}


/* Section 3 Wrapper */
.Section4 .proshield-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 أعمدة */
    gap: 20px;
    justify-items: center;
    margin-top: 40px;
}

/* Responsive: شاشات متوسطة */
@media (max-width: 992px) {
    .Section4 .proshield-card-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 أعمدة */
    }
}

/* Responsive: شاشات صغيرة */
@media (max-width: 600px) {
    .Section4 .proshield-card-container {
        grid-template-columns: 1fr;
        /* عمود واحد */
    }
}

/* Section 3 Cards */

.Section4 .card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Card Horizontal */
.Section4 .Card {
    display: flex;
    flex-direction: row;
    /* صورة على اليسار، نص على اليمين */
    align-items: stretch;
    width: 100%;
    max-width: 380px;

    padding-bottom: 10px;
    gap: 15px;
}

/* Card Image */
.Section4 .Card .CardImage {
    display: flex;
    justify-content: center;


}

/* الصورة */
.Section4 .Card .CardImage img {
    width: 25px;
    height: 25px;
    object-fit: cover;

}


/* Card Content */
.Section4 .Card .CardContent {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* h1 فوق، p تحت */
}

.Section4 .Card .CardContent h1 {
    font-size: 16px;
    font-weight: bold;
    color: #030343;
    margin: 0 0 5px 0;
}

.Section4 .Card .CardContent p {
    font-size: 14px;
    color: #030343;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .Section4 .Card {
        flex-direction: column;
        /* تصبح الصورة فوق النص */
        max-width: 100%;
    }

    .Section4 .Card .CardImage img {
        width: 50px;
        height: auto;
    }
}


/* ***********Section 3 ****************/
.Section3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#left {
    order: 0;

}

#right {
    order: 3;

}

/* Section Container */
.Section3 .my-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;

    margin-left: 80px;
    margin-right: 80px;


    @media(max-width:600px) {
        flex-direction: column;

        margin-left: 0px;
        margin-right: 0px;

    }
}

.Section3 .my-slider::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in Chrome, Edge, Safari */
}

/* Card */
.Section3 .Card {
    border: 4px solid #66b5ee;
    ;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 10px;
    background: #030343;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);

}

/* Image Container */
.Section3 .Card .ImageContainer {
    height: 200px;
    width: 100%;
}

.Section3 .Card .ImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

/* Card Content */
.Section3 .Card .CardContent {
    text-align: center;
    width: 100%;
}

.Section3 .Card .CardContent h1 {
    margin: 10px 0;
    font-size: 18px;
    color: #66b5ee;
}

.Section3 .Card .CardContent p {
    margin: 10px 0;
    font-size: 14px;
    color: white;


}

/* Card Footer */
.Section3 .Card .CardFooter {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    width: 100%;

}

.Section3 .Card .CardFooter .Icon {
    width: 20px;
    height: 20px;
    background-color: #66b5ee;
    border-radius: 50%;
}

.Section3 .Card .CardFooter a {
    text-decoration: none;
    font-size: 14px;
    color: #66b5ee;
}

/* Add hover effect */
.Section3 .Card:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Add shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#left-icon,
#right-icon {
    font-size: 40px;
    color: white;
    background-color: #030343;
    z-index: 10;
    border-radius: 50%;
    padding: 20px;
}


@media(max-width:600px) {

    #left,
    #right {
        display: none;
    }
}



/* Partners Section */

.SectionPartners {
    padding: 80px 10%;
    background-color: white;
    text-align: center;
}

.SectionPartners .partners-image img {
    width: 200px;
    /* حجم الصورة الرئيسية */
    height: auto;
    margin-bottom: 20px;
}

.SectionPartners h2 {
    font-size: 28px;
    color: #030343;
    margin-bottom: 40px;
}

/* صور الشعارات */
.SectionPartners .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.SectionPartners .partners-logos img {
    width: 100px;
    /* حجم الصورة الرئيسية */
    height: auto;
    /* الطول */
    object-fit: contain;
    /* يحافظ على ألوان وأبعاد اللوجو الأصلية */
}



/* Responsive */
@media (max-width: 768px) {
    .SectionPartners .partners-logos img {
        width: 90px;
    }
}


/*    Features Section with Images    */
.features-section {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

.features-section .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px; /* مسافة بين الأعمدة */
}

.features-section .feature-column {
  flex: 1 1 200px; /* أعرض الأعمدة على حسب المساحة المتاحة */
  max-width: 250px; /* أقصى عرض للعمود */
  margin: 0 auto; /* يوسّط الأعمدة على الشاشات الصغيرة */
}

.features-section .icon img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.features-section p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .features-section .container {
    flex-direction: column; /* الأعمدة تصبح فوق بعض */
    align-items: center;
  }

  .features-section .feature-column {
    max-width: 200px;
    margin-bottom: 30px;
  }
}
