body, html {
  font-family: 'Poppins', sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

 /* ========================= */
        /* Navbar */
        /* ========================= */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #eee;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            z-index: 1000;
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            height: 70px;
        }

        .navbar-logo img {
            max-height: 50px;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-item {
            position: relative;
        }

        .nav-item1{
            position: relative;
        }

        .nav-item a {
            font-size: 18px;
            font-weight: 500;
            color: #000;
            text-decoration: none;
            cursor: pointer;
            padding: 25px 5px;
            display: inline-block;
        }

        .nav-item a:hover {
            color: #007bff;
        }

          .btn-group {
            display: flex;
            gap: 15px;
        }

        /* ========================= */
        /* Gradient Animated Button  */
        /* ========================= */
        .btn-orange {
            position: relative;
            background: transparent;
            padding: 15px 30px;
            border-radius: 10px;
            color: #000000;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: 4px solid transparent;
            /* we’ll draw border with ::before */
            cursor: pointer;
            white-space: nowrap;
            z-index: 1;
            transition: color 0.3s ease;
        }

        /* Default static gradient border + glow */
        .btn-orange::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 12px;
            padding: 4px;
            /* thickness of gradient border */
            background: linear-gradient(90deg, orange, rgb(250, 98, 123), rgb(252, 22, 252), orange);
            background-size: 300% 300%;
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: -1;
            opacity: 1;
            box-shadow: 0 0 15px rgba(242, 140, 40, 0.6);
            /* static glow */
        }

        /* Hover: animate gradient + stronger glow */
        .btn-orange:hover {
            color: #000000;
        }

        .btn-orange:hover::before {
            animation: border-rotate 4s linear infinite;
            box-shadow: 0 0 20px rgba(255, 140, 40, 0.9),
                0 0 25px rgba(200, 0, 200, 0.6),
                0 0 30px rgba(247, 1, 128, 0.6);
        }

        /* Animated gradient motion */
        @keyframes border-rotate {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Default: hide the icon on desktop */
        .dropdown-icon {
            display: none;
            margin-left: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }



        /* ========================= */
        /* Subcontent Panel (Desktop) */
        /* ========================= */
        .subcontent-panel {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            border-top: 1px solid #eee;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: none;
        }

        .content {
            display: none;
            padding: 40px 60px;
            width: 100%;
        }

        .content.active {
            display: block;
        }

        .container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .section-link {
            text-decoration: none;
            color: inherit;
            flex: 1 1 220px;
            max-width: 280px;
        }

        .section {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            background: #fafafa;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .section.visible {
            opacity: 1;
            transform: translateX(0);
        }

        h4 {
            color: #007bff;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 6px;
        }

        .desc {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .section-link:hover .section {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .section-link:hover .title {
            color: #007bff;
        }
/* ========================= */
        /* Mobile Dropdown Styles */
        /* ========================= */
        .dropdown-content {
            display: none;
            padding: 15px 20px;
            background: #fff;
        }

        .nav-item.open .dropdown-content {
            display: block;
        }

        .dropdown-icon {
            margin-left: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .nav-item.open .dropdown-icon {
            transform: rotate(180deg);
        }

        /* ========================= */
        /* Dropdowns (Mobile only) */
        /* ========================= */
        .dropdown-content {
            display: none;
            flex-direction: column;
            padding-left: 20px;
            margin-top: 5px;
        }

        .dropdown-content a {
            padding: 10px 0;
            font-size: 15px;
            color: #444;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            color: #007bff;
        }

        .nav-item.open .dropdown-content {
            display: block;
        }

        /* Mobile: show the dropdown icon */
        @media (max-width: 992px) {
            .dropdown-icon {
                display: inline-block;
            }

            /* Rotate when open */
            .nav-item.open .dropdown-icon {
                transform: rotate(180deg);
            }

            /* Mobile dropdown hidden by default */
            .dropdown-content {
                display: none;
                padding-left: 16px;
            }

            .nav-item.open .dropdown-content {
                display: flex;
            }
        }


        /* ========================= */
        /* Responsive Styles */
        /* ========================= */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .navbar-inner {
                flex-wrap: wrap;
            }

            .navbar-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                border-top: 1px solid #eee;
                padding: 10px 20px;
            }

            .navbar-nav.active {
                display: flex;
            }

            .nav-item a {
                padding: 15px 0;
            }

            /* hide subcontent panel on mobile */
            .subcontent-panel {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .navbar-inner {
                padding: 0 15px;
            }

            .btn-orange {
                padding: 8px 16px;
                font-size: 14px;
            }
        }






        