* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: linear-gradient(135deg, #0c1220, #1a2440);
            color: #f0f4ff;
            min-height: 100vh;
            position: relative;
        }

        /* Stellar background */
        .stellar-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at center, #0c1220 0%, #050811 100%);
            overflow: hidden;
        }

        .star {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            animation: twinkle 5s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Elegant Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 100px;
            z-index: 1000;
            background: white;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 400;
            color: #000000;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .logo span {
            color: #d4af37;
            position: relative;
        }

        .logo span::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d4af37;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .logo:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 1.5rem;
        }

        .nav-links a {
            color: #000000;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .nav-links a:hover {
            color: #0e0341;
        }

        .nav-links a:hover::after {
            width: 100%;
        }


        .nav-contact {
            background: linear-gradient(45deg, #d4af37, #f9e076);
            color: #1a2440;
            border: none;
            padding: 0.9rem 2.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .nav-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .nav-contact:hover::before {
            left: 100%;
        }

        .nav-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }



.contact-panel {
  position: fixed;
  top: 0;
  right: -110%;               
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, #0a1a3a 0%, #0f2a5a 100%);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  box-sizing: border-box;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f4ff;
}

.contact-panel.active {
  right: 0;
}

/* Close button */
.close-btn1 {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: #f0f4ff;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn1:hover {
  color: #1e90ff;
}

.contact-panel h2 {
  margin: 0 0 30px;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.contact-panel h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border-radius: 2px;
}

/* Contact info */
.contact-panel p {
  margin: 18px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-panel p a {
  color: #a8caff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-panel p a::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e90ff;
  margin-right: 5px;
}

.contact-panel p a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.7);
}

/* Form */
.contact-panel form {
  margin-top: 35px;
}

.contact-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #d0e4ff;
}

.contact-panel input[type="email"],
.contact-panel textarea {
  width: 100%;
  resize: vertical;
  margin-bottom: 22px;
  padding: 16px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef6ff;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

.contact-panel input[type="email"]::placeholder,
.contact-panel textarea::placeholder {
  color: #a8caff;
  opacity: 0.7;
}

.contact-panel input[type="email"]:focus,
.contact-panel textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    inset 0 2px 10px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(106, 17, 203, 0.3);
}

/* Send button */
.contact-panel button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.contact-panel button[type="submit"]::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;
}

.contact-panel button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 117, 252, 0.6);
}

.contact-panel button[type="submit"]:hover::before {
  left: 100%;
}

.contact-panel button[type="submit"]:active {
  transform: translateY(1px);
}

.contact-panel button[type="submit"] i {
  font-size: 1.2rem;
}


#successBox {
  /* Original positioning styles (unchanged) */
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  
  /* New visual styling */
  background: linear-gradient(135deg, #0c2461, #1e3799);
  color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 380px;
  width: 90%;
}

#successBox.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

#successBox p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#closeSuccess {
  background-color: #4a69bd;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

#closeSuccess:hover {
  background-color: #6a89cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#closeSuccess:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #03133e;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: #f9e076;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1002;
            display: flex;
            flex-direction: column;
            padding: 120px 30px 40px;
            transition: right 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            border-left: 1px solid rgba(192, 160, 80, 0.2);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            margin-top: 30px;
        }

        .mobile-nav-links li {
            margin-bottom: 25px;
        }

        .mobile-nav-links a {
            color: #d0d8f0;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 500;
            display: block;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: 0.5s;
        }

        .mobile-nav-links a:hover::before {
            left: 100%;
        }

        .mobile-nav-links a:hover {
            color: #f9e076;
            background: rgba(15, 23, 42, 0.6);
        }

        .mobile-nav .nav-contact {
            margin-top: 40px;
            width: 100%;
            text-align: center;
            padding: 1rem;
        }

        .close-nav-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: transparent;
            border: none;
            color: #d0d8f0;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-nav-btn:hover {
            color: #f9e076;
            transform: rotate(90deg);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Container */
        .hero-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
            padding: 2rem;
        }

        .hero-content {
            text-align: center;
            width: 100%;
            z-index: 2;
            padding: 2rem;
            position: absolute;
            top: 18%;
        }

        .hero-title {
            font-family: 'Times New Roman', Times, serif;
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #f9f9ff;
            letter-spacing: 1px;
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
        }

        .tagline {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            color: #d0d8f0;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .tagline span {
            color: #f9e076;
            font-weight: 500;
            position: relative;
        }

        .tagline span::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #c6ba84);
        }

        .services {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3.5rem 0;
            animation: fadeIn 1s ease 0.4s forwards;
            opacity: 0;
        }

        .service-card {
            background: rgba(30, 40, 70, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 2.5rem 1.8rem;
            width: 220px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(192, 160, 80, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(192, 160, 80, 0.3);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.8rem;
            color: #f9e076;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2);
            color: #fff;
        }

        .service-title {
            font-weight: 600;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #f0f4ff;
        }

        .cta-container {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .cta-button {
            background: linear-gradient(45deg, #d4af37, #f9e076);
            color: #1a2440;
            border: none;
            padding: 1.3rem 3.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.7);
        }

        .cta-button.secondary {
            background: transparent;
            color: #f9e076;
            border: 2px solid rgba(212, 175, 55, 0.6);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
        }

        .cta-button.secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        /* Crescent Moon Graphic */
        .crescent-container {
            position: absolute;
            top: 50%;
            left: 80%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            z-index: 1;
            opacity: 0.1;
            animation: float 12s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(249, 224, 118, 0.3));
        }

        @keyframes float {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            50% { transform: translate(-50%, -55%) rotate(5deg); }
            100% { transform: translate(-50%, -50%) rotate(0deg); }
        }

        .crescent {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: transparent;
            box-shadow: inset 0 0 50px #fff, 
                        inset 20px 0 80px #dfcb75,
                        inset -20px 0 80px #d4af37,
                        inset 20px 0 300px #f9e076,
                        inset -20px 0 300px #d4af37,
                        0 0 50px #fff,
                        -10px 0 80px #f9e076,
                        10px 0 80px #d4af37;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            animation: floatElement 20s infinite linear;
            z-index: 1;
            box-shadow: 0 0 20px rgba(249, 224, 118, 0.2);
        }

        .element-1 {
            width: 40px;
            height: 40px;
            top: 15%;
            left: 12%;
            animation-duration: 25s;
        }

        .element-2 {
            width: 70px;
            height: 70px;
            bottom: 10%;
            right: 8%;
            animation-duration: 30s;
        }

        .element-3 {
            width: 25px;
            height: 25px;
            top: 35%;
            right: 18%;
            animation-duration: 20s;
        }

        .element-4 {
            width: 50px;
            height: 50px;
            bottom: 30%;
            left: 15%;
            animation-duration: 22s;
        }

        @keyframes floatElement {
            0% { transform: translateY(0) rotate(0deg) scale(1); }
            50% { transform: translateY(-70px) rotate(180deg) scale(1.1); }
            100% { transform: translateY(0) rotate(360deg) scale(1); }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            .tagline {
                font-size: 1.1rem;
            }
            .services {
                gap: 1.5rem;
            }
            .service-card {
                width: 200px;
                padding: 2.2rem 1.5rem;
            }
            .crescent-container {
                width: 50px;
                height: 50px;
                left: 70%;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1.2rem 5%;
            }
            .nav-links, .nav-contact {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-title {
                font-size: 3.2rem;
            }
            .tagline {
                font-size: 1.4rem;
            }
            .services {
                gap: 1.2rem;
            }
            .service-card {
                width: 180px;
                padding: 2rem 1.2rem;
            }
            .crescent-container {
                width: 10px;
                height: 10px;
            }
            .cta-container {
                flex-direction: column;
                align-items: center;
                gap: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .tagline {
                font-size: 1rem;
            }
            .services {
                flex-direction: column;
                align-items: center;
            }
            .service-card {
                width: 260px;
            }
            .crescent-container {
                width: 10px;
                height: 10px;
            }
        }


 

        .tools-section {
            padding: 70px 100px;
            position: relative;
            overflow: hidden;
            background: rgba(10, 15, 30, 0.8);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            width: 100%;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1.5s ease, transform 1.5s ease;
        }
        
        .tools-section.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Particle background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-500px) translateX(200px) rotate(360deg);
                opacity: 0;
            }
        }
        
        .container {
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .tools-section.in-view .section-header {
            transform: translateY(0);
            opacity: 1;
        }
        
        .section-title {
            font-family: 'Times New Roman', Times, serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #f0f4ff;
            position: relative;
            display: inline-block;
        }
        
        .section-title span {
            color: #d4af37;
            position: relative;
            font-size: 3rem;
            animation: goldGlow 3s infinite alternate;
        }
        
        @keyframes goldGlow {
            0% {
                text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
            }
            100% {
                text-shadow: 0 0 20px rgba(249, 224, 118, 0.8), 
                             0 0 30px rgba(212, 175, 55, 0.6);
            }
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1.5s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .tools-section.in-view .section-title span::after {
            transform: scaleX(1);
        }
        
        .section-subtitle {
            font-size: 1.4rem;
            color: white;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transition: opacity 2s 1s;
        }
        
        .tools-section.in-view .section-subtitle {
            opacity: 1;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .tool-card {
            background: rgba(30, 40, 70, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(192, 160, 80, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            transform: scale(0.95);
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.6s, opacity 0.6s;
        }
        
        .tools-section.in-view .tool-card {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        
        .tool-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(192, 160, 80, 0.3);
            z-index: 10;
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .tool-card:hover::before {
            transform: scaleX(1);
        }
        
        .tool-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s;
        }
        
        .tool-card:hover::after {
            left: 100%;
        }
        
        .tool-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #f9e076;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }
        
        .tool-icon i {
            position: relative;
            z-index: 2;
        }
        
        .tool-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            transition: all 0.5s ease;
            z-index: 1;
        }
        
        .tool-card:hover .tool-icon::before {
            width: 100px;
            height: 100px;
        }
        
        .tool-card:hover .tool-icon {
            transform: scale(1.2);
            color: #ffffff;
            text-shadow: 0 0 15px rgba(249, 224, 118, 0.8);
        }
        
        .tool-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #f0f4ff;
            position: relative;
            display: inline-block;
        }
        
        .tool-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transition: width 0.5s ease;
        }
        
        .tool-card:hover h3::after {
            width: 100%;
        }
        
        .tool-card p {
            color: #a0a8c0;
            line-height: 1.6;
            transition: all 0.4s;
        }
        
        .tool-card:hover p {
            color: #ffffff;
        }
        
        .cta-container {
            text-align: center;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 1s 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        opacity 1s 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .tools-section.in-view .cta-container {
            transform: translateY(0);
            opacity: 1;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #d4af37, #f9e076);
            color: #0c1220;
            border: none;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
        }
        
        .cta-button:active {
            transform: translateY(0);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: all 0.8s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            transition: transform 0.5s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {

            .tools-section {
                padding: 20px 15px;
                margin-top: 1000px;
            }
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-title span {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .tools-grid {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }
            .tool-card {
                width: 300px;
            }
        }

        .instructions {
            background: rgba(30, 40, 70, 0.4);
            border-radius: 15px;
            padding: 25px;
            margin: 40px 0;
            max-width: 800px;
            border-left: 4px solid #d4af37;
        }
        
        .instructions h2 {
            color: #d4af37;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .instructions ul {
            padding-left: 25px;
        }
        
        .instructions li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        

        
        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #0a0e1c, #14192d);
            color: #a0a8c0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(192, 160, 80, 0.1);
        }
        
        .footer-top {
            padding: 80px 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .logo1 {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 400;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .logo1 span {
            color: #d4af37;
            position: relative;
        }

        .logo1 span::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d4af37;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .logo1:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        
        .footer-col:first-child {
            max-width: 350px;
        }
        
        .footer-col h4 {
            font-size: 1.4rem;
            color: #f0f4ff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
        }
        
        .footer-description {
            margin: 20px 0 25px;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(30, 40, 70, 0.4);
            border-radius: 50%;
            color: #f9e076;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: linear-gradient(45deg, #d4af37, #f9e076);
            color: #1a2440;
            transform: translateY(-5px);
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #a0a8c0;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #f9e076;
            gap: 15px;
        }
        
        .footer-links a i {
            color: #d4af37;
            font-size: 0.8rem;
        }
        
        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
            line-height: 1.6;
        }
        
        .footer-contact i {
            color: #d4af37;
            font-size: 1.1rem;
            margin-top: 4px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .footer-legal {
            display: flex;
            gap: 25px;
        }
        
        .footer-legal a {
            color: #a0a8c0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: #f9e076;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 3rem;
            }
            
            .section-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .tools-grid, .insights-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 60px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .footer-top {
                grid-template-columns: 1fr;
            }
            
            .footer-col:first-child {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .footer-legal {
                flex-direction: column;
                gap: 10px;
            }
        }




 /* Lions Panel */
        .lions-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: black;
            z-index: 1000;
            display: flex;
            transform: translateY(100%);
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        
        .lions-panel.active {
            transform: translateY(0);
        }
        
        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgb(7, 3, 69);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1010;
            border: 1px solid rgb(13, 1, 67);
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }
        
        .close-btn i {
            font-size: 24px;
            color: white;
        }
        
        /* Form Section */
        .form-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
            z-index: 2;
        }
        
        .form-container {
            max-width: 500px;
            width: 100%;
            padding: 40px;
            background: white;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            background: blue;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 30px;
        }
        
 .form-section .form-input {
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgb(0, 0, 0);
            border-radius: 10px;
            color: black;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
        }
        
        .form-label {
            position: absolute;
            top: 15px;
            left: 20px;
            pointer-events: none;
            transition: all 0.3s ease;
            color: black;
        }
        
        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            top: -10px;
            left: 15px;
            font-size: 12px;
            background: linear-gradient(135deg, #0f2027, #203a43);
            padding: 2px 8px;
            border-radius: 10px;
            color: #00f2fe;
        }
        
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(45deg, #00c9ff, #00f2fe);
            color: #0f2027;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .submit-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(30deg);
            transition: all 0.6s;
        }
        
        .submit-btn:hover::after {
            left: 120%;
        }
        
        /* Character Section */
        .character-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
        }
        
        .character-container {
            position: relative;
            width: 100%;
            height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #character-canvas {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            background: transparent;
        }
        
        .speech-bubble {
            position: absolute;
            top: 20%;
            right: 35%;
            background: rgb(255, 255, 255);
            color: #0f2027;
            padding: 20px 25px;
            border-radius: 20px;
            max-width: 400px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: float 3s ease-in-out infinite;
            z-index: 10;
        }
        
        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 20%;
            border-width: 15px 15px 0;
            border-style: solid;
            border-color: rgba(255, 255, 255, 0.95) transparent transparent;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .lions-panel {
                flex-direction: column;
                overflow-y: auto;
            }
            
            .form-section, .character-section {
                width: 100%;
                padding: 20px;
            }
            
            .form-section {
                order: 2;
                padding-top: 0;
            }
            
            .character-section {
                height: 50vh;
            }
            
            .character-container {
                height: 45vh;
            }
            
            .speech-bubble {
                top: 10%;
                right: 10%;
            }
            
            .form-container {
                max-width: 100%;
            }
            
            h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .speech-bubble {
                font-size: 14px;
                max-width: 180px;
                padding: 15px;
                top: 5%;
                right: 5%;
            }
        }
        
      
.success-box1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #0a1a3a, #0d2b5b);
  border: 1px solid #1e4d9e;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #e0f0ff;
  box-shadow: 
    0 6px 20px rgba(0, 15, 40, 0.3),
    0 0 0 1px rgba(30, 100, 200, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 10000;
  text-align: center;
  font-weight: 500;
  max-width: 90%;
  animation: fadeIn 0.4s ease-out;
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.success-box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1c7fff, #00c6ff);
}

.success-box1::after {
  content: "✓";
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin: 0.8rem auto 0.5rem;
  text-shadow: 0 0 15px rgba(100, 180, 255, 0.6);
  color: #4dabf7;
}


