:root {
        --primary-color: #2E3141;
        --secondary-color: #F3C736;
        --accent-color: #E63946;
        --dark-color: #271F30;
        --light-color: #F5F6F4;
        --text-color: #333333;
      }
      
      body {
        font-family: 'Montserrat', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        background-color: var(--light-color);
      }
      
      .hero-section {
        background: linear-gradient(135deg, #2E3141 0%, #1a1c25 100%);
        /*background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);*/
        color: white;
        padding: 1rem 0 2rem 0;
        position: relative;
        overflow: visible;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
      }
      
      @media (max-width: 992px) {
        .hero-section {
          clip-path: none;
          padding-bottom: 2rem;
        }
      }

      .hero-img-wrapper {
        width: 100%;
        height: 100%;
        min-width: unset;
        min-height: unset;
        max-width: none;
        max-height: none;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
        background: none;
        margin: 0;
        display: flex;
        align-items: stretch;
      }
      .hero-img-modern {
        width: 100%;
        height: 100%;
        min-width: unset;
        min-height: unset;
        object-fit: cover;
        border-radius: 0;
        transition: none;
        z-index: 1;
        position: relative;
        box-shadow: none;
        display: block;
      }
      .hero-img-wrapper:hover .hero-img-modern {
        transform: none;
        box-shadow: none;
      }
      .hero-img-overlay {
        display: none;
      }
      @media (max-width: 1200px) {
        .hero-img-wrapper {
          width: 100%;
          height: 320px;
          margin-right: 0;
        }
      }
      @media (max-width: 992px) {
        .hero-img-wrapper {
          width: 100%;
          height: 220px;
          max-width: 100%;
          min-width: unset;
          min-height: unset;
          margin: 0 auto 1.5rem auto;
          background: none;
          display:none;
        }
        .hero-img-modern {
          min-width: unset;
          min-height: unset;
          height: 100%;
        }
      }
      .hero-title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
      }
      @media (min-width: 992px) {
        .hero-title {
          font-size: 3.2rem;
        }
      }

      .hero-section .btn {
        font-size: 1.2rem;
        padding: 0.9rem 2.2rem;
        border-radius: 1.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      }
      .hero-section .btn-light {
        background: var(--secondary-color);
        color: #222;
        border: 3px solid var(--secondary-color);
      }
      .hero-section .btn-light:hover {
        background: #fff;
        color: var(--dark-color);
        border-color: var(--secondary-color);
      }
      .hero-section .btn-outline-light {
        background: transparent;
        color: #fff;
        border: 3px solid #fff;
      }
      .hero-section .btn-outline-light:hover {
        background: #fff;
        color: var(--primary-color);
      }
      
      .course-highlights {
        background-color: var(--light-color);
        padding: 2rem 0;
      }
      
      .highlight-card {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
      }
      
      .highlight-card:hover {
        transform: translateY(-5px);
      }
      
      .highlight-icon {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
      }
      
      .feature-card {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        border-left: 4px solid var(--secondary-color);
        display: flex;
        flex-direction: column;
      }
      
      .feature-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-3px);
      }
      
      .btn-primary-custom {
        background-color: var(--secondary-color);
        color: var(--dark-color);
        border: none;
        padding: 0.8rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }
      
      .btn-primary-custom:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(245, 203, 32, 0.3);
      }
      
      .btn-secondary-custom {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        padding: 0.8rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }
      
      .btn-secondary-custom:hover {
        background-color: rgba(255,255,255,0.1);
        transform: translateY(-2px);
      }
      
      .section-title {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
      }
      
      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--secondary-color);
      }
      
      .testimonial-card {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        position: relative;
      }
      
      .testimonial-card::before {
        content: """;
        font-size: 5rem;
        color: var(--secondary-color);
        position: absolute;
        top: 10px;
        left: 20px;
        opacity: 0.2;
      }
      
      .faq-item {
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      }
      
      .faq-header {
        background-color: var(--primary-color);
        color: white;
        padding: 1rem 1.5rem;
        cursor: pointer;
        font-weight: 500;
      }
      
      .faq-body {
        background-color: white;
        padding: 1.5rem;
      }
      
      .enrollment-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      .enrollment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
      }
      
      .enrollment-header {
        background-color: var(--secondary-color);
        color: white;
        padding: 1.5rem;
        text-align: center;
      }
      
      .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary-color);
      }
      
      .nav-pills .nav-link.active {
        background-color: var(--secondary-color);
        color: var(--dark-color);
      }
      
      .nav-pills .nav-link {
        color: var(--dark-color);
      }

      .gallery-img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-img img {
            transition: all 0.5s;
        }

        .gallery-img:hover img {
            transform: scale(1.05);
        }
      
      @media (max-width: 992px) {
        .hero-section::before {
          display: none;
        }
        
        .hero-title {
          font-size: 2rem;
        }
      }
      
        .modern-curriculum {
        --primary-color: #2E3141;
        --secondary-color:#004080;
        --accent-color: #F3C736;
        }

        .text-primary{
            color: var(--primary-color) !important;
        }

        .modern-curriculum h4 {
        color: var(--primary-color);
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px dashed rgba(78, 84, 200, 0.2);
        position: relative;
        }

        .modern-curriculum h4:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 50px;
        height: 2px;
        background: var(--primary-color);
        }

        .modern-curriculum ul {
        padding-left: 0;
        margin-bottom: 1.5rem;
        }

        .modern-curriculum li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.5rem;
        list-style: none;
        }

        .modern-curriculum li:before {
        content: "▹";
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
        }

        .modern-curriculum li {
        transition: transform 0.2s;
        }

        .modern-curriculum li:hover {
        transform: translateX(5px);
        }
