/*
    
TemplateMo 557 Grad School

https://templatemo.com/tm-557-grad-school

*/


@import url(fontawesome.css);
@import url("<link href=" https: //fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" rel="stylesheet">");
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');
/* Base Styles */
    /* ---------- RESET & BASE ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: "Poppins", "Montserrat", "Open Sans", sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            color: #333333;
            width: 100%;
            position: relative;
            background: #f9fafc;
        }

        /* Top Bar Styles */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: #141d38;
            color: #ffffff;
            height: 44px;
            z-index: 1001;
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .top-bar-wrap {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .top-left {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .top-item {
            white-space: nowrap;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-item i {
            color: #ffffff;
            font-size: 14px;
        }

        .top-right {
            display: flex;
            gap: 20px;
        }

        .top-right a {
            color: #ffffff;
            font-size: 17px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .top-right a:hover {
            color: #ffd166;
            transform: translateY(-2px);
        }

        /* Main Header Styles */
        .main-header {
            background-color: #ffffff;
            height: 80px;
            position: fixed;
            z-index: 1000;
            width: 100%;
            top: 44px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            left: 0;
            right: 0;
            box-sizing: border-box;
        }

        .nav-wrap {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Logo Styles */
        .logo {
            flex-shrink: 0;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo-img {
            height: 45px;
            width: auto;
            transition: all 0.3s ease;
            max-width: 100%;
        }

        .logo-text {
            color: #2b3990;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .logo-text span {
            color: #2b3990;
            font-weight: 800;
        }

        /* Main Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .main-menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            gap: 5px;
        }

        .main-menu li {
            position: relative;
        }

        .main-menu li a {
            padding: 10px 15px;
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 8px;
        }

        .main-menu li a:hover {
            color: #2b3990;
            background: rgba(43,57,144,0.05);
        }

        .main-menu li a i {
            font-size: 14px;
        }

        /* Dropdown Container (for all dropdowns except home) */
        .dropdown-container {
            position: relative;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .dropdown-container:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Standard Dropdown (for mega style or simple) */
        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 280px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(43,57,144,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid rgba(43,57,144,0.1);
            box-sizing: border-box;
        }

        /* For wider menus (tools/resources might have many items) */
        .dropdown-container:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .mega-dropdown-content {
            padding: 20px;
        }

        .mega-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-links li {
            margin-bottom: 8px;
        }

        .mega-links li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
            background: transparent;
            font-size: 14px;
            font-weight: 500;
        }

        .mega-links li a:hover {
            background: rgba(43,57,144,0.05);
            transform: translateX(5px);
            color: #2b3990;
        }

        .mega-links li a i {
            width: 22px;
            color: #2b3990;
            font-size: 1rem;
        }

        .link-text {
            flex: 1;
        }

        .link-title {
            display: block;
            color: #333333;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Mobile dropdown hidden on desktop */
        .mobile-dropdown {
            display: none;
        }

        /* Auth Section */
        .auth-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .profile-dropdown {
            position: relative;
        }

        .profile-btn {
            padding: 10px 20px;
            background: #2b3990;
            color: #ffffff;
            border: none;
            cursor: pointer;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .profile-btn:hover {
            background: #1a276b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43,57,144,0.3);
        }

        .profile-name {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background: #2b3990;
            color: #ffffff;
            list-style: none;
            min-width: 220px;
            padding: 10px 0;
            margin-top: 10px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(43,57,144,0.3);
            z-index: 1001;
        }

        .dropdown-menu.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.1);
            padding-left: 25px;
        }

        .dropdown-menu hr {
            margin: 8px 0;
            border: none;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .login-btn, .register-btn {
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .login-btn {
            background: #2b3990;
            color: #ffffff;
        }

        .register-btn {
            background: #2b3990;
            color: #ffffff;
        }

        .login-btn:hover, .register-btn:hover {
            background: #1a276b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43,57,144,0.3);
            color: #ffffff;
        }

        .menu-toggle {
            display: none;
            font-size: 20px;
            background: #2b3990;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            z-index: 1002;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle:hover {
            background: #1a276b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43,57,144,0.3);
        }

        .desktop-only {
            display: block;
        }

        /* Page content demo */
        .page-content {
            margin-top: 124px;
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .page-content h1 {
            color: #2b3990;
            margin-bottom: 20px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1110px) {
            .menu-toggle {
                display: flex;
            }

            .desktop-only {
                display: none !important;
            }

            .main-nav {
                position: fixed;
                top: 124px;
                left: -100%;
                width: 320px;
                height: calc(100dvh - 124px);
                background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
                overflow-y: auto;
                transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 5px 0 30px rgba(43, 57, 144, 0.15);
                padding: 25px 20px;
                display: block;
                z-index: 9999;
                border-right: 1px solid rgba(43, 57, 144, 0.1);
                box-sizing: border-box;
            }

            .main-nav.active {
                left: 0;
            }

            .main-menu {
                flex-direction: column;
                width: 100%;
                gap: 8px;
                margin-bottom: 20px;
            }

            .main-menu li {
                width: 100%;
            }

            .main-menu li a {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 14px 18px;
                font-size: 14px;
                font-weight: 500;
                background: #ffffff;
                box-shadow: 0 2px 8px rgba(43, 57, 144, 0.08);
                border: 1px solid rgba(43, 57, 144, 0.1);
                width: 100%;
                justify-content: space-between;
            }

            .mega-dropdown {
                display: none !important;
            }

            .mobile-dropdown {
                display: block;
                list-style: none;
                padding: 10px 0 0 20px;
                margin: 5px 0 0 0;
                border-top: 2px dashed rgba(43, 57, 144, 0.2);
                width: 100%;
            }

            .mobile-dropdown li {
                width: 100%;
                margin-bottom: 6px;
            }

            .mobile-dropdown li a {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 10px 16px;
                font-size: 13px;
                background: #f5f7ff;
                border-radius: 12px;
                text-decoration: none;
                color: #333;
            }

            .dropdown-arrow {
                display: none;
            }

            .auth-section {
                width: 100%;
                margin-top: 25px;
                padding-top: 15px;
                border-top: 2px dashed rgba(43, 57, 144, 0.2);
            }

            .profile-btn, .login-btn, .register-btn {
                width: 100%;
                justify-content: center;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                background: rgba(43,57,144,0.05);
                margin-top: 8px;
            }
            .dropdown-menu a {
                color: #2b3990;
            }
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .main-nav { width: 280px; top: 114px; }
            .logo-text { font-size: 16px; }
            .logo-img { height: 35px; }
            .top-bar-wrap { padding: 0 12px; }
        }

        @media (max-width: 576px) {
            .top-bar-wrap { flex-direction: column; padding: 5px 10px; }
            .top-left { justify-content: center; gap: 10px; }
            .top-right { display: none; }
            .logo-text { font-size: 14px; }
            .main-nav { width: 260px; top: 104px; }
            .page-content { margin-top: 110px; }
        }

        @media (max-width: 480px) {
            .top-left .top-item:last-child { display: none; }
        }
/*end of header css */

    /* Utility Classes */
    .text-primary {
        color: #2b3990;
    }

    .bg-primary {
        background: #2b3990;
    }

    .shadow-hover:hover {
        box-shadow: 0 10px 30px rgba(43,57,144,0.2);
        transform: translateY(-2px);
    }

    .transition-all {
        transition: all 0.3s ease;
    }

    /* Animation Classes */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        animation: fadeIn 0.3s ease;
    }

    /* Scrollbar Styling */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #2b3990;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #1a276b;
    }

/*end header and top bar css*/
    
  .main-banner {
    position: relative;
    max-height: 650px;
    overflow: hidden;

  }

  #bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
  }

  #bg-video::-webkit-media-controls {
    display: none !important;
  }

  .video-overlay {
    position: absolute;
   background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.65)
    );

box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);

    top: 0;
    left: 0;
    bottom: 1px;
    width: 100%;
  }

  .main-banner .caption {
    text-align: center;
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .main-banner .caption h6 {
    margin-top: 0px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
  }

  .main-banner .caption h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 64px;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
  }

  .main-banner .caption h2 em {
    font-style: normal;
    color: #ffffff;
    font-weight: 900;
  }

  @media screen and (max-width: 1180px) {

    .main-banner .caption h6 {
      font-weight: 500;
    }

    .main-banner .caption h2 {
      font-size: 58px;
    }

  }

  @media screen and (max-width: 767px) {

    .main-banner .caption h6 {
      font-weight: 500;
    }

    .main-banner .caption h2 {
      font-size: 36px;
    }

  }


  /* Features */

  section.features .col-4 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .features-post {
    position: relative;
    margin-bottom: 0px;
  }

  .features-thumb {
    overflow: hidden;
    position: relative;
  }

  .features-thumb img {
    width: 100%;
  }

  .features-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2b3990;
    color: #ffffff;
    padding: 40px;
    border-radius:5px;
  }

  .features-content:hover {
    background-color: #2b3990;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
  }

  .features-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }

  .features-content h4 i {
    margin-right: 15px;
    font-size: 24px;
  }

  .features-content p {
    margin-bottom: 0px;
  }

  .features-content a {
    margin-top: 15px;
    display: inline-block;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #ffffff;
  }

  .features-content p.hidden-sm {
    display: none;
  }

  .second-features,
  .third-features {
    border-left: 1px solid rgba(250, 250, 250, 0.1);
  }

  .content-hide {
    margin-top: 15px;
    display: none;
  }

  .content-hide p {
    color: #ffffff;
  }

  @media screen and (max-width: 767px) {

    .features-content {
      padding: 15px;
    }

    .features-content h4 i {
      display: block;
      margin-bottom: 10px;
    }

    .features-content h4 {
      font-size: 14px;
    }

    .features-content p {
      display: none;
    }

    .features-content p.hidden-sm {
      display: block;
    }

    .features-content a {
      letter-spacing: 0px;
      font-size: 13px;
      font-weight: 600;
    }

  }

.main-button a {
    background-color: #2b3990;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    border-radius:5px;
  }

  .main-button a:hover{
     background-color: #253391;
  }

  /* Why Choosing Us */

  section.why-us {
    background-image: url(../images/choosing-bg.jpg);
    background-color: #172238;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
  }

  #tabs {
    text-align: center;
  }

  #tabs ul {
    margin: 0;
    padding: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  #tabs ul::after {
    clear: both;
    content: "";
    display: table;
  }

  #tabs ul li {
    display: block;
    font-weight: 400;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-align: center;
  }

  #tabs ul li a {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    outline: 0;
    padding-bottom: 30px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
  }

  #tabs ul li a:after {
    transition: all 0.3s;
    width: 10px;
    height: 10px;
    background-color: #fff;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
  }

  #tabs ul li a:before {
    transition: all 0.3s;
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    background-color: transparent;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -5px;
  }

  #tabs ul li span {
    display: block;
    margin-bottom: 0.75em;
  }

  #tabs ul .ui-tabs-active {}

  #tabs ul .ui-tabs-active a {
    color: #f5a425;
  }

  #tabs ul .ui-tabs-active a:after {
    background-color: #f5a425;
    width: 15px;
    height: 15px;
  }

  #tabs ul .ui-tabs-active a:before {
    border-color: #f5a425;
  }

  #tabs h4 {
    margin-top: 60px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
  }

  #tabs p {
    color: #fff;
    font-size: 15px;
    line-height: 28px;
  }

  .tabs-content {
    margin-top: 60px;
    text-align: left;
  }

  @media screen and (max-width: 767px) {

    .tabs-content {
      text-align: center;
    }

  }

  .tabs-content img {
    width: 100%;
    overflow: hidden;
    padding-right: 45px;
  }

  @media screen and (max-width: 767px) {

    .tabs-content img {
      padding-right: 0px;
    }

  }


  /* Coming Soon */

  section.coming-soon {
    background-image: url(../images/coming-soon-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding: 120px 0px;
  }

  section.coming-soon .continer .counter div {
    display: inline-block;
  }

  section.coming-soon .continer h4 {
    margin-top: 100px;
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 50px;
  }

  section.coming-soon .continer h4 em {
    font-style: normal;
    color: #f5a425;
  }

  @media screen and (max-width: 767px) {

    section.coming-soon .continer h4 {
      text-align: center;
    }

  }

  section.coming-soon .continer .counter .days,
  section.coming-soon .continer .counter .hours,
  section.coming-soon .continer .counter .minutes,
  section.coming-soon .continer .counter .seconds {
    width: 22%;
    height: 140px;
    float: left;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
  }

  @media screen and (max-width: 992px) {

    section.coming-soon .continer .counter .days,
    section.coming-soon .continer .counter .hours,
    section.coming-soon .continer .counter .minutes,
    section.coming-soon .continer .counter .seconds {
      font-size: 26px;
    }

    section.coming-soon .continer .counter .days .value,
    section.coming-soon .continer .counter .hours .value,
    section.coming-soon .continer .counter .minutes .value,
    section.coming-soon .continer .counter .seconds .value {
      margin-top: 40px !important;
    }

    section.coming-soon .continer .counter span {
      font-size: 14px !important;
    }

  }

  section.coming-soon .continer .counter .days,
  section.coming-soon .continer .counter .hours,
  section.coming-soon .continer .counter .minutes {
    margin-right: 4%;
  }

  section.coming-soon .continer .counter .days .value,
  section.coming-soon .continer .counter .hours .value,
  section.coming-soon .continer .counter .minutes .value,
  section.coming-soon .continer .counter .seconds .value {
    margin-top: 15px;
    display: block;
    width: 100%;
  }

  section.coming-soon .continer .counter span {
    font-size: 18px;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  section.coming-soon .right-content {
    margin-left: 30px;
  }

  @media screen and (max-width: 767px) {

    section.coming-soon .right-content {
      margin-top: 60px;
      margin-left: 0px;
    }

  }

  section.coming-soon .top-content {
    margin-bottom: -8px;
  }

  section.coming-soon .top-content h6 {
    font-size: 14px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.2);
    padding: 40px;
    text-align: center;
    line-height: 24px;
  }

  section.coming-soon .top-content h6 em {
    font-style: normal;
    font-weight: 600;
  }

  section.coming-soon form {
    background-color: rgba(250, 250, 250, 0.1);
    padding: 60px 40px;
    width: 100%;
    text-align: center;
  }

  section.coming-soon form input {
    width: 100%;
    height: 40px;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  section.coming-soon form input:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
  }

  section.coming-soon form::placeholder {
    color: #fff
  }

  section.coming-soon form input::placeholder {
    color: #fff;
  }

  section.coming-soon form input::placeholder {
    color: #fff;
  }

  section.coming-soon form button {
    margin-top: 10px;
    background-color: #f5a425;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
  }



  /* Courses */

  section.courses {
    background-image: url(../images/choosing-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding-bottom: 100px;
    padding: 0px 30px 100px 30px;
  }

  section.courses .item img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }

  section.courses .item .down-content {
    padding: 30px;
    background-color: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  section.courses .item .down-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #1e1e1e;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  section.courses .item .down-content p {
    margin-bottom: 25px;
  }

  section.courses .item .down-content img {
    width: 40px;
    border: 2px solid #f5a425;
    border-radius: 50%;
    text-align: left;
    display: inline-block;
  }

  section.courses .item .down-content .text-button-pay {
    float: right;
    display: inline-block;
    margin-top: -30px;
  }

  section.courses .item .down-content .text-button-pay a {
    color: #f5a425;
    font-size: 13px;
  }

  section.courses .item .down-content .text-button-free {
    float: right;
    display: inline-block;
    margin-top: -30px;
  }

  section.courses .item .down-content .text-button-free a {
    color: #7a7a7a;
    font-size: 13px;
  }

  section.courses .owl-carousel .owl-nav {
    display: none;
  }

  section.courses .owl-carousel .owl-dots {
    text-align: center;
  }

  section.courses .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 50px 10px 0px 10px;
    outline: none;
  }

  section.courses .owl-carousel button.active {
    background-color: #f5a425;
  }





  /* Video */

  section.video {
    background: #2b3990;
    background-repeat: no-repeat;
    background-size: cover;
   
    padding: 120px 0px;
  }

  section.video .left-content {
    color: #ffffff;
  }

  section.video .left-content span {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  section.video .left-content h4 {
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  section.video .left-content h4 em {
    font-style: normal;
    color: #f5a425;
  }

  section.video .left-content .main-button {
    margin-top: 30px;
  }

  .video-item {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0px auto 0;
  }

  @media screen and (max-width: 767px) {

    section.video .left-content {
      margin-bottom: 45px;
    }

    section.video .first-item .first-content h4,
    section.video .second-item .second-content h4 {
      text-align: center;
    }

  }

  .video-item figure {
    position: relative;
    width: 100%;
    font-size: 0;
  }

  .video-item figure img {
    width: 100%;
  }

  .video-item figure a:before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 60px;
    height: 60px;
    margin-top: -32.5px;
    margin-left: -32.5px;
    border-radius: 50%;
    background-color: #f5a425;
    z-index: 10;
  }

  .video-item figure a:after {
    content: '';
    position: absolute;
    bottom: 27.5px;
    right: 20px;
    margin-top: -12.5px;
    margin-left: -7px;
    border: solid 13px transparent;
    border-left: solid 20px;
    border-left-color: #fff;
    z-index: 10;
  }

  .video-item figure a:hover:before {
    background-color: #f5a425;
  }

  .video-item .video-caption {
    position: absolute;
    z-index: 10;
    background-color: rgba(250, 250, 250, 0.75);
    height: 80px;
    width: 100%;
    padding: 27px 30px;
    bottom: 0;
  }

  .video-item .video-caption h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
  }

  /* Magnific Popup CSS */
  .mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
  }

  .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
  }

  .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

  .mfp-align-top .mfp-container:before {
    display: none;
  }

  .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
  }

  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
  }

  .mfp-ajax-cur {
    cursor: progress;
  }

  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
  }

  .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
  }

  .mfp-auto-cursor .mfp-content {
    cursor: auto;
  }

  .mfp-close,
  .mfp-arrow,
  .mfp-preloader,
  .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .mfp-loading.mfp-figure {
    display: none;
  }

  .mfp-hide {
    display: none !important;
  }

  .mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
  }

  .mfp-preloader a {
    color: #CCC;
  }

  .mfp-preloader a:hover {
    color: #FFF;
  }

  .mfp-s-ready .mfp-preloader {
    display: none;
  }

  .mfp-s-error .mfp-content {
    display: none;
  }

  button.mfp-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
  }

  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }

  .mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
  }

  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
  }

  .mfp-close:active {
    top: 1px;
  }

  .mfp-close-btn-in .mfp-close {
    color: #333;
  }

  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
  }

  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }

  .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
  }

  .mfp-arrow:active {
    margin-top: -54px;
  }

  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
  }

  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
  }

  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
  }

  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
  }

  .mfp-arrow-left {
    left: 0;
  }

  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
  }

  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
  }

  .mfp-arrow-right {
    right: 0;
  }

  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
  }

  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
  }

  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }

  .mfp-iframe-holder .mfp-close {
    top: -40px;
  }

  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }

  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }

  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
  }

  /* The shadow behind the image */
  .mfp-figure {
    line-height: 0;
  }

  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
  }

  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }

  .mfp-figure figure {
    margin: 0;
  }

  .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
  }

  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
  }

  .mfp-image-holder .mfp-content {
    max-width: 100%;
  }

  .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
  }

  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
      padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px;
    }

    .mfp-img-mobile .mfp-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0;
    }
  }

  @media all and (max-width: 900px) {
    .mfp-arrow {
      -webkit-transform: scale(0.75);
      transform: scale(0.75);
    }

    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0;
    }

    .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      transform-origin: 100%;
    }

    .mfp-container {
      padding-left: 6px;
      padding-right: 6px;
    }
  }



  /* Contact */

  section.contact {
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding-bottom: 120px;
  }


  section.contact form {
    background-color: rgba(250, 250, 250, 0.1);
    padding: 30px;
    width: 100%;
  }


  @media screen and (max-width: 767px) {
    section.contact form {
      margin-bottom: 30px;
    }
  }

  section.contact form input {
    width: 100%;
    height: 40px;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  }

  section.contact form textarea {
    width: 100%;
    height: 220px;
    max-height: 280px;
    min-height: 220px;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  }

  section.contact form input:focus,
  section.contact form textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
  }

  section.contact form::placeholder {
    color: #fff
  }

  section.contact form input::placeholder {
    color: #fff;
  }

  section.contact form input::placeholder {
    color: #fff;
  }

  section.contact form::placeholder {
    color: #fff
  }

  section.contact form textarea::placeholder {
    color: #fff;
  }

  section.contact form textarea::placeholder {
    color: #fff;
  }

  section.contact form button {
    background-color: #f5a425;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
  }

  /* Footer */

  footer {
    background-color: #141d38;
    text-align: center;
  }

  footer p {
    margin-bottom: 0px;
    padding: 25px 0px;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  footer p a,
  footer p a:hover {
    color: #f5a425;
  }

  @media screen and (max-width: 992px) {
    .features {
      background-color: #0c1228;
    }

    .features-content {
      position: relative;
    }

    .features-post {
      border-left: 0
    }
  }

  @media screen and (max-width: 950px) {
    .main-menu {
      padding-right: 0 !important;
    }

    .main-header .logo {
      line-height: 73px;
    }

    .main-menu li {
      display: block;
      line-height: 1;
      margin-left: 0 !important;
    }

    .main-menu li .sub-menu {
      opacity: 1;
      visibility: visible;
      position: static;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }

    .main-menu li .sub-menu li:last-child {
      border-bottom: 1px solid rgba(250, 250, 250, 0.25);
    }
  }

  @media screen and (max-width: 950px) and (max-height: 400px) {
    nav[role="navigation"].active {
      max-height: calc(80px + 100vh);
      overflow-y: auto;
    }
  }

  @media screen and (max-width: 767px) {
    footer p {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.25px;
    }
  }


  /* ===== GLOBAL STYLES ===== */
  :root {
    --primary-dark: #001f3f;
    --primary-blue: #003366;
    --primary-orange: #f5a425;
    --light-bg: #f8f9fa;
  }

  /* Reset conflicting styles */
  section {
    margin: 0 !important;
    padding: 80px 0 !important;
    display: block !important;
    clear: both !important;
  }

  /* Remove default padding conflicts */
  .py-5, .py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  @media (min-width: 992px) {
    .py-lg-6 {
      padding-top: 4rem !important;
      padding-bottom: 4rem !important;
    }
  }

  /* Color Definitions */
  .text-primary {
    color: var(--primary-dark) !important;
  }

  .bg-primary {
    background-color: var(--primary-dark) !important;
  }

  .text-warning {
    color: var(--primary-orange) !important;
  }

  .bg-warning {
    background-color: #333333 !important;
  }

  /* Button Styles */
  .btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
  }

  .btn-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
  }

  .btn-warning {
    background-color:#2b3990;
    border-color: #ffffff;
    color: #ffffff;
  }

  .btn-warning:hover {
    background-color: #ffffff;
    border-color: #333333;
    color:#333333;
  }

  /* Remove Border Radius */
  .btn, .badge, .card, .rounded, .rounded-0, .rounded-1, .rounded-2,
  .rounded-3, .rounded-4, .rounded-5, .rounded-pill, .rounded-circle {
    border-radius: 0 !important;
  }

  /* ===== HERO SECTION ===== */
  .hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue)) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
  }

  .hero-section .badge {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-section h1 {
    font-weight: 800;
    line-height: 1.2;
  }

  .hero-section .lead {
    opacity: 0.9;
  }

  /* ===== VISION SECTION ===== */
  .vision-section {
    background:#ffffff !important;
    position: relative;
  }

  .vision-section .section-subtitle {
    position: relative;
    padding-left: 60px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .vision-section .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background: #333333;
  }

  .vision-section .section-title {
    position: relative;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }

  .vision-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: #333333;
  }

  /* Vision Stats Cards */
  .stat-card {
    background: white !important;
    border: none !important;
    border-left: 4px solid var(--primary-dark) !important;
    transition: all 0.4s ease;
    padding: 30px 25px !important;
    height: 100%;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.15) !important;
  }

  .stat-card .stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background:;
    
    line-height: 1;
  }

  .stat-card .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Vision Image Container */
  .vision-image-container {
    position: relative;
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.2);
    overflow: hidden;
  }

  .vision-image-container img {
    transition: transform 0.7s ease;
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .vision-image-container:hover img {
    transform: scale(1.1);
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.95), transparent);
    z-index: 2;
  }

  .image-overlay h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }

  .image-overlay h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 30px;
    background: var(--primary-orange);
  }

  /* ===== PROGRAMS SECTION ===== */
  .programs-section {
    background-color: #2b3990 !important;
    color: white;
  }

  .program-card {
    background-color: #ffffff;
    border: 1px solid  #ffffff;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
  }

  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 164, 37, 0.2);
  }

  .program-icon {
    background: #2b3990;
    color: #2b3990;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  /* ===== ACHIEVEMENTS SECTION ===== */
  .achievements-section .list-unstyled li {
    margin-bottom: 1rem;
  }

  .achievements-section .list-unstyled i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 0.3rem;
  }

  /* ===== COMMUNITY IMPACT SECTION ===== */
  .community-section {
    background-color: #2b3990 !important;
    color: white;
  }

  .stats-grid .stat-box {
    text-align: center;
    padding: 1.5rem;
  }

  .stats-grid .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .leadership-carousel-section {
    background: #f8f9fa;
  }

  .leadership-card {
    background: #fff;
    border: 2px solid #001f3f;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
    border-radius: 10px;
  }

  .leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 31, 63, 0.2);
    border-color: #f5a425;
  }

  .leadership-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .leadership-card:hover img {
    transform: scale(1.1);
  }

  .member-role {
    color: #f5a425;
    font-weight: 600;
  }

  .owl-carousel .owl-nav button {
    background: #001f3f;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .owl-carousel .owl-nav button:hover {
    background: #f5a425;
    color: #001f3f;
    transform: scale(1.1);
  }

  .owl-carousel .owl-dots {
    margin-top: 20px;
  }

  .owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #001f3f;
    display: block;
    border-radius: 50%;
    margin: 5px;
  }

  .owl-carousel .owl-dot.active span {
    background: #f5a425;
  }

  /* ===== FINAL CTA SECTION ===== */
  .final-cta {
    background: #ffffff !important;
    color: #333333;
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 1200px) {
    .hero-section h1 {
      font-size: 3rem;
    }

    .stat-card .stat-number {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 992px) {
    .hero-section {
      padding: 80px 0 !important;
    }

    .hero-section h1 {
      font-size: 2.5rem;
    }

    .vision-section .section-title {
      font-size: 2.5rem;
    }

    .vision-image-container img {
      height: 350px;
    }

    .leadership-card {
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 60px 0 !important;
    }

    .hero-section {
      padding: 60px 0 !important;
    }

    .hero-section h1 {
      font-size: 2.2rem;
    }

    .vision-section .section-title {
      font-size: 2rem;
    }

    .stat-card {
      padding: 20px 15px !important;
      margin-bottom: 1.5rem;
    }

    .stat-card .stat-number {
      font-size: 2rem;
    }

    .program-card {
      margin-bottom: 1.5rem;
    }

    .btn-lg {
      width: 100%;
      margin-bottom: 1rem;
    }

    .image-overlay {
      padding: 20px;
    }

    .image-overlay h5 {
      font-size: 1.3rem;
    }
  }

  @media (max-width: 576px) {
    section {
      padding: 40px 0 !important;
    }

    .hero-section {
      padding: 40px 0 !important;
    }

    .hero-section h1 {
      font-size: 1.8rem;
    }

    .hero-section .badge {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
    }

    .display-5 {
      font-size: 1.8rem;
    }

    .display-4 {
      font-size: 1.6rem;
    }

    .lead {
      font-size: 1rem;
    }

    .vision-section .section-title {
      font-size: 1.8rem;
    }

    .vision-section .section-subtitle {
      padding-left: 40px;
    }

    .vision-section .section-subtitle::before {
      width: 30px;
    }

    .stat-card .stat-icon {
      width: 50px;
      height: 50px;
    }

    .stat-card .stat-icon i {
      font-size: 1.5rem;
    }

    .stats-grid .stat-number {
      font-size: 2.2rem;
    }

    .btn-lg {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }
  }

  /* Mobile Specific Adjustments */
  @media (max-width: 768px) {
    .d-flex.flex-column.flex-sm-row {
      flex-direction: column !important;
    }

    .d-flex.flex-column.flex-sm-row .btn {
      width: 100%;
      margin-bottom: 1rem;
    }

    .text-center-mobile {
      text-align: center !important;
    }

    .row.g-4 > [class*="col-"] {
      margin-bottom: 1.5rem;
    }
  }

  /* Tablet Landscape */
  @media (min-width: 768px) and (max-width: 992px) {
    .program-card {
      padding: 1.5rem;
    }

    .leadership-card img {
      height: 250px;
    }
  }

  /* Animation for elements */
  .fade-in {
    animation: fadeIn 0.8s ease-in;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Utility Classes for Bootstrap Enhancement */
  .hover-lift {
    transition: transform 0.3s ease;
  }

  .hover-lift:hover {
    transform: translateY(-5px);
  }

  .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .border-warning {
    border-color: var(--primary-orange) !important;
  }

  .border-primary {
    border-color: var(--primary-dark) !important;
  }

  .modern-hero {
    background: #ffffff;
  }

  .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #333333;
  }

  .hero-title span {
    color: #333333;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: #333333;
    margin-top: 20px;
    max-width: 520px;
  }

  .hero-badges span {
    display: inline-flex;
    align-items: center;
    background: #2b3990;
   color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin: 6px 6px 0 0;
  }

  .hero-badges i {
    margin-right: 6px;
  }

  .hero-btn {
    background: #2b3990;
    color: #fffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
  }

  .hero-btn:hover {
    background: #2b3990;
    color: #ffffff;
  }

  .hero-card {
    background: #2b3990;
    padding: 30px;
    border-radius: 14px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .hero-card h4 {
     color: #ffffff;
    margin-bottom: 15px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .feature-item span {
    font-size: 15px;
  }

  @media(max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }

    .modern-hero {
      padding: 80px 0;
    }
  }
.course-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  border-radius:5px !important;
  flex-direction: column;
  padding: 12px !important;   /* kam padding */
}

.course-card img {
  height: 140px !important;   /* image height kam */
  width: 100%;
  object-fit: cover;
  margin-bottom: 8px !important;
}

.course-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.course-card p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px !important;
}

.course-card .d-flex {
  padding-top: 6px !important;
}





 :root {
    --primary-blue: #1c75bc;
    --button-blue: #2b3990;
    --card-bg: #e5f4fd;
    --white: #ffffff;
    --heading-color: #333333;
    --text-light: #666666;
}



/* Hero Section */
.hero-section {
    background: var(--primary-blue);
    background-size: cover;
    background-position: center;
    padding: 80px 0 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2b3990;
}

.hero-section h1 {
    color: var(--white) !important;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.stats-card {
    background: rgba(43, 57, 144, 0.1);
    border: 1px solid rgba(43, 57, 144, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--button-blue);
    box-shadow: 0 10px 30px rgba(43, 57, 144, 0.2);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 30px auto 40px;
    position: relative;
}

.search-input {
    background: var(--button-blue);
    border: 2px solid var(--button-blue);
    border-radius: 50px;
    padding: 15px 50px 15px 25px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-input:focus {
    background: var(--button-blue);
    box-shadow: 0 0 0 0.25rem rgba(43, 57, 144, 0.25);
    border-color: var(--button-blue);
    color: var(--white);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 1.2rem;
}

/* Category Filters */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-btn {
    background: var(--button-blue);
    border: 1px solid var(--button-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px !important;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    background:#2b3990;
    border-color: var(--primary-blue);
    color: #ffffff;
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 117, 188, 0.3);
}

/* Course Cards - Row Layout */
.course-row {
    background: #2b3990;
    border: 1px solid rgba(28, 117, 188, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
}

.course-row:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(28, 117, 188, 0.15);
}

.course-row-header {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid rgba(28, 117, 188, 0.1);
    position: relative;
}

.spots-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 68, 68, 0.3);
}

.course-title {
    color: var(--heading-color);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-icon {
    font-size: 1.6rem;
    color:#333333;
}

.course-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color:#333333;
}

/* Mentor Profile with Picture */
.mentor-profile {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(28, 117, 188, 0.1);
}

.mentor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(28, 117, 188, 0.3);
    flex-shrink: 0;
}

.mentor-info {
    flex: 1;
}

.mentor-name {
    color: #333333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.mentor-title {
    color:  #333333;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.mentor-desc {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Course Details - Row Layout */
.course-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

@media (max-width: 992px) {
    .course-details-row {
        grid-template-columns: 1fr;
    }
}

/* Course Outline */
.outline-section {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(28, 117, 188, 0.1);
}

.outline-title {
    color: #333333;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.timeline-card {
    background: #ffffff;
    border-left: 3px solid #333333;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
}

.timeline-card:hover {
    background: #fff;
    transform: translateX(5px);
}

.week-label {
    color: #333333;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.week-content {
    color: #333333;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Start Date & CTA */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.start-date-box {
    background: #ffffff;
    color: #333333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(28, 117, 188, 0.3);
}

.date-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.cta-button {
    background: #ffffff;
    color: #333333;
    border: none;
    padding: 15px 25px;
    border-radius: 5px !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(43, 57, 144, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1c75bc 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(28, 117, 188, 0.4);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    background: #2b3990;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-top: 60px;
    border-top: 3px solid var(--button-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(43, 57, 144, 0.1) 0%, transparent 50%);
}

.contact-section h2 {
    color: var(--white) !important;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-card {
    background: #2b3990;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.contact-card h4 {
    color: var(--white);
}

.contact-card .text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.alert {
    background: rgba(43, 57, 144, 0.1) !important;
    border-color: var(--button-blue) !important;
}

/* Headings Color */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .mentor-profile {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .mentor-avatar {
        width: 70px;
        height: 70px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .course-title {
        font-size: 1.2rem;
    }
    
    .course-meta {
        font-size: 0.8rem;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .course-row-header {
        padding: 15px;
    }
    
    .spots-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .course-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/* Minimal custom CSS - Mostly using Bootstrap classes */

/* Cards */
.card-course {
    border-radius: 5px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 380px;
    
}

.card-course:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    border-color: #1c75bc !important;
}

.card-course .card-img-top {
    height: 160px;
    object-fit: cover;
    border-radius: 0 !important;
}

.card-course .card-title {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 50px;
}

/* Rating */
.star-rating i {
    color: #f5a425;
    font-size: 0.9rem;
}

/* Buttons */
.btn-details {
    background-color: transparent;
    color: #2b3990;
    border: 1px solid #2b3990;
    border-radius: 5px !important;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: #2b3990;
    color: #ffffff;
}

.btn-enroll {
    background-color: #2b3990;
    color: #ffffff;
    border: none;
    border-radius: 5px !important;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background-color: #1c75bc;
    color: #ffffff;
}

/* Top Intro + CTA Section */
.cta-section,
.text-center.mb-4.mb-md-5.py-4.py-md-5 {
    background: #2b3990 !important;
    border-radius: 0 !important;
}

/* CTA Button */
.btn-cta {
    background-color: #2b3990;
    color: #ffffff;
    border: none;
    border-radius: 0 !important;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ffffff;
    color: #2b3990;
    transform: translateY(-2px);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

/* Text */
.text-white {
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .card-course {
        min-height: 360px;
    }

    .card-course .card-img-top {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .card-course {
        min-height: 340px;
    }

    .card-course .card-img-top {
        height: 120px;
    }
}


.support-section {
    padding: 60px 0;
    margin-top:90px;
}
.support-title {
    color: #162139;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.support-card {
    background: #ffffff; /* Card background */
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #f0f2f5;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.support-card:hover {
    border-color: #2b3990; /* Button color for border */
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(43, 57, 144, 0.15);
}
.support-card i {
    font-size: 48px;
    color: #2b3990; /* Button color for icons */
    margin-bottom: 15px;
    transition: 0.3s;
}
.support-card:hover i {
    transform: scale(1.1);
}
.support-card h5 {
    color: #333333; /* Text color for headings */
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}
.support-card:hover h5 {
    color: #2b3990; /* Button color on hover */
}
.support-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.support-card:hover a {
    text-decoration: none;
}


/*join community page css */

/* Only 3 Colors as specified */
:root {
    --bg-color: #333333;        /* Dark Gray for background */
    --card-bg: #ffffff;         /* White for cards */
    --accent: #2b3990;          /* Royal Blue for buttons and accents */
}

/* Global Styles */
body {
   
    color: #ffffff;
    font-family: "Poppins", "Montserrat", "Open Sans", sans-serif;
}

/* HERO SECTION */
.hero-section {
    background: #2b3990;
    padding: 120px 0;
    border-bottom: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b3990 ;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 900;
    color: var(--card-bg);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-title span {
    background: linear-gradient(90deg, var(--card-bg), #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stats-row h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
}

.stats-row p {
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* SOCIAL CARDS */
.social-card {
    background:#ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(43, 57, 144, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.social-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(43, 57, 144, 0.2);
    border-color: var(--accent);
}

.social-card h4 {
    color: var(--bg-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.social-card p {
    color: #666666;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ICONS */
.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--card-bg);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Keep original social media brand colors for recognition */
.fb { background: #1877f2; }
.yt { background: #ff0000; }
.wa { background: #25d366; }

/* BUTTON */
.join-btn {
    background: var(--accent);
    color: var(--card-bg);
    border: none;
    padding: 12px 28px;
    border-radius: 5px !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    background: var(--accent);
    color: var(--card-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 57, 144, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 57, 144, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(43, 57, 144, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 57, 144, 0);
    }
}

/* Apply animations */
.social-card {
    animation: fadeInUp 0.8s ease-out;
}

.social-icon {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .social-card {
        padding: 30px 20px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .stats-row h3 {
        font-size: 1.5rem;
    }
}

/*end of join community page */


/*profile page css start here */

:root {
    --bg-main: #2b3990;
    --card-bg: #ffffff;
    --text-main: #333333;
    --primary: #2b3990;
}

/* Page Background */
.profile-container {
    margin-top: 120px;
    padding: 60px 20px;
    min-height: 80vh;
    background: linear-gradient(135deg, #2b3990, #1f2b6f);
    color: var(--text-main);
}

/* Card */
.profile-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    text-align: center;
}

/* Avatar */
.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin-bottom: 15px;
}

/* User Info */
.user-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.user-email {
    color: var(--text-main);
    margin-bottom: 30px;
}

/* Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-box {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e6e6e6;
}

.info-label {
    font-size: .85rem;
    color: #666;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-main);
}

/* Actions */
.actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-main:hover {
    background: #1f2b6f;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    background: transparent;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

/*profile page css end here */

/*view page css start here */

:root {
    --primary-dark: #151e31;
    --primary-orange: #f5a425;
    --light-bg: #f8f9fa;
    --dark-gradient: linear-gradient(135deg, #151e31 0%, #0a0f1a 100%);
}

/* ===== Global Reset ===== */

/* ===== Hero Banner ===== */
.hero-banner-view-page {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #2b3990; /* Solid background */
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top:120px;
}

/* REMOVE background image */
.hero-banner-view-page::before {
    content: none;
}
/*.hero-banner::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('{{ asset('storage/'.$course->thumbnail) }}') center/cover no-repeat;*/
/*    z-index: -1;*/
/*    filter: blur(3px) brightness(0.7);*/
/*}*/

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 3rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== Hero Stats ===== */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Enroll Button ===== */
.btn-enroll-hero {
     background: linear-gradient(45deg, #ffffff, #e0e0e0); /
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(245, 164, 37, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enroll-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 164, 37, 0.5);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
}

/* ===== Main Content Container ===== */
.main-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* ===== Course Description ===== */
.description-section {
    padding: 2.5rem;
    border-bottom: 1px solid #eee;
}

.section-title {
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
   
    border-radius: 2px;
}

/* ===== New Module Button Design ===== */
.module-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.module-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(245, 164, 37, 0.15);
}

.module-number-btn {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--dark-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(21, 30, 49, 0.3);
}

.module-item:hover .module-number-btn {
    background: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 164, 37, 0.4);
}

.module-content {
    flex: 1;
}

.module-content h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.module-description {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* For paragraphs instead of lists */
.module-paragraph {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* For lists inside modules */
.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.module-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* ===== Lessons Container ===== */
.lessons-container {
    padding: 2.5rem;
}

/* ===== Lesson Box ===== */
.lesson-box {
    background: #2b3990;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
    position: relative;
    overflow: hidden;
}

.lesson-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(21, 30, 49, 0.3);
}

.lesson-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
   ;
}

.lesson-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
}

.lesson-icon {
    background: #ffffff;
    width: 50px;
    color:#333333;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.lesson-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: auto;
}

/* ===== Lesson Items ===== */
.lesson-item {
    background: rgba(255, 255, 255, 0.05);
    
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.lesson-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.lesson-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.lesson-info i {
    color: #ffffff;
}

.btn-watch {
    background: transparent;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    padding: 0.4rem 1rem;
    border-radius: 5px !important;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    background: #ffffff;
    color: #333333;
}

/* ===== Locked State ===== */
.locked-badge {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* ===== Empty State ===== */
.empty-lesson {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.empty-lesson i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}
/* Modal Dialog Height Increase */
.video-modal .modal-dialog {
    max-width: 90%;
    height: 90vh; /* Modal overall height */
}

/* Video Player Height Increase */
.video-player {
    width: 100%;
    height: 80vh; /* Pehle 60vh tha */
    background: #000;
}

/* Iframe (YouTube etc) height fix */
.video-modal .ratio {
    height: 80vh;
}

/* ===== Modal ===== */
.video-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.video-modal .modal-header {
    background: var(--dark-gradient);
    color: white;
    border-bottom: 3px solid var(--primary-orange);
}

.modal-close {
    filter: brightness(0) invert(1);
}

.video-player {
    width: 100%;
    height: 60vh;
    background: #000;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        padding: 1rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .main-container {
        margin-top: -30px;
    }

    .content-card {
        border-radius: 10px;
    }

    .description-section,
    .lessons-container {
        padding: 1.5rem;
    }

    .lesson-box {
        margin-bottom: 1.5rem;
    }
    
    .module-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .module-number-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-enroll-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .lesson-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lesson-count {
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    .module-number-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===== Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeInUp 0.6s ease-out;
}

.lesson-box {
    animation: fadeInUp 0.8s ease-out;
}

.module-item {
    animation: fadeInUp 0.5s ease-out;
}

.curriculum-section,
.enroll-section {
    background: #ffffff;
    border-radius: 18px;
    color: #fff;
}

.curriculum-title {
   position: relative;
                   font-weight: 900;
                   color:#333333;
                   line-height: 1.2;
                   padding-bottom: 20px;
                   margin-bottom: 25px;
                   color:#333333;
}

.curriculum-subtitle {
    color: #333333;
    max-width: 720px;
    margin: 10px auto 0;
}

.curriculum-box {
    background: #2b3990;
    
    padding: 22px 24px;
    border-radius: 14px;
    height: 100%;
    transition: all 0.3s ease;
}

.curriculum-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.curriculum-box h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.curriculum-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-box ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    color: #e5eefc;
}

.curriculum-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5a425;
    font-weight: bold;
}
.special-section {
    background-color: #2b3990; /* Dark blue background */
    color: #ffffff;
}

.special-title {
    color: #ffffff; /* Orange heading */
    font-weight: 700;
    font-size: 2rem;
}

.special-subtitle {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.8;
}

/* Cards */
.special-card.compact {
    background-color: #ffffff; /* Slightly lighter dark blue */
    border-radius: 12px;
    color:#333333;
    padding: 18px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.special-card.compact:hover {
    background-color: #ffffff; /* Orange hover */
    color: #333333; /* Dark text on hover */
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-weight: 600;
}

.icon-title h4 {
    margin: 0;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.special-card.compact:hover .icon-title h4 {
    color: #333333; /* Dark heading on hover */
}

.special-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333; /* Orange icon */
    transition: color 0.3s ease;
}

.special-card.compact:hover .special-icon {
    color: #333333; /* Dark icon on hover */
}




:root {
    --dark-blue:#0a192f; --medium-blue:#112240;
    --orange:#f5a425; --orange-light:#ffb74d;
    --text:#ccd6f6; --text-light:#a8b2d1;
}

/* Tasks Section */
.tasks-section {
    background: #ffffff;
    position:relative; overflow:hidden; color:#333333;
}
.tasks-section::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:5px;

}

/* Titles */
.title {text-align:center; font-size:2.5rem; font-weight:700; margin-bottom:15px; position:relative;}
.title::after {content:''; position:absolute; bottom:-10px; left:50%; transform:translateX(-50%); width:80px; height:4px; border-radius:2px;}
.subtitle {text-align:center; color:var(--text-light); font-size:1.1rem; max-width:600px; margin:0 auto 20px; line-height:1.6;}

/* Cards */
.task-card {background:#2b3990; border-radius:15px; padding:30px; box-shadow:0 10px 30px rgba(0,0,0,0.3); border-top:4px solid transparent; transition:0.4s;color:#ffffff;}
.task-card:hover {transform:translateY(-8px); box-shadow:0 15px 40px rgba(245,164,37,0.2);}
.daily-tasks {border-top-color:#333333;}
.assignments {border-top-color:#333333;}

/* Header */
.header {display:flex; align-items:center; margin-bottom:25px; padding-bottom:20px; border-bottom:2px solid rgba(245,164,37,0.2);}
.icon {width:50px; height:50px; display:flex; align-items:center; justify-content:center; margin-right:15px; font-size:1.5rem; color:#ffffff;}
.badge {background:#ffffff; color:#333333; padding:5px 15px; border-radius:20px; font-size:0.85rem; font-weight:600;}

/* Task List */
.list .item {display:flex; align-items:flex-start; margin-bottom:12px; padding:10px; border-radius:8px; background:rgba(255,255,255,0.03);}
.list .item:hover {background:rgba(245,164,37,0.05); transform:translateX(5px);}
.check {margin-right:12px; color:#ffffff; font-size:1.1rem;}

/* Progress */
.progress-container {margin-top:20px; border-top:1px solid rgba(255,255,255,0.1); padding-top:10px;}
.progress {height:8px; background:rgba(255,255,255,0.1); border-radius:4px; overflow:hidden;}
.progress-bar {height:100%; background:; transition:width 1s;}
.progress-container span {display:flex; justify-content:space-between; font-size:0.95rem; font-weight:500;}
.special-card.compact {
    padding: 18px 20px;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.icon-title h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #333333;
    font-weight: 600;
}

.special-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

/*view page css end here */



   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
    @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: #f8f9fa;
        overflow-x: hidden;
        width: 100%;
    }

    /* Main Container - Responsive */
    .career-portal {
        width: 100%;
        max-width: 1400px;
        margin: 150px auto 40px;
        padding: 0 20px;
        animation: fadeIn 0.8s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Header Section */
    .portal-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .portal-header h2 {
        font-size: 42px;
        font-weight: 800;
        color: #333333;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        word-break: break-word;
    }

    .portal-header h2 i {
        color: #2b3990;
        font-size: 48px;
        background: linear-gradient(135deg, #2b3990, #333333);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .portal-header p {
        color: #666666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .portal-header p i {
        color: #2b3990;
        margin: 0 8px;
        font-size: 14px;
    }

    /* Filter Section - Responsive */
    .filter-section {
        background: white;
        border-radius: 60px;
        padding: 20px 30px;
        margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .search-box {
        flex: 1;
        min-width: 250px;
        position: relative;
    }

    .search-box input {
        width: 100%;
        padding: 12px 20px 12px 45px;
        border: 2px solid #e0e0e0;
        border-radius: 40px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .search-box input:focus {
        outline: none;
        border-color: #2b3990;
        box-shadow: 0 0 0 3px rgba(43, 57, 144, 0.1);
    }

    .search-box i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #2b3990;
        font-size: 16px;
    }

    .filter-tabs {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-tab {
        padding: 8px 20px;
        background: #f8f9fa;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        color: #666666;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        white-space: nowrap;
    }

    .filter-tab:hover {
        background: #e0e0e0;
        color: #333333;
    }

    .filter-tab.active {
        background: #2b3990;
        color: white;
    }

    /* Course Grid - Responsive */
    .course-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 25px;
        margin-top: 30px;
        width: 100%;
    }

    /* Course Card */
    .course-card {
        background: #ffffff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid rgba(43, 57, 144, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(43, 57, 144, 0.2);
        border-color: #2b3990;
    }

    .course-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2b3990, #333333, #2b3990);
    }

    /* Course Header */
    .course-header {
        padding: 25px 20px 15px;
        text-align: center;
        border-bottom: 1px dashed rgba(43, 57, 144, 0.2);
    }

    .course-icon {
        width: 70px;
        height: 70px;
        background: #f0f2f8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: #2b3990;
        font-size: 30px;
        transition: all 0.3s ease;
    }

    .course-card:hover .course-icon {
        background: #2b3990;
        color: #ffffff;
        transform: rotateY(180deg);
    }

    .course-title {
        font-size: 18px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 8px;
        line-height: 1.4;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        word-break: break-word;
        padding: 0 5px;
    }

    .course-badge {
        display: inline-block;
        padding: 5px 12px;
        background: rgba(43, 57, 144, 0.1);
        color: #2b3990;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Course Body */
    .course-body {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Platform Buttons Container */
    .platform-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

    /* Platform Button Base Styles */
    .platform-btn {
        width: 100%;
        padding: 12px 16px;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: white;
        position: relative;
        overflow: hidden;
        word-break: break-word;
        text-align: center;
    }

    .platform-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .platform-btn:hover::before {
        left: 100%;
    }

    .platform-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .platform-btn i {
        font-size: 18px;
        flex-shrink: 0;
    }

    /* Platform Button Colors */
    /* LinkedIn - Vibrant Blue */
.btn-linkedin { 
    background: #0A66C2; 
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}
.btn-linkedin:hover { 
    background: #004182; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

/* Indeed - Electric Blue */
.btn-indeed { 
    background: #003A9B; 
    box-shadow: 0 4px 12px rgba(0, 58, 155, 0.3);
}
.btn-indeed:hover { 
    background: #002B73; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 58, 155, 0.4);
}

/* Rozee.pk - Emerald Green */
.btn-rozee { 
    background: #2E7D32; 
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.btn-rozee:hover { 
    background: #1B5E20; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

/* Fiverr - Mint Green */
.btn-fiverr { 
    background: #00B464; 
    box-shadow: 0 4px 12px rgba(0, 180, 100, 0.3);
}
.btn-fiverr:hover { 
    background: #00934F; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 180, 100, 0.4);
}

/* Upwork - Forest Green */
.btn-upwork { 
    background: #13544E; 
    box-shadow: 0 4px 12px rgba(19, 84, 78, 0.3);
}
.btn-upwork:hover { 
    background: #0D403B; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 84, 78, 0.4);
}

/* Freelancer - Sky Blue */
.btn-freelancer { 
    background: #29B6F6; 
    box-shadow: 0 4px 12px rgba(41, 182, 246, 0.3);
}
.btn-freelancer:hover { 
    background: #039BE5; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 182, 246, 0.4);
}

/* Guru - Royal Purple */
.btn-guru { 
    background: #7B1FA2; 
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.3);
}
.btn-guru:hover { 
    background: #5E1B7A; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 31, 162, 0.4);
}

/* PeoplePerHour - Coral */
.btn-peopleperhour { 
    background: #FF6F61; 
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}
.btn-peopleperhour:hover { 
    background: #E65A4F; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}

/* Toptal - Teal */
.btn-toptal { 
    background: #009688; 
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.3);
}
.btn-toptal:hover { 
    background: #00796B; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.4);
}

/* SimplyHired - Sunset Orange */
.btn-simplyhired { 
    background: #FF9800; 
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}
.btn-simplyhired:hover { 
    background: #F57C00; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

/* Glassdoor - Grass Green */
.btn-glassdoor { 
    background: #4CAF50; 
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.btn-glassdoor:hover { 
    background: #388E3C; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* AngelList - Warm Gray */
.btn-angellist { 
    background: #5D4037; 
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.3);
}
.btn-angellist:hover { 
    background: #4E342E; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.4);
}

/* Craigslist - Deep Purple */
.btn-craigslist { 
    background: #512DA8; 
    box-shadow: 0 4px 12px rgba(81, 45, 168, 0.3);
}
.btn-craigslist:hover { 
    background: #4527A0; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 45, 168, 0.4);
}

/* Monster - Fiery Red */
.btn-monster { 
    background: #D32F2F; 
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}
.btn-monster:hover { 
    background: #B71C1C; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

/* CareerBuilder - Cyan */
.btn-careerbuilder { 
    background: #00ACC1; 
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.3);
}
.btn-careerbuilder:hover { 
    background: #0097A7; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 172, 193, 0.4);
}

/* Dice - Crimson */
.btn-dice { 
    background: #C2185B; 
    box-shadow: 0 4px 12px rgba(194, 24, 91, 0.3);
}
.btn-dice:hover { 
    background: #AD1457; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

/* Assessment Button - Modern Gradient */
.assessment-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #2b3990, #1f2a6b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 15px rgba(43, 57, 144, 0.3);
    position: relative;
    overflow: hidden;
}

.assessment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.assessment-btn:hover {
    background: linear-gradient(135deg, #1f2a6b, #2b3990);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 57, 144, 0.4);
}

.assessment-btn:hover::before {
    left: 100%;
}

.assessment-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.assessment-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.assessment-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

    .assessment-btn i {
        transition: transform 0.3s ease;
    }

    .assessment-btn[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    /* Skill Assessment Section */
    .assessment-section {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 20px;
        margin-top: 15px;
        border-left: 4px solid #2b3990;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
        width: 100%;
    }

    .assessment-title {
        font-size: 16px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        word-break: break-word;
    }

    .assessment-title i {
        color: #2b3990;
        font-size: 18px;
        flex-shrink: 0;
    }

    .question-item {
        margin-bottom: 15px;
        padding: 10px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
        width: 100%;
    }

    .question-text {
        font-size: 14px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .radio-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }

    .radio-option {
        flex: 1;
        min-width: 100px;
        position: relative;
    }

    .radio-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .radio-option label {
        display: block;
        padding: 8px 12px;
        background: #f0f2f8;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        color: #333333;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 2px solid transparent;
        word-break: break-word;
    }

    .radio-option input[type="radio"]:checked + label {
        background: #2b3990;
        color: white;
        border-color: #2b3990;
        transform: scale(1.02);
    }

    .assessment-footer {
        margin-top: 15px;
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .submit-assessment {
        padding: 10px 20px;
        background: #2b3990;
        color: white;
        border: none;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-assessment:hover {
        background: #1f2a6b;
        transform: translateY(-2px);
    }

    .reset-assessment {
        padding: 10px 20px;
        background: transparent;
        color: #666666;
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .reset-assessment:hover {
        background: #f0f2f8;
        color: #333333;
    }

    .assessment-progress {
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
        margin-top: 10px;
        overflow: hidden;
        width: 100%;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #2b3990, #333333);
        width: 0%;
        transition: width 0.3s ease;
    }

    .result-message {
        margin-top: 15px;
        padding: 10px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        display: none;
        word-break: break-word;
    }

    .result-message.success {
        display: block;
        background: rgba(43, 57, 144, 0.1);
        color: #2b3990;
        border-left: 3px solid #2b3990;
    }

    .course-count {
        margin-top: 20px;
        text-align: right;
        color: #666666;
        font-size: 14px;
        padding: 0 10px;
    }

    .course-count span {
        color: #2b3990;
        font-weight: 700;
    }

    /* ===== RESPONSIVE BREAKPOINTS ===== */

    /* Extra Large Devices (1400px and up) */
    @media (min-width: 1400px) {
        .career-portal {
            max-width: 1600px;
            padding: 0 30px;
        }
        
        .course-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .portal-header h2 {
            font-size: 48px;
        }
    }

    /* Large Devices (1200px to 1399px) */
    @media (max-width: 1399px) and (min-width: 1200px) {
        .course-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .portal-header h2 {
            font-size: 42px;
        }
    }

    /* Desktop (992px to 1199px) */
    @media (max-width: 1199px) and (min-width: 992px) {
        .career-portal {
            margin: 110px auto 35px;
        }
        
        .course-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .portal-header h2 {
            font-size: 38px;
        }
        
        .course-title {
            font-size: 16px;
        }
        
        .platform-btn {
            font-size: 13px;
            padding: 10px 12px;
        }
    }

    /* Tablet (768px to 991px) */
    @media (max-width: 991px) and (min-width: 768px) {
        .career-portal {
            margin: 130px auto 30px;
            padding: 0 15px;
        }
        
        .course-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .portal-header h2 {
            font-size: 34px;
        }
        
        .portal-header p {
            font-size: 16px;
        }
        
        .filter-section {
            padding: 15px 20px;
            border-radius: 40px;
        }
        
        .filter-tabs {
            gap: 8px;
        }
        
        .filter-tab {
            padding: 6px 16px;
            font-size: 13px;
        }
        
        .course-title {
            font-size: 16px;
            min-height: 45px;
        }
        
        .course-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }
        
        .platform-btn {
            font-size: 13px;
            padding: 10px 12px;
        }
        
        .radio-group {
            gap: 10px;
        }
        
        .radio-option {
            min-width: 80px;
        }
        
        .radio-option label {
            font-size: 12px;
            padding: 6px 8px;
        }
    }

    /* Mobile Landscape (576px to 767px) */
    @media (max-width: 767px) and (min-width: 576px) {
        .career-portal {
            margin: 190px auto 25px;
            padding: 0 12px;
        }
        
        .course-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .portal-header h2 {
            font-size: 28px;
            gap: 8px;
        }
        
        .portal-header h2 i {
            font-size: 32px;
        }
        
        .portal-header p {
            font-size: 14px;
            padding: 0 10px;
        }
        
        .filter-section {
            padding: 15px;
            border-radius: 30px;
            flex-direction: column;
            align-items: stretch;
        }
        
        .search-box {
            width: 100%;
        }
        
        .filter-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 5px;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        
        .filter-tab {
            padding: 6px 14px;
            font-size: 12px;
            white-space: nowrap;
        }
        
        .course-card {
            border-radius: 25px;
        }
        
        .course-header {
            padding: 20px 15px 10px;
        }
        
        .course-icon {
            width: 50px;
            height: 50px;
            font-size: 22px;
        }
        
        .course-title {
            font-size: 14px;
            min-height: 40px;
        }
        
        .course-badge {
            font-size: 10px;
            padding: 4px 10px;
        }
        
        .course-body {
            padding: 15px;
            gap: 10px;
        }
        
        .platform-buttons {
            gap: 8px;
        }
        
        .platform-btn {
            padding: 8px 12px;
            font-size: 12px;
        }
        
        .platform-btn i {
            font-size: 14px;
        }
        
        .assessment-btn {
            padding: 10px 15px;
            font-size: 13px;
        }
        
        .assessment-section {
            padding: 15px;
        }
        
        .assessment-title {
            font-size: 14px;
        }
        
        .question-item {
            padding: 8px;
        }
        
        .question-text {
            font-size: 13px;
        }
        
        .radio-group {
            flex-direction: column;
            gap: 8px;
        }
        
        .radio-option {
            width: 100%;
        }
        
        .radio-option label {
            font-size: 12px;
        }
        
        .assessment-footer {
            justify-content: center;
        }
        
        .submit-assessment, .reset-assessment {
            padding: 8px 16px;
            font-size: 12px;
        }
        
        .course-count {
            font-size: 13px;
        }
    }

    /* Mobile Portrait (375px to 575px) */
    @media (max-width: 575px) and (min-width: 376px) {
        .career-portal {
            margin: 180px auto 20px;
            padding: 0 10px;
        }
        
        .course-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .portal-header h2 {
            font-size: 24px;
            gap: 6px;
        }
        
        .portal-header h2 i {
            font-size: 28px;
        }
        
        .portal-header p {
            font-size: 13px;
            padding: 0 5px;
        }
        
        .filter-section {
            padding: 12px;
            border-radius: 25px;
            flex-direction: column;
            align-items: stretch;
        }
        
        .search-box input {
            padding: 10px 15px 10px 40px;
            font-size: 13px;
        }
        
        .search-box i {
            left: 15px;
            font-size: 14px;
        }
        
        .filter-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 5px;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        
        .filter-tab {
            padding: 5px 12px;
            font-size: 11px;
        }
        
        .course-card {
            border-radius: 20px;
        }
        
        .course-header {
            padding: 18px 12px 8px;
        }
        
        .course-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .course-title {
            font-size: 14px;
            min-height: auto;
            margin-bottom: 5px;
        }
        
        .course-badge {
            font-size: 9px;
            padding: 3px 8px;
        }
        
        .course-body {
            padding: 12px;
            gap: 8px;
        }
        
        .platform-buttons {
            gap: 6px;
        }
        
        .platform-btn {
            padding: 8px 10px;
            font-size: 12px;
            gap: 6px;
        }
        
        .platform-btn i {
            font-size: 14px;
        }
        
        .assessment-btn {
            padding: 8px 12px;
            font-size: 12px;
            margin-top: 2px;
        }
        
        .assessment-section {
            padding: 12px;
        }
        
        .assessment-title {
            font-size: 13px;
            margin-bottom: 10px;
        }
        
        .question-item {
            padding: 8px;
            margin-bottom: 10px;
        }
        
        .question-text {
            font-size: 12px;
            margin-bottom: 6px;
        }
        
        .radio-group {
            flex-direction: column;
            gap: 6px;
        }
        
        .radio-option label {
            font-size: 11px;
            padding: 6px 8px;
        }
        
        .assessment-footer {
            justify-content: center;
            gap: 8px;
        }
        
        .submit-assessment, .reset-assessment {
            padding: 6px 14px;
            font-size: 11px;
        }
        
        .course-count {
            font-size: 12px;
            margin-top: 15px;
        }
    }

    /* Small Mobile (320px to 374px) */
    @media (max-width: 375px) {
        .career-portal {
            margin: 170px auto 15px;
            padding: 0 8px;
        }
        
        .course-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .portal-header {
            margin-bottom: 30px;
        }
        
        .portal-header h2 {
            font-size: 20px;
            gap: 4px;
        }
        
        .portal-header h2 i {
            font-size: 24px;
        }
        
        .portal-header p {
            font-size: 12px;
            padding: 0 3px;
        }
        
        .filter-section {
            padding: 10px;
            border-radius: 20px;
            flex-direction: column;
            align-items: stretch;
        }
        
        .search-box input {
            padding: 8px 12px 8px 35px;
            font-size: 12px;
        }
        
        .search-box i {
            left: 12px;
            font-size: 13px;
        }
        
        .filter-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 3px;
            flex-wrap: nowrap;
        }
        
        .filter-tab {
            padding: 4px 10px;
            font-size: 10px;
        }
        
        .course-card {
            border-radius: 18px;
        }
        
        .course-header {
            padding: 15px 10px 5px;
        }
        
        .course-icon {
            width: 40px;
            height: 40px;
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .course-title {
            font-size: 13px;
            min-height: auto;
            margin-bottom: 3px;
        }
        
        .course-badge {
            font-size: 8px;
            padding: 2px 6px;
        }
        
        .course-body {
            padding: 10px;
            gap: 6px;
        }
        
        .platform-buttons {
            gap: 5px;
        }
        
        .platform-btn {
            padding: 6px 8px;
            font-size: 11px;
            gap: 4px;
        }
        
        .platform-btn i {
            font-size: 12px;
        }
        
        .assessment-btn {
            padding: 6px 10px;
            font-size: 11px;
            margin-top: 0;
        }
        
        .assessment-section {
            padding: 10px;
        }
        
        .assessment-title {
            font-size: 12px;
            margin-bottom: 8px;
        }
        
        .question-item {
            padding: 6px;
            margin-bottom: 8px;
        }
        
        .question-text {
            font-size: 11px;
            margin-bottom: 4px;
        }
        
        .radio-group {
            flex-direction: column;
            gap: 4px;
        }
        
        .radio-option label {
            font-size: 10px;
            padding: 5px 6px;
        }
        
        .assessment-footer {
            justify-content: center;
            gap: 6px;
        }
        
        .submit-assessment, .reset-assessment {
            padding: 5px 12px;
            font-size: 10px;
        }
        
        .course-count {
            font-size: 11px;
            margin-top: 12px;
        }
    }

    /* Landscape Mode for Mobile */
    @media (max-height: 500px) and (orientation: landscape) {
        .career-portal {
            margin: 160px auto 15px;
        }
        
        .portal-header {
            margin-bottom: 20px;
        }
        
        .portal-header h2 {
            font-size: 24px;
        }
        
        .course-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Hide scrollbar for filter tabs but keep functionality */
    .filter-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .filter-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
  