    :root {
            --primary-color: #4e73df;
            --secondary-color: #f8f9fa;
            --text-color: #212529;
            --bg-color: #ffffff;
        }
        
        [data-bs-theme="dark"] {
            --primary-color: #6610f2;
            --secondary-color: #343a40;
            --text-color: #f8f9fa;
            --bg-color: #212529;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .hero-section {
            background: linear-gradient(135deg, pink, #224abe);
            color: black;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.2;
        }
        
        .language-switcher .btn {
            border-radius: 20px;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .language-switcher .btn.active {
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        [data-bs-theme="dark"] .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
  .dropdown-menu {
  animation: fadeIn 0.3s ease-in-out;
  background: linear-gradient(135deg, #ffe259, #ffa751); /* yellow-orange gradient */
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0.75rem 0;
  color: #222;
}

.dropdown-item {
  color: #222;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(6px);
  color: #000;
}		
		/* Optional: highlight active or selected items */
.dropdown-item.active,
.dropdown-item:active {
  background-color: #4e73df;
  color: white;
}

/* Dark Mode Dropdown Enhancements */
[data-bs-theme="dark"] .dropdown-menu {
  background: orange;
  color: #f8f9fa;
}

[data-bs-theme="dark"] .dropdown-item:hover {
  background: linear-gradient(90deg, #29c9ff, #005377);
  color: white !important;
}
		
		/* Hover state for dropdown items */
.dropdown-item:hover {
  background: linear-gradient(90deg, #4e73df, #224abe);
  color: white !important;
  transform: translateX(5px);
}
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
               
        .newsletter-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 3rem 0;
            border-radius: 10px;
        }
        
        [data-bs-theme="dark"] .newsletter-section {
            background: linear-gradient(135deg, #343a40, #212529);
        }
        
        /* Hover dropdown styles */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
            
            .navbar-nav .nav-item {
                position: relative;
            }
            
            .dropdown-menu {
                margin-top: 0;
                border: none;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            
            .dropdown-menu li {
                position: relative;
            }
            
            .dropdown-menu .dropdown-submenu {
                display: none;
                position: absolute;
                left: 100%;
                top: 0;
            }
            
            .dropdown-menu .dropdown-submenu-left {
                right: 100%;
                left: auto;
            }
            
            .dropdown-menu > li:hover > .dropdown-submenu {
                display: block;
            }
        }
        
        /* Enhanced Navbar Styles */
        nav.navbar {
            background: linear-gradient(135deg, #4e73df, #224abe);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        [data-bs-theme="dark"] nav.navbar {
            background: linear-gradient(135deg, #343a40, #212529);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .navbar-brand {
            font-size: 1.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .navbar-brand:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .nav-link {
            font-weight: 700;
            padding: 0.8rem 1rem !important;
            margin: 0 0.2rem;
            border-radius: 6px;
            transition: all 0.3s;
            position: relative;
            color:yellow;
        }

        .nav-link:hover {
            background: violet;
            color:yellow;
            transform: translateY(-2px);
        }

        /* Underline Animation */
        .hover-underline {
            position: relative;
            display: inline-block;
        }

        .hover-underline::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 6px;
            left: 0;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .hover-underline:hover::after {
            width: 100%;
            left: 0;
        }

        /* Dropdown Enhancements */
        .dropdown-menu {
            border: none;
            border-radius: 8px;
            padding: 0.5rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            animation: fadeInDown 0.3s;
        }

        .dropdown-item {
            padding: 0.5rem 1.5rem;
            margin: 0.2rem 0;
            border-radius: 4px;
            transition: all 0.2s;
            font-weight: 500;
        }

        .dropdown-item:hover {
            transform: translateX(2px);
        }

 /* Enhanced Dropdown Styles for Mobile */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: block !important;
  }

  .navbar-nav .dropdown-menu.show {
    max-height: 500px;
    padding: 0.5rem 0;
    background-color: rgba(0,0,0,0.05);
  }

  .dropdown-item {
    padding: 0.5rem 1.5rem !important;
    color: var(--text-color) !important;
  }

  .dropdown-item:hover {
    background-color: rgba(0,0,0,0.1) !important;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  
  /* Special dropdown colors for mobile */
  .tech-dropdown, .gk-dropdown {
    background: var(--bg-color);
  }
  
  .gk-dropdown .dropdown-item {
    color: var(--text-color) !important;
  }
}

@media (max-width: 991.98px) {
  .dropdown-toggle {
    padding: 0.8rem 1rem !important;
  }
}

        /* Language Switcher */
        .lang-switcher {
            transition: all 0.3s;
            border-radius: 20px;
            padding: 0.3rem 1rem;
        }

        .lang-switcher:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .nav-link {
                margin: 0.2rem 0;
            }
            
            .dropdown-menu {
                margin-left: 1rem;
                width: calc(100% - 2rem);
                box-shadow: none;
            }
            
            .tech-dropdown, .gk-dropdown {
                background: var(--bg-color);
            }
        }

        /* Keyframes for dropdown animation */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animated Brand Logo */
        #brandLogo {
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            will-change: transform;
        }

        #brandLogo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        #brandLogo:hover::before {
            left: 100%;
        }

        .logo-icon {
            font-size: 1.8rem;
            margin-right: 0.8rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
            transform-origin: center;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .logo-text {
            display: inline-block;
            line-height: 1.2;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: 800;
            display: block;
            background: linear-gradient(135deg, #7B2CBF 0%, #FF00FF 50%, #3C096C 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            text-shadow: 
                0 0 8px rgba(123, 44, 191, 0.5),
                0 0 15px rgba(255, 0, 255, 0.3);
            animation: 
                flashAnimation 4s infinite alternate,
                gradientFlow 6s linear infinite;
            filter: brightness(1.2);
        }

        @keyframes flashAnimation {
            0%, 100% {
                opacity: 0.9;
                text-shadow: 
                    0 0 8px rgba(123, 44, 191, 0.5),
                    0 0 15px rgba(255, 0, 255, 0.3);
            }
            25% {
                opacity: 1;
                text-shadow: 
                    0 0 15px rgba(255, 0, 255, 0.8),
                    0 0 30px rgba(255, 0, 255, 0.6);
            }
            50% {
                opacity: 0.8;
                text-shadow: 
                    0 0 5px rgba(123, 44, 191, 0.3),
                    0 0 10px rgba(255, 0, 255, 0.2);
            }
            75% {
                opacity: 1;
                text-shadow: 
                    0 0 20px rgba(255, 0, 255, 1),
                    0 0 40px rgba(255, 0, 255, 0.8);
            }
        }

        @keyframes gradientFlow {
            0% { background-position: 0% center; }
            100% { background-position: 100% center; }
        }

        /* Dark mode enhancement */
        [data-bs-theme="dark"] .logo-main {
            filter: brightness(1.4);
            animation: 
                flashAnimation 1.2s infinite alternate,
                gradientFlow 5s linear infinite;
            background: linear-gradient(
                135deg,
                #ff9a00 0%,
                #ff6b6b 50%,
                #ff2d7a 100%
            );
            text-shadow: 
                0 2px 4px rgba(0,0,0,0.3),
                0 0 8px rgba(255,154,0,0.5);
        }
        .logo-sub {
            font-size: 1.2rem;
            color: #a6e3ff;
            font-weight: 600;
            display: block;
            letter-spacing: 1px;
            animation: subTextFloat 3s infinite ease-in-out;
        }

        /* Animations */
        @keyframes textGlow {
            0% {
                text-shadow: 0 0 5px rgba(255,138,0,0.3);
            }
            100% {
                text-shadow: 0 0 15px rgba(229,46,113,0.5);
            }
        }

        @keyframes subTextFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        #brandLogo:hover .logo-icon {
            transform: rotate(15deg) scale(1.1);
            color: #ffde7d;
            text-shadow: 0 0 15px rgba(255,222,125,0.7);
        }

        /* Dark mode adjustments */
        [data-bs-theme="dark"] .logo-sub {
            color: #ffde7d;
        }

        /* Responsive Carousel with Perfect Image Visibility */
        .carousel-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 70vh;
            min-height: 500px;
        }
        
        .carousel,
        .carousel-inner,
        .carousel-item {
            height: 100%;
        }
        
        .carousel-image-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        
        .carousel-item:hover .carousel-image {
            transform: scale(1.03);
        }
        
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
        }
        
        .carousel-caption {
            position: relative;
            right: auto;
            left: auto;
            padding: 2rem;
            background: rgba(0,0,0,0.6);
            border-radius: 10px;
            max-width: 600px;
            backdrop-filter: blur(5px);
            border-left: 4px solid var(--primary-color);
        }
        
        .carousel-indicators {
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.5);
        }
        
        .carousel-indicators button.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
            border-color: white;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .carousel:hover .carousel-control-prev,
        .carousel:hover .carousel-control-next {
            opacity: 1;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        /* Hero Section Enhancements */
        .about-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .icon-wrapper {
            transition: all 0.3s ease;
        }
        
        .about-card:hover .icon-wrapper {
            transform: rotate(15deg) scale(1.1);
        }
        
        [data-bs-theme="dark"] .about-card {
            background: rgba(30, 30, 30, 0.9);
            color: var(--text-color);
        }
        
        /* Enhanced Categories Section */
        .category-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
            background-color: var(--bg-color);
            will-change: transform;
        }
        
        .category-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .category-icon {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .category-card .btn {
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .category-card:hover .btn {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Custom colors */
        .text-purple { color: #6f42c1; }
        .bg-purple { background-color: #6f42c1; }
        .btn-purple { 
            background-color: #6f42c1; 
            border-color: #6f42c1;
            color: white;
        }
        .btn-purple:hover {
            background-color: #5a32a3;
            border-color: #5a32a3;
        }
        
        .text-indigo { color: #6610f2; }
        .bg-indigo { background-color: #6610f2; }
        .btn-indigo { 
            background-color: #6610f2; 
            border-color: #6610f2;
            color: white;
        }
        .btn-indigo:hover {
            background-color: #520dc8;
            border-color: #520dc8;
        }
        
        .text-pink { color: #d63384; }
        .bg-pink { background-color: #d63384; }
        .btn-pink { 
            background-color: #d63384; 
            border-color: #d63384;
            color: white;
        }
        .btn-pink:hover {
            background-color: #b02a6f;
            border-color: #b02a6f;
        }
        
        .border-purple { border-top-color: #6f42c1 !important; }
        .border-indigo { border-top-color: #6610f2 !important; }
        .border-pink { border-top-color: #d63384 !important; }
        
        /* Animation delays */
        .animate__delay-1s { animation-delay: 0.2s !important; }
        .animate__delay-2s { animation-delay: 0.4s !important; }
        .animate__delay-3s { animation-delay: 0.6s !important; }

        /* Horizontal Scroller Styles */
        .horizontal-scroller {
            position: relative;
            overflow: hidden;
            padding: 0 40px;
        }
        
        .scroller-container {
            overflow-x: auto;
            scrollbar-width: none;
			 -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none;
            padding-bottom: 20px;
			width: 100%;
        }
        
        .scroller-container::-webkit-scrollbar {
            display: none;
        }
        
        .scroller-content {
            display: inline-flex;
            transition: transform 0.5s ease;
            will-change: transform;
			width: max-content;
        }
        
        .scroller-item {
            flex: 0 0 300px;
            transition: all 0.3s ease;
            will-change: transform;
			border-style: double;
			border-radius:5px;
			border-color: blue;
        }
        
        .scroller-item:hover {
            transform: translateY(-5px);
        }
        
        .scroller-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .scroller-prev { left: 0; }
        .scroller-next { right: 0; }
        
        .horizontal-scroller:hover .scroller-nav {
            opacity: 1;
        }
        
        /* Modern Marquee Styles */
        .modern-marquee-container {
            height: 350px;
            overflow: hidden;
            position: relative;
            border: 3px double red;
        }
        
        .modern-marquee {
            position: absolute;
            width: 100%;
            animation: scrollUp 30s linear infinite;
			will-change: transform; /* For better performance */
        }
        
		/* Add these new rules */
.modern-marquee-container:hover .modern-marquee {
    animation-play-state: paused;
}

.modern-marquee-item:hover {
    background-color: rgba(0,0,0,0.05) !important;
    transform: translateX(5px);
    cursor: pointer;
}
        .modern-marquee-item {
            transition: all 0.3s ease;
            background-color: rgba(0,0,0,0.01);
            border: 1px solid rgba(0,0,0,0.03);
            will-change: transform;
        }
        
        .modern-marquee-item > div:hover {
            background-color: rgba(0,0,0,0.03);
            border-color: rgba(0,0,0,0.05);
            transform: translateX(5px);
        }
        
		@keyframes scrollUp {
    0% { 
        transform: translateY(0); 
    }
    100% { 
        transform: translateY(-100%); 
    }
}
        .icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        
        .small-badge {
            font-size: 0.65rem;
            padding: 0.25em 0.4em;
            font-weight: 500;
        }
        
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

        /* Featured Card Styles */
        .featured-card {
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .object-cover {
            object-fit: cover;
        }
        
        /* Avatar Styles */
        .avatar-group {
            display: flex;
        }
        
        .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-section {
                padding: 3rem 0;
            }
            
            .about-card {
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                text-align: center;
            }
            
            .language-switcher {
                justify-content: center;
            }
            
            .about-content ul {
                text-align: left;
            }
            
            .carousel-section {
                height: 60vh;
                min-height: 400px;
            }
            
            .carousel-caption {
                max-width: 90%;
                padding: 1.5rem;
            }
            
            .carousel-caption h3 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-section {
                height: 50vh;
                min-height: 350px;
            }
            
            .carousel-caption h3 {
                font-size: 1.5rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .btn-lg {
                padding: 0.5rem 1rem;
                font-size: 1rem;
            }
            
            .hero-section {
                padding: 2rem 0;
            }
            
            .display-4 {
                font-size: 2.5rem;
            }
        }
		
  /* Footer Styles */
  .footer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg ...>');
  background-size: cover;
  pointer-events: none; 
}

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9a00;
  }

  .brand-logo i {
    font-size: 2rem;
    color: #ff6b6b;
  }

  .brand-tagline {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  .footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
    color: #ffde7d;
  }

  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b6b);
    border-radius: 3px;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
  }

  .footer-nav a:hover {
    color: white;
    transform: translateX(5px);
  }

  .footer-nav i {
    width: 20px;
    text-align: center;
    color: #ff9a00;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
  }

  .social-btn.fb { background: #3b5998; }
  .social-btn.tw { background: #1da1f2; }
  .social-btn.ig { background: #e1306c; }
  .social-btn.yt { background: #ff0000; }

  .social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .newsletter-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .newsletter-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .newsletter-form {
    display: flex;
    position: relative;
  }

  .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    outline: none;
  }

  .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
  }

  .newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff9a00, #ff6b6b);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .newsletter-form button:hover {
    transform: scale(1.1);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
  }

  .legal-links {
    display: flex;
    gap: 1.5rem;
  }

  .legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .legal-links a:hover {
    color: #ff9a00;
  }

  @media (max-width: 768px) {
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    
    .legal-links {
      gap: 1rem;
    }
  }
  
  
/* COUNTER CODE */
.counter-card {
    
}

.counter-card.animate__fadeInUp {
    transform: translateY(0);
    opacity: 1;
}

.counter-section {
    position: relative;
    overflow: hidden;
}

.counter-progress {
  transition: width 1.5s ease-in-out;
}
.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SCROLL TO TOP - Replace existing styles */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: orange;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#scrollToTopBtn.visible {
	display: flex !important;
  opacity: 1;
  transform: translateY(0) !important;
}
#scrollToTopBtn:hover {
  background: #3a56b4;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  background: #4e73df;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-to-top.visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* Toggle arrow icon for dropdowns */
.dropdown-toggle::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 0.3em;
  transition: transform 0.3s ease;
  border: none !important; /* Add this */
  vertical-align: middle; /* Add this */
}

/* Change from content-swap to transform-rotate */
.dropdown-toggle.expanded::after {
  transform: rotate(180deg); /* Changed from content: '▲' */
}

/* Chrome-specific fixes */
@supports (-webkit-appearance:none) {
  .dropdown-menu {
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
  }
  
  .dropdown-toggle::after {
    -webkit-transform: translateZ(0);
  }
}

/* Enhanced Mobile Dropdown Styles */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .navbar-nav .dropdown-menu.show {
    max-height: 500px;
    padding: 0.5rem 0;
    background-color: rgba(0,0,0,0.05);
  }

  .dropdown-item {
    padding: 0.5rem 1.5rem !important;
    color: var(--text-color) !important;
  }

  .dropdown-item:hover {
    background-color: rgba(0,0,0,0.1) !important;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease-in-out;
  }

  .dropdown-toggle.expanded::after {
    transform: rotate(180deg);
  }
}