body{
    margin: 0;
    padding: 0;
          font-family: "Tajawal", sans-serif !important;
}
/* Wrapper */
    .DIVA-container {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    /* Navbar */
.DIVA-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    width: 100%;
    max-width: 1230px;
}

    /* Logo */
    .DIVA-logo img {
      height: 40px;
    }
#hamburger{
    display: none;
}
    /* Search bar */
    .DIVA-search {
      display: flex;
      align-items: center;
      padding: 5px 10px;
      border: 1px solid #80808073;
      border-radius: 11px;
      width: 100%;
      max-width: 400px;
    }

    .DIVA-search img {
      width: 20px;
      margin-right: 8px;
    }

    .DIVA-search input {
              font-family: "Tajawal", sans-serif;

      border: none;
      outline: none;
      width: 100%;
      font-size: 14px;
    }

    /* Mobile toggle (hamburger) */
    .DIVA-mobile-toggle {
      width: 25px;
      display: none; /* hidden by default */
      flex-direction: column;
      justify-content: space-between;
      margin-left: 15px;
      cursor: pointer;
    }

    .DIVA-mobile-toggle span {
      height: 3px;
      background: #333;
      border-radius: 2px;
      margin: 3px 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .DIVA-search {
        display: none;
      }
      .DIVA-mobile-toggle {
        display: flex;
      }
    }











    /* Scoped styles for the custom header section */

/* Main container for the section */
.custom-header-section {
  width: 100%;
  padding: 15px 15px;
  background-color: #ffffff;
  box-sizing: border-box; /* Ensures padding doesn't affect the width */
}

.custom-header-section .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Optional: sets a max-width for the content */
  margin: 0 auto;
}

/* Left side: Home link and main menu */
.custom-header-section .header-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.custom-header-section .header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.custom-header-section .header-link {
  text-decoration: none;
  color: #5a5a5a;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.custom-header-section .home-link {
  color: #692772;
}

/* Style for dropdown arrows (add this class to items with a dropdown) */
.custom-header-section .dropdown::after {
  content: '▾';
  font-size: 12px;
  margin-left: 5px;
}

/* Right side: Buttons */
.custom-header-section .header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-header-section .btn-cta-primary {
  background-color: #692672;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: "Tajawal", sans-serif;

      width: 92px;
    height: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.custom-header-section .btn-cta-login {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5f5a5a;
  text-decoration: none;
  font-family: "Tajawal", sans-serif;
}

/* This is a placeholder for your login icon. You would typically use an SVG or an icon font. */
.custom-header-section .login-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  /* Replace with your actual icon, e.g., background-image: url('path/to/icon.svg'); */
}


/* Hamburger menu for semi-screen view - hidden on desktop */
.custom-header-section .hamburger-menu {
  display: none;
  cursor: pointer;
}

.custom-header-section .hamburger-bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

/* --- Responsive Design --- */

/* For semi-screens (e.g., tablets) */
@media (max-width: 1024px) {
  .custom-header-section .header-left {
    display: none; /* Hide the entire left section with Home and menu items */
  }
 #hamburger{
    display: none;
 }
  .custom-header-section .header-container {
    justify-content: space-between; /* This will push the hamburger to the left and buttons to the right */
  }

  .custom-header-section .hamburger-menu {
    display: block; /* Show the hamburger icon */
  }
}

/* For mobile devices */
@media (max-width: 767px) {
  .custom-header-section {
    display: none; /* Hide the entire section on mobile screens */
  }
  #hamburger{display: flex;}
}













.education-marketplace-section {
    font-family: 'tajawal';
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Adds space between text and image */
}

.education-marketplace-section .text-content {
    max-width: 50%;
    flex: 1;
}

.education-marketplace-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: #200b00f7;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.education-marketplace-section .marketplace-highlight {
    color: #6b2772; /* A blue color closer to the image */
}

.education-marketplace-section p {
    font-size: 18px;
    color: #666666;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.education-marketplace-section .button-container {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap if space is tight */
    gap: 15px;
}

.education-marketplace-section .btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.education-marketplace-section .btn-primary {
    background-color: #6b2772;
    color: #fff;
    border: 1px solid transparent;
}

.education-marketplace-section .btn-primary:hover {
    background-color: #3558e0;
}

.education-marketplace-section .btn-secondary {
    background-color: #fff;
    color: #d7aa47;
    border: 1px solid #ffaa1f;
}

.education-marketplace-section .btn-secondary:hover {
    background-color: #f8f9fa;
    color: #000;
}

.education-marketplace-section .image-content {
    max-width: 45%;
    flex-shrink: 0; /* Prevents the image from shrinking too much */
}

.education-marketplace-section .image-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles for smaller screens */
@media (max-width: 992px) {
    .education-marketplace-section h1 {
        font-size: 38px;
    }

    .education-marketplace-section p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .education-marketplace-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .education-marketplace-section .text-content,
    .education-marketplace-section .image-content {
        max-width: 100%;
    }

    .education-marketplace-section .image-content {
        margin-top: 30px;
        max-width: 80%; /* Control image size on mobile */
    }

    /* UPDATED FOR MOBILE STACKING */
    .education-marketplace-section .button-container {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center the stacked buttons */
        width: 100%;
    }

    .education-marketplace-section .button-container .btn {
        width: 100%; /* Make buttons take full width of the container */
        max-width: 350px; /* Optional: prevent buttons from being too wide */
    }
}
        /* Scoped styles for the Latest News Section */
        .latest-news-section {
            font-family: 'tajawal';
            background-color: #f8f9fa; /* Light background for the whole section */
            padding: 60px 20px;
        }

        .latest-news-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header: "Latest News" and "See More" */
        .latest-news-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .latest-news-section .section-title {
            font-size: 36px;
            font-weight: bold;
            color: #1a1a1a;
        }

        .latest-news-section .section-title span {
            color: #6b2772;
        }

        .latest-news-section .see-more-link {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .latest-news-section .see-more-link:hover {
            color: #6b2772;
        }
        
        /* Individual News Card Styling */
        .latest-news-section .news-card {
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
            margin-bottom: 10px; /* Space for shadow */
        }
        
        .latest-news-section .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .latest-news-section .news-card-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }
        
        .latest-news-section .news-card-content {
            padding: 25px;
        }
        
        .latest-news-section .news-card-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 10px 0;
        }
        
        .latest-news-section .news-card-excerpt {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            /* Simple way to truncate text */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .latest-news-section .news-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
            color: #777;
            margin-bottom: 20px;
        }
        
        .latest-news-section .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .latest-news-section .meta-item svg {
            width: 16px;
            height: 16px;
            fill: #777;
        }

        .latest-news-section .read-more {
            text-decoration: none;
            color: #6b2772;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }
        
        .latest-news-section .read-more:hover {
            gap: 10px;
        }

        /* Custom Owl Carousel Dots */
        .latest-news-section .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .latest-news-section .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }

        .latest-news-section .owl-dot span {
            width: 12px;
            height: 12px;
            background: #d6d6d6;
            display: block;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .latest-news-section .owl-dot.active span {
            background: #6b2772;
            width: 30px; /* Make the active dot wider */
            border-radius: 10px;
        }













        /* Scoped styles for the New Release Section */
        .new-release-section {
            font-family: 'tajawal';
            background-color: #fff;
            padding: 60px 0;
            position: relative; /* Needed for positioning nav arrows */
        }

        .new-release-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Section Header Styling */
        .new-release-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .new-release-section .section-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
        }

        .new-release-section .section-title span {
            color: #6b2772;
            font-weight: 800;
        }

        .new-release-section .see-more-link {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .new-release-section .see-more-link:hover {
            color: #6b2772;
        }
        
        /* Individual Course Card Styling */
        .new-release-section .course-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
        }

        .new-release-section .card-image-container {
            position: relative;
        }

        .new-release-section .course-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .new-release-section .card-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #ff9800;
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 5px;
        }

        .new-release-section .card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .new-release-section .card-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 8px 0;
            line-height: 1.3;
        }
        
        .new-release-section .card-instructor {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .new-release-section .card-description {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .new-release-section .card-meta {
            font-size: 14px;
            color: #777;
            margin-bottom: 20px;
        }

        .new-release-section .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e9ecef;
            padding: 20px;
            background-color: #fff;
        }

        .new-release-section .card-price {
            font-size: 22px;
            font-weight: 700;
            color: #6b2772;
        }
        .new-release-section .card-price .original-price {
            text-decoration: line-through;
            font-size: 16px;
            color: #999;
            font-weight: 400;
            margin-right: 5px;
        }

        .new-release-section .start-learning-btn {
            background-color: #6b2772;
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s ease;
        }
        .new-release-section .start-learning-btn:hover {
            background-color: #0b5ed7;
        }

        /* Custom Owl Carousel Navigation */
        .new-release-section .owl-nav {
            position: absolute;
            top: 40%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none; /* Allows click-through */
        }
        .new-release-section .owl-nav button {
            pointer-events: all; /* Make buttons clickable */
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #fff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            color: #333 !important;
            font-size: 24px !important;
            line-height: 1;
            transition: all 0.3s ease;
        }
        .new-release-section .owl-nav button:hover {
            background: #6b2772 !important;
            color: #fff !important;
        }
        .new-release-section .owl-prev {
            margin-left: -22px;
        }
        .new-release-section .owl-next {
            margin-right: -22px;
        }

        /* Custom Owl Carousel Dots */
        .new-release-section .owl-dots {
            text-align: center;
            margin-top: 40px;
        }
        .new-release-section .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }
        .new-release-section .owl-dot span {
            width: 12px;
            height: 12px;
            background: #d6d6d6 !important;
            display: block;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .new-release-section .owl-dot.active span {
            background: #6b2772 !important;
            width: 30px;
            border-radius: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .new-release-section .owl-nav {
                display: none; /* Hide arrows on smaller screens for touch */
            }
        }
        @media (max-width: 768px) {
            .new-release-section .section-title {
                font-size: 28px;
            }
            .new-release-section .card-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .new-release-section .start-learning-btn {
                width: 100%;
                justify-content: center;
            }
        }













                /* Scoped styles for the "Become an Instructor" section */
        .become-instructor-section {
            font-family: 'tajawal';
            background-color: #ebeced; /* Light grey background */
            padding: 60px 20px;
            overflow: hidden; /* Prevents overflow issues */
        }

        .become-instructor-section .container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Image Wrapper */
        .become-instructor-section .image-wrapper {
            flex-basis: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .become-instructor-section .instructor-image {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Paper Plane Graphic */
        .become-instructor-section .paper-plane-graphic {
            position: absolute;
            left: -20px;
            top: 55%;
            width: 150px;
            height: 100px;
            pointer-events: none; /* Allows clicks to go through */
        }

        .become-instructor-section .paper-plane-graphic .plane {
            width: 50px;
            position: absolute;
            top: -25px; /* Adjust vertical position of the plane */
            left: -15px; /* Adjust horizontal position of the plane */
            transform: rotate(-15deg);
        }

        .become-instructor-section .paper-plane-graphic .trail {
            width: 100%;
            height: 100%;
        }

        /* Text Content */
        .become-instructor-section .text-content {
            flex-basis: 50%;
        }

        .become-instructor-section .headline {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.2;
            margin: 0 0 15px 0;
        }

        .become-instructor-section .headline .highlight {
            color: #6b2772;
        }

        .become-instructor-section .sub-headline {
            font-size: 18px;
            color: #555;
            margin: 0 0 30px 0;
            line-height: 1.6;
        }

        .become-instructor-section .cta-button {
            background-color: #6b2772;
            color: #fff;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .become-instructor-section .cta-button:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .become-instructor-section .headline {
                font-size: 36px;
            }
            .become-instructor-section .sub-headline {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .become-instructor-section .container {
                flex-direction: column;
                text-align: center;
            }

            .become-instructor-section .image-wrapper {
                margin-bottom: 20px;
                max-width: 400px; /* Control image size on mobile */
            }

            .become-instructor-section .paper-plane-graphic {
                width: 120px;
                left: 0;
            }

            .become-instructor-section .text-content {
                max-width: 500px;
            }
        }













          /* Scoped styles for the Site Footer */
        .site-footer-section {
            font-family: 'tajawal';
            background-color: #f8f9fa; /* Light grey background for the main part */
            color: #333;
            padding-top: 60px;
        }

        .site-footer-section .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Footer Area (Logo, Links) */
        .site-footer-section .footer-main {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
        }

        .site-footer-section .footer-brand {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
        }

        .site-footer-section .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 700;
        }

        .site-footer-section .contact-button {
            background-color: #fff;
            color: #333;
            border: 1px solid #ccc;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .site-footer-section .contact-button:hover {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }

        .site-footer-section .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            width: 100%;
        }
        
        .site-footer-section .footer-column h3 {
             font-size: 16px;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: #6b2772;
        }

        .site-footer-section .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer-section .footer-column ul li {
            margin-bottom: 10px;
        }

        .site-footer-section .footer-column ul a {
            text-decoration: none;
            color: #555;
            font-size: 15px;
            transition: color 0.3s;
        }

        .site-footer-section .footer-column ul a:hover {
            color: #007bff;
        }

        /* Bottom Footer Area (Copyright, Socials) */
        .site-footer-section .footer-bottom {
            background-color: #f0f2f5; /* Slightly different grey */
            padding: 20px 0;
        }

        .site-footer-section .footer-bottom .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .site-footer-section .copyright-text {
            font-size: 14px;
            color: #555;
        }
        
        .site-footer-section .copyright-text a {
            color: #007bff;
            text-decoration: none;
        }
        
        .site-footer-section .social-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .site-footer-section .social-links span {
            font-size: 14px;
            color: #555;
        }
        
        .site-footer-section .social-links a {
            color: #333;
            transition: color 0.3s;
        }
        
        .site-footer-section .social-links a:hover {
            color: #007bff;
        }

        .site-footer-section .social-links svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .site-footer-section .footer-main {
                flex-direction: column;
            }
            .site-footer-section .footer-brand {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .site-footer-section .footer-brand {
                flex-direction: column;
                gap: 20px;
            }
            .site-footer-section .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px; /* More row gap than column gap */
            }
            .site-footer-section .footer-bottom .footer-container {
                flex-direction: column;
                gap: 15px;
            }
        }










        /* Scoped styles for the Trusted By Section */
        .trusted-by-section {
            font-family: 'tajawal';
            background-color: #fff;
            padding: 50px 0;
            text-align: center;
        }

        .trusted-by-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Title Styling */
        .trusted-by-section .section-title {
            font-size: 14px;
            font-weight: 700;
            color: #4A5568; /* A muted dark grey */
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        /* Carousel Item Styling */
        .trusted-by-section .owl-carousel .item {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px; /* Set a fixed height for alignment */
        }
        
        .trusted-by-section .owl-carousel .logo-img {
            max-height: 40px; /* Control max height of logos */
            width: auto;
            max-width: 150px; /* Control max width of logos */
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .trusted-by-section .owl-carousel .item:hover .logo-img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* This hides the default dots navigation from Owl Carousel */
        .trusted-by-section .owl-dots {
            display: none;
        }
button.swal2-confirm.swal2-styled {
    font-family: 'Tajawal';
}