        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: white;
            color: #333;
            padding-top: 80px;
            position: relative;
            overflow-x: hidden;
        }

        /* Background Slideshow */
        .slideshow-container {
            position: fixed;
            top: 10px;;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide:nth-child(1) {
            background-image: url('img/tech1.jpg');
        }

        .slide:nth-child(2) {
            background-image: url('img/tech3.jpg');
        }

        .slide:nth-child(3) {
            background-image: url('img/FintechNgr-Final-logo-removebg-preview.png');
        }

        .slide:nth-child(4) {
            background-image: url('img/CIBN\ 2.png');
        }

        .slide:nth-child(5) {
            background-image: url('img/FSI\ 2.png');
        }

        /* Transparent black overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        /* Sticky Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0.6rem;
            box-shadow: 0 4px 20px rgba(45, 90, 65, 0.3);
        }

        .navbar-brand {
            color: #000;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            padding:0.5rem 0.5rem;
            align-items: center;
            display: flex;
            gap: 1rem;

        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: black;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .navbar-toggle.active .bar:nth-child(1) {
            transform: rotate(-48deg) translate(-5px, 6px);
        }

        .navbar-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active .bar:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }
        #login{
            background-color: #000;
            color: white;
            border-radius: 10px;
            padding: 0.5rem 0.9rem;
        }
        .header-tab{
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .header-tab::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transition: all 0.5s ease;
            transform: translate(-50%, -50%);
        }


         #login:hover{
            background-color: white ;
            color: black;
            border: solid black;
         }
        .navbar-menu a {
            color: black;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .navbar-menu a:hover {
            background: rgba(29, 124, 2, 0.7);
            transform: translateY(-2px);
        }

        .navbar-menu a::before {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .navbar-menu a:hover::before {
            left: 100%;
        }

        /* Mobile menu styles */
        @media (max-width: 768px) {
            .navbar-toggle {
                display: flex;
            }

            .navbar-menu {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                gap: 1rem;
                border-radius: 0 0 10px 10px;
            }

            .navbar-menu.active {
                transform: translateX(0);
            }

            .navbar-menu a {
                border-radius: 10px;
            }
        }

        /* Header Section */
        .header {
            padding: 2rem 1rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            margin: 1rem;
            border-radius: 6px;
            
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            
        }

        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.4s ease;
            cursor: pointer;
            background-color: #ffffff;
            padding: 3rem 3rem;
            border-radius: 10px;
            box-shadow: 4px 4px 7px rgba(8, 95, 2, 0.5);
        }

        .logo-item:hover {
            box-shadow: 6px 6px 10px rgba(8, 95, 2, 0.6);
            transform: translateY(-10px) scale(1.09);
        }

        img{
            width: 120px;
            height: 120px;
            display: flex;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        #fin{
            width:240px;
        }
        #logoimg{
            width: 50px;
            height: 58px;
            padding-bottom: 0;
            padding-top: 0;
            margin-bottom: 0;
        }

        .logo-circle:hover {
            animation: pulse 0.6s ease-in-out;
            box-shadow: 0 12px 35px rgba(45, 90, 65, 0.4);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        img::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            transform: rotate(45deg);
            transition: opacity 0.3s;
            opacity: 0;
        }

        img:hover::before {
            opacity: 1;
            animation: shine 0.8s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .logo-description {
            font-weight: bold;
            font-size: 0.9rem;
            color: #000;
            text-align: center;
            line-height: 1.2;
            margin-top: 0.5rem;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 3rem 2rem;
            text-align: center;
            border: 2px solid rgba(233, 236, 239, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(45, 90, 65, 0.05), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(45, 90, 65, 0.15);
            border-color: #2d5a41;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #0f7b28, #109d33);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 6px 20px rgba(45, 90, 65, 0.3);
            transition: all 0.3s ease;
        }

        .header-icon {
            margin: 0 auto 0.3rem;
            /*background: linear-gradient(135deg, #28a745, #2e5e3d);*/
            border-radius: 10px;
            align-items: center;
            align-content: center;
            justify-content: center;
            font-size: 8rem;
            color:  #28a745;
            text-shadow: 6px 6px 5px rgba(140, 100, 7, 0.5);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            animation: pulse 0.6s ease-in-out;
            transform: scale(1.1);
        }

        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, #0f7b28, #0b2f14);
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, #0f7b28, #0b2f14);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #02610d;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #000;
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .service-btn {
            background: linear-gradient(135deg, #155c0e, #4a7c4c);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 90, 65, 0.3);
            position: relative;
            overflow: hidden;
        }

        .service-btn::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: left 0.6s;
        }

        .service-btn:hover::before {
            left: 100%;
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(45, 90, 65, 0.4);
        }

        .service-btn:active {
            transform: translateY(0);
        }
    
        .btn {
            background-color: green;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;;
        }
    
        .btn:hover {
            background-color:rgb(26, 133, 3);
            transform: translateY(-3px);
        }
    
        .section {
            padding: 4rem 2rem;
            text-align: center;
        }
    
        /* Booking Form Section */
        #registration {
            background-color: rgba(176, 184, 191, 0.8);
            padding: 4rem 2rem;
        }
    
        #registration h2 {
            margin-bottom: 2rem;
            color: white;
            text-shadow: 2px 2px 5px green;
            font-size: 2.5rem;
        }
    
        #registrationForm {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        #loginForm{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            max-width: 800px;
            padding: 3rem;
            margin: 0 auto;
        }
    
        .form-group {
            margin-bottom: 0;
        }
    
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            text-align: left;
            font-weight: 500;
            color: black;
        }
    
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
    
        .form-group textarea {
            grid-column: span 2;
            height: 150px;
            resize: vertical;
        }
    
        .form-group.full-width {
            grid-column: span 2;
        }
    
        .required {
            color: red;
        }
    
        .btn-submit {
            grid-column: span 2;
            background-color: green;
            color: white;
            padding: 0.75rem 0.75rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
    
        .btn-submit:hover {
            background-color:rgb(76, 172, 87);
            transform: translateY(-3px);
        }
    
        /* Media Queries */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: flex-start;
            }
    
            #registrationForm {
                grid-template-columns: 1fr;
            }
    
            .form-group.full-width {
                grid-column: span 1;
            }
    
            .form-group textarea {
                grid-column: span 1;
            }
    
            .btn-submit {
                grid-column: span 1;
            }
        }
        /* Footer */
        .footer {
            background: #ffffff;
            backdrop-filter: blur(10px);
            color: black;
            text-align: center;
            padding: 2rem;
            margin-top: 8rem;
            border-radius: 10px 10px 0 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 2rem 1rem;
                margin: 1rem;
            }
            .header-icon{
                display: none;
            }
            .logo-container {
                gap: 2rem;
            }

            img {
                width: 100px;
                height: 100px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .main-content {
                padding: 0 1rem;
            }

            .navbar {
                padding: 0 1rem;
            }
        }

        /* Unique animations */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        .slide-up {
            animation: slideUp 0.8s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Notification styles */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: #155c0e;
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(45, 90, 65, 0.3);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }
