       /* ========== THEME COLORS ========== */
        /*
        Primary Color: #2563eb (Royal Blue) - Represents technology, trust, and innovation
        Secondary Color: #7c3aed (Violet Blue) - Represents creativity and forward-thinking
        Accent Color: #06b6d4 (Cyan) - Represents happiness and energy
        Dark Color: #1e293b (Dark Blue) - For contrast and depth
        Light Color: #f8fafc - For backgrounds
        */
        
        /* :root {
            --primary-color: #eb9c25c9;
            --primary-dark: #d8a61dd7;
            --secondary-color: #7c3aed;
            --accent-color: #06b6d4;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --text-dark: #334155;
            --text-light: #64748b;
        } */
            :root {
    /* Primary Logo Colors (Golden → Orange gradient) */
    --primary-color: #FFB300;      /* Golden Yellow */
    --primary-dark: #FF6A00;       /* Warm Orange */

    /* Secondary Shades (Darker orange tones from logo) */
    --secondary-color: #D64F00;    /* Deep Orange */
    --accent-color: #A62300;       /* Dark Burnt Orange */

    /* Base UI Colors */
    --dark-color: #1e293b;         /* Neutral dark blue/gray for text/icons */
    --light-color: #FFF8E7;        /* Soft cream background matching logo */

    /* Text Colors */
    --text-dark: #c7762aff;          /* Brownish gold – matches logo text */
    --text-light: #FF5A6E;         /* Pinkish-red used in tagline */
}

/* ---------- Whatsapp ------------------  */
      .whats-app {
        position: fixed;
        width: 50px;
        height: 50px;
        top: 155px;
        left: 1px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
      }

      .my-float {
        margin-top: 16px;
      }
      .popup-button {
        position: fixed;
        top: 290px;
        left: -49px;
        z-index: 9999;
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
      }
      *, ::after, ::before {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
      }
      .bell{
        -webkit-animation: ring 4s .7s ease-in-out infinite;
        -webkit-transform-origin: 50% 4px;
        -moz-animation: ring 4s .7s ease-in-out infinite;
        -moz-transform-origin: 50% 4px;
        animation: ring 4s .7s ease-in-out infinite;
      }

      /* ---------- Whatsapp style End ------------------  */
        
        /* ========== TOP BAR ========== */
        .top-bar {
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
            transition: all 0.3s ease;
        }
        
        .top-bar a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .top-bar a:hover {
            color: #b9b7b7ff;
            font-weight:700;
            transform: translateY(-1px);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            scale:1.1;
        }
        
        .top-bar .separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 10px;
        }
        
        /* ========== NAVBAR ========== */
        .navbar {
            background-image: url('<?php echo base_url("images/navbbg.png"); ?>');
            box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
            padding: 10px 0px !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar {
            position: sticky;          
            top: 0;                    
            z-index: 9999; 
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 6px 20px rgba(30, 41, 59, 0.12);
        }
        
        /* ========== LOGO STYLING ========== */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            height: 70px;
            /* background: linear-gradient(135deg, #e7b889ff, #bb7134ff); */
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
        }
        
        .logo-icon:hover {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }
        
        
        /* ========== NAVIGATION LINKS ========== */
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 700;
            font-size:1.01rem;
            margin: 0 5px;
            padding: 10px 18px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .nav-link:hover {
            /* color: var(--primary-color) !important; */
            font-weight:800;
            color:rgba(37, 99, 235, 0.08);
            background: rgba(68, 119, 230, 0.27);
            transform: translateY(-2px);
            scale:1.1;
        }
         .nav-link:hover i{
            color:rgba(196, 206, 230, 0.7);
            scale:1.2;
            font-weight:850;
        }
        
        .nav-link.active {
            color: var(--primary-color) !important;
            background: rgba(37, 99, 235, 0.1);
            font-weight: 800;
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.15);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }
        
        /* ========== DROPDOWN MENU ========== */
        .dropdown-menu {
            border: none;
            box-shadow: 0 8px 30px rgba(30, 41, 59, 0.15);
            border-radius: 12px;
            padding: 15px 0;
            animation: dropdownFade 0.3s ease forwards;
            opacity: 0;
            transform: translateY(10px);
            border-left: 4px solid var(--accent-color);
        }
        
        @keyframes dropdownFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item {
            padding: 12px 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.05));
            padding-left: 32px;
            color: var(--primary-color);
        }
        
        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
            transform: translateX(-4px);
            transition: transform 0.3s ease;
        }
        
        .dropdown-item:hover::before {
            transform: translateX(0);
        }
        
        /* ========== MOBILE MENU ========== */
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 8px 12px;
            transition: all 0.3s ease;
            background: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837, 99, 235, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            transform: rotate(90deg);
        }
        
        .offcanvas {
            background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
            backdrop-filter: blur(10px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .offcanvas-header {
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
            padding: 25px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .offcanvas-title {
            color: white;
            font-weight: 800;
            font-size: 1.8rem;
        }
        
        .offcanvas-body {
            padding: 25px;
        }
        
        .mobile-nav-link {
            padding: 16px 0;
            color: var(--text-dark);
            font-weight: 600;
            border-bottom: 2px solid rgba(37, 99, 235, 0.1);
            display: block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary-color);
            padding-left: 15px;
            border-bottom-color: var(--accent-color);
        }
        
        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .mobile-nav-link:hover::before {
            left: 100%;
        }
        
        .mobile-dropdown {
            padding-left: 25px;
        }
        
        .mobile-dropdown-item {
            padding: 12px 0;
            color: var(--text-light);
            display: block;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .mobile-dropdown-item:hover {
            color: var(--primary-color);
            padding-left: 15px;
        }
        
        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            .top-bar {
                padding: 6px 0;
                font-size: 0.75rem;
            }
            
            .top-bar .d-none.d-md-flex {
                display: none !important;
            }
            
            .top-bar .mobile-top-icons {
                display: flex !important;
                justify-content: center;
                gap: 20px;
            }
            
            .top-bar a {
                font-size: 0.9rem;
            }
            
            .navbar {
                padding: 15px 0;
            }
            
            .logo-main {
                font-size: 1.5rem;
            }
            
            .logo-tagline {
                font-size: 0.65rem;
            }
        }

         /* ========== MOBILE Nav width  ========== */
         @media (max-width: 576px) {
            .offcanvas-end{
                  max-width:90%;
            }
        }
        
        /* ========== MOBILE TOP ICONS ========== */
        .mobile-top-icons {
            display: none;
        }
        
        .top-icon {
            font-size: 1rem;
            padding: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .top-icon:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* ========== ANIMATIONS ========== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .top-bar, .navbar {
            animation: fadeInDown 0.6s ease-out;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .logo-icon {
            animation: pulse 3s infinite ease-in-out;
        }
        
        /* ========== BUTTON STYLES ========== */
        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
 