
        .h-font {
            font-family: "Roboto Condensed", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        body {
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }

        /* Upper Portion */
        .upper-portion {
            background-color: black;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 50px;
            flex-wrap: wrap;
        }

        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .top-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-left ul {
            list-style: none;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

        .top-left li {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 15px;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-no {
            font-size: 20px;
            color: rgb(90, 127, 240);
            font-weight: bold;
            text-decoration: none;
        }

        .call-us img {
            height: 2rem;
            width: 2rem;
            animation: bump 1s infinite ease-in-out;
        }

        @keyframes bump {
            0% { transform: scale(0.1); }
            50% { transform: scale(1); }
            100% { transform: scale(0.1); }
        }

        .top-right a {
            color: white;
            text-decoration: none;
        }

        /* Navigation Bar */
        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 20px 20px;
            border-bottom: 1px solid black;
        }

        .logo {
            width: 180px;
        }

        .logo img {
            width: 12rem;
            height: auto;
            margin-left: 0rem;

        }

        /* Navigation Menu */
        .menu {
            display: flex;
            align-items: center;
        }

        .navigation {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        .navigation li {
            font-size: 16px;
            font-weight: bold;
            position: relative;
        }

        .navigation a,
        .dropdown > button {
            text-decoration: none;
            color: black;
            /*font-size: 20px;*/
            display: flex;
            font-weight: bold;
            align-items: center;
            gap: 5px;
            transition: all 300ms ease;
            font-family: "Roboto Condensed", serif;
        }

        .navigation a:hover,
        .dropdown > button:hover {
            color: rgb(130, 186, 235);
        }

        .navigation a::after,
        .dropdown > button::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            height: 2px;
            background-color: black;
            width: 0;
            transition: width 300ms ease;
        }

        .navigation a:hover::after,
        .dropdown:hover > button::after {
            width: 100%;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
            cursor: pointer;
        }

        .dropdown > button {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
        }

        .dropdown > button i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover > button i,
        .dropdown.active > button i {
            transform: rotate(180deg);
        }
       

        .nav-bar .navigation .dropdown ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            list-style: none;
            padding: 10px 0;
            width: 250px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            transform: translateY(-10px);
        }

        .nav-bar .navigation .dropdown:hover ul,
        .dropdown.active ul {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-bar .navigation .dropdown ul li {
            padding: 10px;
            border-bottom: 1px solid #ccc;
            text-align: left;
        }

        .nav-bar .navigation .dropdown ul li:last-child {
            border-bottom: none;
        }

        .nav-bar .navigation .dropdown ul li a {
            color: black;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .nav-bar .navigation .dropdown ul li a:hover {
            color: rgb(130, 186, 235);
        }

        /* Right Section */
        .right-portion {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-btn1,
        #cmentorTriggerBtn {
            padding: 10px 15px;
            border-radius: 8px;
            background: linear-gradient(90deg, #1e90ff, #00bfff);
            font-size: 14px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0.1rem 0.1rem 0.1rem black;
            transition: all 0.3s ease;
            border: none;
        }

        .header-btn1:hover,
        #cmentorTriggerBtn:hover {
            box-shadow: -0.1rem -0.1rem 0.1rem black;
            transition: 0.5s;
        }

        /* Download Button */
        .download-btn {
            display: none;
            padding: 10px 15px;
            border: 1px solid blue;
            border-radius: 8px;
            background: white;
            font-size: 14px;
            color: blue;
            cursor: pointer;
            box-shadow: 2px 2px 4px blue;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            background-color: rgb(90, 127, 240);
            color: white;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger span {
            width: 30px;
            height: 4px;
            background: #333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Responsive Styles */
        @media (max-width: 1060px) {
            #downloadBtn {
                box-shadow: 0.1rem 0.1rem 0.1rem black !important;
                margin-top: 0.2rem !important;
                height: 2.8rem;
                margin-left: 1rem;
                width:14em !important;
            }
            
            #cmentorTriggerBtn{
                width:8rem !important;
                 height: 2.8rem !important;
                 margin-left:0.5rem;
            }
            
        }

        @media (max-width: 1024px) {
            .upper-portion {
                /*flex-direction: column;*/
                text-align: center;
                /*padding: 10px;*/
            }

            .top-left {
                justify-content: center;
            }

            .top-left ul {
                gap: 10px;
                justify-content: center;
            }

            .top-right {
                justify-content: center;
            }

            .navigation {
                gap: 15px;
            }
             .logo img {
                width: 10rem;
                height: auto;
                margin-left: 0rem;
    
            }
             #cmentorTriggerBtn {
                padding: 8px 12px;
                font-size: 12px;
                box-shadow: 0.1rem 0.1rem 0.1rem black !important;
                margin-top: 0.2rem !important;
            }
        }

        @media (max-width: 924px) {
            #cmentorTriggerBtn {
                box-shadow: 0.1rem 0.1rem 0.1rem black !important;
                margin-top: 0.2rem !important;
                /*width: 9rem !important;*/
                margin-left: 1rem;
                        /*margin-left: 10rem;*/
                        display:none;
            }
            
             .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 70%;
                transform: translateY(-50%);
            }
            .menu {
                display: none;
                position: fixed;
                top: 0;
                right: -100%;
                width: 40%;
                background: white;
                flex-direction: column;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                padding: 60px 20px 20px;
                height: 100vh;
                transition: right 0.3s ease;
                text-align:center;
            }

            .menu.active {
                display: flex;
                right: 1.5rem;
                top: 23%;
            }
            
               .navigation {
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 10px;
            }

            .navigation li {
                padding: 10px;
                border-bottom: 1px solid #ccc;
                text-align:center;
            }

            .dropdown ul {
                position: static;
                width: 100%;
                box-shadow: none;
                border-radius: 0;
                background: #f5f5f5;
                margin-top: 5px;
            }

            .dropdown:hover ul {
                display: none;
            }

            .dropdown.active ul {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(2%);
            }

            .right-portion {
                position: static;
                margin: 20px 0;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .download-btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }

            .header-btn1 {
                display: none;
            }
        }
        
  


       

        @media (max-width: 768px) {
            .upper-portion {
                padding: 8px;
                flex-direction: column;
            }

            .top-right {
                /*margin: 1rem auto;*/
            }

            .top-left ul {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            .nav-bar {
                padding: 10px;
                position: relative;
            }

            .hamburger {
                display: flex;
                position: absolute;
                right: 5px;
                top: 50%;
                transform: translateY(-50%);
            }

            .menu {
                display: none;
                position: fixed;
                top: 30%;
                right: -100%;
                width: 60%;
                background: white;
                flex-direction: column;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                padding: 60px 20px 20px;
                height: 100vh;
                transition: right 0.3s ease;
            }

            .menu.active {
                display: flex;
                right: 0;
                top: 26% !important;
            }

            .navigation {
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 10px;
                margin-right:2rem;
            }

            .navigation li {
                padding: 10px;
                border-bottom: 1px solid #ccc;
            }

            .dropdown ul {
                position: static;
                width: 100%;
                box-shadow: none;
                border-radius: 0;
                background: #f5f5f5;
                margin-top: 5px;
            }

            .dropdown:hover ul {
                display: none;
            }

            .dropdown.active ul {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .right-portion {
                position: static;
                margin: 20px 0;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .download-btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
            
              

            .header-btn1 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .upper-portion {
                padding: 5px;
            }

            .top-left ul {
                font-size: 12px;
            }

            .nav-bar {
                padding: 8px 15px;
            }

            .logo {
                width: 120px;
               
            }
            .logo img{
                 margin-right:2rem;
                 width:10rem;
            }

            .hamburger span {
                width: 25px;
                height: 3px;
            }

            .menu {
                width: 80%;
            }

            .navigation a,
            .dropdown > button {
                font-size: 1.1rem;
            }
           
             
        }

        @media (max-width: 320px) {
            .top-left ul {
                font-size: 11px;
            }

            .logo {
                width: 100px;
                
            }
            .logo img{
                margin-right: 0rem;
                /*height: 5rem;*/
                width: 12rem;
                /*margin-left: -1.5rem;*/
            }

            .menu {
                width: 100%;
            }

            .contact-no {
                font-size: 16px;
            }
            #cmentorTriggerBtn {
                /*box-shadow: 0.1rem 0.1rem 0.1rem black !important;*/
                /*margin-top: 0.2rem !important;*/
                /*width: 9rem !important;*/
                /*margin-left: 1rem;*/
                        /*margin-left: 10rem;*/
                        display: none;
            }
                
    
        }
        
        
