
        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }
        

        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            font-family: "Poppins", sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1;
        }

        .logo img {
            height: 80px;
            width: auto;
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu > li {
            margin-left: 25px;
        }
        .p_relative {
            position: relative;
        }
        .nav-menu > li > a {
            color: #333;
            font-weight: 500;
            font-size: 14px;
            padding: 30px 0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        /* .nav-menu > li > a:hover {
            color: rgba(255, 255, 255, 0.8);
        } */

        .dropdown-arrow {
                color: #333;
            margin-left: 5px;
            font-size: 15px;
            transition: transform 0.3s ease;
        }

        .has-dropdown:hover > a .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Regular Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            padding: 10px 0;
        }

        .has-dropdown:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            padding: 10px 20px;
            color: #333;
            display: block;
            font-size: 15px;
            transition: all 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
            color: #4e4376;
            padding-left: 25px;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
           /*  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
               box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            padding: 30px;
        }
.mega-menu-column .menubanner img{
    width: 100%;
}
        .mega-menu-container:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-content {
            display: flex;
            flex-wrap: wrap;
        }
       

        .mega-menu-column {
            flex: 1;
            min-width: 200px;
            padding: 0 15px;
        }

        .mega-menu-title {
            color: #000;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
          border-bottom: 1px solid #c9c9c9;
        }

        .mega-menu-list li {
            margin-bottom: 25px;
        }

        .mega-menu-list li a {
                color: #4e4e4e;
                font-size: 14px;
                font-weight: 500;
            transition: all 0.2s ease;
            display: block; /* Changed to block for flex container */
            padding: 5px 0;
            display: flex; /* Use flexbox for stacking content */
            flex-direction: column; /* Stack title and description vertically */
        }

        .mega-menu-list li a:hover {
            color: #2b5876; /* Only color change on hover */
        }

        /* Style for the description within mega menu list items */
        .mega-menu-list li a small {
            font-size: 12px; /* Smaller font size for description */
            color: #888; /* Lighter color for description */
            margin-top: 2px; /* Small space between title and description */
            line-height: 1.3; /* Adjust line height for readability */
            text-align: justify;
        }

        .mega-menu-list li a:hover small {
            color: #2b5876; /* Keep description color consistent on hover */
        }

        .mega-menu-featured {
            flex: 2;
            padding: 0 15px;
        }

        .featured-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            border-radius: 8px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-title {
            font-size: 18px;
            font-weight: 600;
            color: #2b5876;
            margin-bottom: 10px;
        }

        .featured-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .featured-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .featured-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(78, 67, 118, 0.3);
        }

        .featured-image {
            width: 100%;
            height: 120px;
            background-color: #ddd;
            border-radius: 6px;
            margin-bottom: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-image svg {
            width: 80%;
            height: 80%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }

        .bar {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .bar.top {
            top: 0;
        }

        .bar.middle {
            top: 50%;
            transform: translateY(-50%);
        }

        .bar.bottom {
            bottom: 0;
        }

        /* Mobile Menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 999;
            padding: 80px 0 30px;
            overflow-y: auto;
            transition: all 0.4s ease;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu li {
          margin-bottom: 5px;
            padding: 0 15px;
            border-bottom: 1px solid #e5e5e5;
        }
        ul.dropdown-menu.active li {
            border-bottom: none;
        }

        .mobile-menu li a {
            color: #333;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

        /* Mobile Dropdown Menus */
        .mobile-menu .dropdown-menu,
        .mobile-menu .mega-menu-mobile {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0;
            margin: 0;
            border-radius: 0;
            width: 100%;
        }

        .mobile-menu .dropdown-menu.active,
        .mobile-menu .mega-menu-mobile.active {
            max-height: 1000px;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .mobile-menu .dropdown-menu li,
        .mobile-menu .mega-menu-mobile li {
            margin-bottom: 0;
        }

        .mobile-menu .dropdown-menu li a {
            padding: 8px 15px;
            font-size: 15px;
            color: #555;
        }

        .mobile-menu .mega-menu-title {
            padding: 10px 15px;
            font-size: 15px;
            color: #4e4376;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 5px;
        }

        .mobile-menu .mega-menu-list li a {
            padding: 8px 25px;
            font-size: 14px;
            color: #666;
            display: block;
            /* Added for flexbox in mobile */
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Align text to the start */
        }
        
        /* Style for description in mobile mega menu */
        .mobile-menu .mega-menu-list li a small {
            font-size: 11px; /* Slightly smaller for mobile */
            color: #888;
            margin-top: 2px;
            line-height: 1.2;
        }

        /* Active States */
        .mobile-menu-active .mobile-menu {
            right: 0;
        }

        .mobile-menu-active .mobile-menu-overlay {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-active .bar.top {
            transform: translateY(10px) rotate(45deg);
        }

        .mobile-menu-active .bar.middle {
            opacity: 0;
        }

        .mobile-menu-active .bar.bottom {
            transform: translateY(-10px) rotate(-45deg);
        }

        /* Main Content */
      

        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: #2b5876;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card-img {
            height: 180px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-img svg {
            width: 60%;
            height: 60%;
            color: #4e4376;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
            color: #2b5876;
            margin-bottom: 10px;
        }

        .card-text {
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .card-link {
            color: #4e4376;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .card-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .card-link:hover i {
            transform: translateX(3px);
        }

       

        /* Mobile Mega Menu Specific Styles */
        .mobile-mega-menu-section {
            margin-bottom: 10px;
        }

        .mobile-mega-menu-title {
            font-weight: 600;
            color: #765a0c;
            padding: 10px 15px;
            background-color: #f5f5f5;
            border-radius: 4px;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .mobile-mega-menu-items {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-mega-menu-items.active {
            max-height: 500px;
                padding: 0 15px;
        }

        .mobile-mega-menu-items a {
            padding: 8px 25px;
            font-size: 14px;
            color: #666;
            display: block;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .main-content {
                margin-top: 70px;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 0;
            }

            .logo img {
                height: 69px;
            }

            .hero {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 26px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 24px;
            }

            .hero-btn {
                padding: 10px 25px;
                font-size: 15px;
            }
        }
    