    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        /* background-color: crimson; */
        background-color: #1e2a3f;

        color: #333;
        line-height: 1.6;
    }

    /* Header Styles */
    header {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 5px 0;
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
    }


    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 1200px;
        margin: 0 auto;

    }

    .logo img {
        height: 70px;
        width: auto;
        z-index: 1002;
        /* Higher than menu */
    }


    /* Hero Section */
    .hero {
        background-color: #003893;
        color: white;
        padding: 10px 10px;
        text-align: center;
        border-top: silver 4px solid;
        border-bottom: silver 4px solid;
        margin-top: 110px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    /* Main Content Layout */
    .main-container {
        max-width: 1200px;
        margin: 30px auto;
        display: flex;
        gap: 30px;
        padding: 0 20px;
    }

    /* Sidebar Filters */
    .sidebar {
        width: 280px;
        flex-shrink: 0;
        background-color: #003893;
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        padding: 20px;
        height: fit-content;
        border: silver 4px solid;
    }

    .sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #fff;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .sidebar a {
        color: #fff;
    }

    .sidebar li {
        color: #fff;
    }

    .sidebar input,
    .sidebar select,
    .sidebar textarea,
    .sidebar form label {
        color: #fff;
    }

    .filter-group {
        margin-bottom: 25px;
    }

    .filter-group h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .filter-options {
        list-style: none;
    }

    .filter-options li {
        margin-bottom: 10px;
    }

    .filter-options label {
        display: flex;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-size: 0.95rem;
    }

    .filter-options input[type="checkbox"] {
        margin-right: 10px;
        accent-color: #2b6cb0;
    }

    .filter-options label:hover {
        color: #2b6cb0;
    }

    .price-range {
        width: 100%;
        margin-top: 10px;
    }

    .price-values {
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
        font-size: 0.8rem;
        color: #718096;
    }

    /* Courses Grid */
    .courses-content {
        flex-grow: 1;
    }

    .courses-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .courses-count {
        color: #fff;
        font-size: 0.95rem;
        font-weight: bold;
    }

    .sort-options select {
        padding: 8px 15px;
        border-radius: 4px;
        border: 1px solid #ddd;
        background-color: #fff;
        cursor: pointer;
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
        margin-bottom: 70px;
    }

    .course-card {
        /* background-color: #000; */
        border-radius: 20px;
        overflow: hidden;
       
        /* subtle depth shadow */
        /* border: 4px solid silver; */
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
    }

    .course-card:hover {
 
        transform: scale(1.02);
    }



    .course-image {
        height: 180px;
        overflow: hidden;
    }

    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .course-card:hover .course-image img {
        transform: scale(1.05);
    }

    .course-content {
        padding: 20px;
    }

    .course-category {
        display: inline-block;
        background-color: #ebf8ff;
        color: #2b6cb0;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .course-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #2d3748;
    }

    .course-description {
        color: #4a5568;
        margin-bottom: 15px;
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .course-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .course-duration,
    .course-level {
        display: flex;
        align-items: center;
        color: #718096;
        font-size: 0.85rem;
    }

    .course-duration svg,
    .course-level svg {
        margin-right: 5px;
    }

    .enroll-btn {
        background-color: #a80505;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.3s;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .enroll-btn:hover {
        background-color: #2c5282;
    }

    .enroll-btn a{
        text-decoration: none;
    }

    .course-image {
        position: relative;
    }

    .liveclasses-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: red;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.3s;
        font-size: 0.9rem;
        z-index: 2;
    }

    .liveclasses-btn:hover {
        background-color: #2c5282;
    }


    /* Footer */
    footer {
        background-color: #003893;
        color: #fff;
        padding: 50px 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: lightyellow;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 10px;
    }

    .footer-column a {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-column a:hover {
        color: #fff;
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid #4a5568;
        color: #a0aec0;
    }

    /* Responsive Styles */
    /* Mobile Menu Styles */

    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu-links {
        list-style: none;
        padding: 20px;
    }

    .mobile-menu-links li {
        margin-bottom: 15px;
    }

    .mobile-menu-links a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        font-size: 1.1rem;
    }

    @media (max-width: 768px) {


        .nav-links {
            display: none;
        }
    }

    @media (max-width: 992px) {
        .main-container {
            flex-direction: column;
        }

        .sidebar {
            width: 100%;
        }

        .courses-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
    }

    @media (max-width: 768px) {


        .hero h1 {
            font-size: 2rem;
        }

        .courses-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
    }

    #whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
        z-index: 9999;
        cursor: pointer;
    }

    /* General Reset */
    /* Reset and base styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* header { width: 100%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; z-index: 100; } */

    .logo img {
        height: 70px;
        display: block;
    }

    /* Hamburger styles */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 120;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 28px;
        margin: 4px auto;
        background: #222;
        border-radius: 2px;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Desktop nav */
    nav.nav {
        flex: 1;
    }

    nav.nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 2rem;
    }

    nav.nav li {
        position: relative;
    }

    nav.nav a {
        text-decoration: none;
        color: #222;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
    }

    nav.nav .dropdown:hover .dropdown-menu,
    nav.nav .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    nav.nav .dropdown-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        min-width: 180px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        animation: dropdownFade 0.3s;
    }

    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav.nav .dropdown-menu li {
        width: 100%;
    }

    nav.nav .dropdown-menu a {
        padding: 0.5rem 1rem;
        display: block;
    }

    /* Mobile menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.6, 0, 0.4, 1);
        z-index: 110;
    }

    .mobile-menu.open {
        display: block;
        transform: translateY(0);
        animation: menuSlideDown 0.4s cubic-bezier(0.6, 0, 0.4, 1);
    }

    @keyframes menuSlideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .mobile-menu ul {
        list-style: none;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .mobile-menu li {
        margin-bottom: 1.2rem;
    }

    .mobile-menu a {
        color: #fff;
        font-size: 1.1rem;
        text-decoration: none;
        font-weight: 500;
    }

    .mobile-menu .dropdown-menu {
        display: none;
        background: #f8f8f8;
        margin-top: 0.5rem;
        padding-left: 1rem;
        border-radius: 4px;
    }

    .mobile-menu .dropdown.open>.dropdown-menu {
        display: block;
        animation: dropdownFade 0.3s;
    }

    /* Responsive styles */
    @media (max-width: 900px) {
        nav.nav {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .logo {
            flex-shrink: 0;
        }
    }

    @media (max-width: 600px) {
        .header-container {
            padding: 0.75rem 0.75rem;
        }

        .logo img {
            height: 60px;
        }
    }

    /* Reset and Base Styles */


    body {
        font-family: Arial, sans-serif;
    }




    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        padding: 5px;
        z-index: 1002;
        /* Higher than menu */
        transition: transform 0.3s;
    }

    .mobile-menu-btn.active {
        transform: rotate(90deg);
    }

    /* Desktop Navigation */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .nav-links>li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        padding: 5px 0;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #0066cc;
    }

    /* Desktop Dropdown */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 200px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
        padding: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li a {
        display: block;
        padding: 8px 20px;
        transition: background 0.3s;
    }

    .dropdown-menu li a:hover {
        background: #f5f5f5;
    }

    /* Mobile Menu */

    .mobile-menu {
        position: fixed;
        top: 70px;
        /* Starts below header */
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #003b8e;
        color: #fff;
        border-radius: 15px;
        padding: 1.5rem 2rem;
        border: 4px solid transparent;
        background-image:
            linear-gradient(#003b8e, #003b8e),
            /* inner solid blue */
            linear-gradient(135deg, #e0e0e0, #b0b0b0);
        /* silver gradient border */
        background-origin: padding-box, border-box;
        background-clip: padding-box, border-box;
        /* Catchy gradient */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.82, 0.085, 0.395, 0.895);
        z-index: 1000;
        overflow-y: auto;
        /* padding: 20px 0; */
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-links {
        list-style: none;
        padding: 0 20px;
        color: #fff;
    }

    .mobile-menu-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-links li:last-child {
        border-bottom: none;
    }

    .mobile-menu-links a {
        display: block;
        padding: 15px 0;
        color: white !important;
        /* White text for contrast */
        text-decoration: none;
        font-weight: 500;
        transition: transform 0.3s, padding-left 0.3s;
    }

    .mobile-menu-links a:hover {
        transform: translateX(5px);
        padding-left: 5px;
    }

    /* Mobile Dropdown */
    .mobile-menu-links .dropdown>a {
        position: relative;
        padding-right: 25px;
    }

    .mobile-menu-links .dropdown>a::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        transition: transform 0.3s;
        color: white;
    }

    .mobile-menu-links .dropdown.open>a::after {
        content: '-';
    }

    .mobile-menu-links .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        padding-left: 15px;
        transition: max-height 0.4s ease;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        margin: 5px 0;
    }

    .mobile-menu-links .dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .mobile-menu-links .dropdown-menu a {
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Overlay - removed since we want logo visible */
    body.no-scroll {
        overflow: hidden;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }
    }

    .mobile-menu .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        padding-left: 15px;
        transition: max-height 0.4s ease;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        margin: 5px 0;
    }

    .mobile-menu .dropdown.open .dropdown-menu {
        max-height: 500px;
        /* Or adjust as needed */
    }

    /* Mobile Menu - Preserving your existing design */
    .mobile-menu {
        position: fixed;
        top: 70px;
        /* Below header */
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #003b8e;
        color: #fff;
        /* White text */
        border-radius: 15px 0 0 15px;
        /* Rounded left corners only */
        padding: 1.5rem 2rem;
        border: 4px solid transparent;
        background-image:
            linear-gradient(#003b8e, #003b8e),
            linear-gradient(135deg, #e0e0e0, #b0b0b0);
        background-origin: padding-box, border-box;
        background-clip: padding-box, border-box;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.82, 0.085, 0.395, 0.895);
        z-index: 1000;
        overflow-y: auto;
        /* Keep scroll for long menus */
    }

    /* Fix scrollbar appearance */
    .mobile-menu::-webkit-scrollbar {
        width: 6px;
    }

    .mobile-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    /* Open state */
    .mobile-menu.open {
        right: 0;
    }

    /* Menu items - ensuring visibility */
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        margin-bottom: 1rem;
    }

    .mobile-menu a {
        color: #fff !important;
        /* Force white text */
        text-decoration: none;
        font-weight: 500;
        display: block;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        color: #aad1ff !important;
    }

    /* Dropdown styles matching your theme */
    .mobile-menu .dropdown-menu {
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu .dropdown.open .dropdown-menu {
        max-height: 500px;
        /* Adjust based on content */
        padding-top: 0.5rem;
    }

    /* Dropdown indicator */
    .mobile-menu .dropdown>a::after {
        content: "▾";
        float: right;
        transition: transform 0.3s ease;
    }

    .mobile-menu .dropdown.open>a::after {
        transform: rotate(180deg);
    }

    /* Dropdown Specific Fixes */
    .mobile-menu .dropdown-menu {
        display: block !important;
        /* Force display */
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        padding-left: 15px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .mobile-menu .dropdown.open .dropdown-menu {
        visibility: visible;
        opacity: 1;
        max-height: 500px;
        /* Adjust based on your content */
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Dropdown indicator animation */
    .mobile-menu .dropdown>a::after {
        content: "▾";
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .mobile-menu .dropdown.open>a::after {
        transform: rotate(180deg);
    }

    /* Dropdown item styling */
    .mobile-menu .dropdown-menu li {
        margin-bottom: 8px;
        padding: 0;
        border-bottom: none;
    }

    .mobile-menu .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 400;
        font-size: 0.9em;
        padding: 5px 0 !important;
    }

    .mobile-menu .dropdown-menu a:hover {
        color: #000 !important;
    }

    @media (max-width: 768px) {
  .mobile-menu .dropdown-menu {
    position: static !important;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .mobile-menu .dropdown:not(.open) > .dropdown-menu {
    display: none !important;
  }
  .mobile-menu .dropdown.open > .dropdown-menu {
    display: block !important;
  }
}
.mains-container {
  width: 100%;
  padding: 5px;
}

.leftc {
  padding: 20px;
}

.rightc {
  text-align: right;
}

.rightc img {
  text-align: right;
}

.microdegree {
  margin-top: 20px;
  margin-bottom: 20px;
}

.microdegree img {
  width: 75%;
}

.microdegree h2 {
  font-size: 37px;
  color: #fff;
}

.microdegree p {
  color: #fff;
  font-size: 20px;
}

.btnapplication {
  padding: 14px;
  border: 2px lightblue solid;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.btnapplication:hover {
  background-color: red;
  color: #fff;
}
.container-fluid{
    background-color:#1e2a3f;
}

.innercards h2 {
  font-size: 25px;
  color: #fff;
}

.innercards {
  background: #fff;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08); /* subtle shadow */
  border-right: 1px solid #e0e0e0;
  padding: 32px 20px 24px 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.innercards:last-child {
  border-right: none;
}

.innercards h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #263238;
}

.innercards p {
  color: #607d8b;
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 767.98px) {
  .innercards {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 16px;
  }
  .innercards:last-child {
    border-bottom: none;
  }
}

.contains{
    background-color: #fff;
    margin-top: 10px;
    padding-top: 15px;
    text-align:center;
}

.contains  h2 {
  font-size: 37px;
  color: navy;
}

.stepper .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.stepper .step-line {
  width: 60px;
  height: 4px;
  margin: 0 8px;
  border-radius: 2px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
  color: #222;
  transition: transform 0.15s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}
.testimonial-text {
  color: #444;
  font-size: 1.01rem;
  margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .testimonial-card {
    margin-bottom: 1rem;
  }
}

.courses-count{
    color: #000;
}

.container-next{
    background-color: #1e2a3f;
    padding: 5%;
}
.case-card {
  transition: box-shadow 0.15s, transform 0.15s;
  background: #fff;
}
.case-card:hover {
  box-shadow: 0 6px 24px rgba(44,62,80,0.13);
  transform: translateY(-4px) scale(1.02);
}

.text-l{
    text-align:left !important;
}
