/* ╔═══════════════════════════════════════════════════════════════════════════ */
/* ║ Ⓒ 2024 ᴅᴇᴠꜱʜɪᴠᴀᴍᴄᴏᴅᴇꜱ | ɢɪᴛʜᴜʙ: https://github.com/Devshivamcodes */
/* ║ ᴀʟʟ ʀɪɢʜᴛꜱ ʀᴇꜱᴇʀᴠᴇᴅ. ᴜꜱᴀɢᴇ ᴏʀ ʀᴇᴘʀᴏᴅᴜᴄᴛɪᴏɴ ᴡɪᴛʜᴏᴜᴛ ᴄʀᴇᴅɪᴛ ɪꜱ ᴘʀᴏʜɪʙɪᴛᴇᴅ. */
/* ║ ʟɪᴄᴇɴꜱᴇᴅ ᴜɴᴅᴇʀ ᴛʜᴇ ᴀᴘᴀᴄʜᴇ ʟɪᴄᴇɴꜱᴇ, ᴠᴇʀꜱɪᴏɴ 2.0 */
/* ║ ʏᴏᴜ ᴍᴜꜱᴛ ᴘʀᴏᴠɪᴅᴇ ᴄʀᴇᴅɪᴛ ᴡʜᴇɴ ᴜꜱɪɴɢ ᴏʀ ᴍᴏᴅɪꜰʏɪɴɢ ᴛʜɪꜱ ᴄᴏᴅᴇ. */
/* ║ ʟɪᴄᴇɴꜱᴇ ᴅᴇᴛᴀɪʟꜱ: http://www.apache.org/licenses/LICENSE-2.0 */
/* ╚═══════════════════════════════════════════════════════════════════════════ */


:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --dark-light: #334155;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f1f5f9;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ᴄᴜꜱᴛᴏᴍ ꜱᴄʀᴏʟʟʙᴀʀ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ᴍᴀɪɴ ᴄᴏɴᴛᴇɴᴛ */
.main-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ɢʟᴀꜱꜱ ɴᴀᴠɪɢᴀᴛɪᴏɴ */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    z-index: 100;
    transition: var(--transition);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.nav-brand-bg {
    position: absolute;
    top: -5px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: -1;
    border-radius: 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.nav-brand:hover .nav-brand-bg {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 2rem);
}

.nav-link.active {
    color: var(--primary);
}

/* ʜᴀᴍʙᴜʀɢᴇʀ ᴄᴏɴᴛᴀɪɴᴇʀ */
.hamburger {
    display: none;
    position: relative;
    z-index: 100;
}

/*  ᴀᴍʙᴜʀɢᴇʀ ʙᴜᴛᴛᴏɴ ꜱᴛʏʟᴇꜱ */
#hamburger-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    padding: 0;
    margin-left: auto;
}

.burger-bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ʜᴀᴍʙᴜʀɢᴇʀ ᴀɴɪᴍᴀᴛɪᴏɴꜱ */
#burger-bar1.hamburger-animation1 {
    transform: translateY(9px) rotate(45deg);
}
#burger-bar2.hamburger-animation2 {
    opacity: 0;
    transform: scale(0);
}
#burger-bar3.hamburger-animation3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* ᴍᴏʙɪʟᴇ ᴍᴇɴᴜ ꜱᴛʏʟᴇꜱ */
.mobiletogglemenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.mobiletogglemenu.active {
    right: 0;
}

.mobile-navbar-tabs-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    max-width: 400px;
    margin: 100px auto 0;
    padding: 0;
}

.mobile-navbar-tabs-li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-navbar-tabs-li a:hover,
.mobile-navbar-tabs-li.activeThismobiletab a {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-navbar-tabs-li i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--primary);
}

/* ᴄʟᴏꜱᴇ ʙᴜᴛᴛᴏɴ ꜱᴛʏʟᴇꜱ */
.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-close-btn i {
    color: var(--dark);
    font-size: 2rem;
}

/* ꜱᴇᴄᴛɪᴏɴꜱ */
section {
    min-height: 100vh;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 i {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ʜᴇʀᴏ ꜱᴇᴄᴛɪᴏɴ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatIn 0.8s ease-out;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: floatIn 1s ease-out;
}

.hero-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hero-text a:hover {
    text-decoration: underline;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1;
    animation: floatIn 1.2s ease-out;
}

.hero-btn span {
    position: relative;
    z-index: 2;
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--primary));
    transition: var(--transition);
    z-index: 1;
}

.hero-btn:hover .btn-hover-effect {
    left: 0;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob 15s infinite alternate;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ᴛᴜᴛᴏʀɪᴀʟ ꜱᴇᴄᴛɪᴏɴ */
.tutorial-section {
    background: white;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tutorial-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tutorial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.tutorial-card:hover .card-hover {
    opacity: 1;
}

.coming-soon {
    background: rgba(0, 0, 0, 0.02);
    color: var(--gray);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.coming-soon .card-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray);
}

/* ꜱᴀꜰᴇᴛʏ ꜱᴇᴄᴛɪᴏɴ */
.safety-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.safety-tips {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: flex-start;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tip-check {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tip-content p {
    color: var(--gray);
    font-size: 0.95rem;

}

.coming-soon .tip-check {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray);
}

/* ᴛᴇʀᴍꜱ ꜱᴇᴄᴛɪᴏɴ */
.terms-section {
    background: white;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    counter-reset: term-counter;
}

.terms-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.5);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.terms-item:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.terms-item::before {
    counter-increment: term-counter;
    content: counter(term-counter);
    position: absolute;
    left: -15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(79, 70, 229, 0.2);
}


.terms-item p {
    color: var(--dark-light);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 1.5rem;
}

.terms-item:last-child {
    margin-bottom: 0;
}

/* ꜰᴀQ ꜱᴇᴄᴛɪᴏɴ */
.faq-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-header i {
    color: var(--gray);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 1.5rem;
}

.faq-content p {
    color: var(--gray);
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
}

.faq-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-content a:hover {
    text-decoration: underline;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

/* ꜰᴏᴏᴛᴇʀ ꜱᴛʏʟᴇꜱ */
.footer {
  background: rgba(15, 23, 42, 0.85); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1rem;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.logo-bg {
  position: absolute;
  top: -5px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 10px);
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 8px;
  z-index: 0;
}

.footer-description {
  color: #94a3b8;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
  position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
  }

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.footer-links i,
.footer-contact i {
  font-size: 0.75rem;
  color: var(--primary);
}

.footer-links a,
.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}

/* ꜱᴄʀᴏʟʟ ᴀɴɪᴍᴀᴛɪᴏɴ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ᴀɴɪᴍᴀᴛɪᴏɴ */
@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
}

@keyframes liquid {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(1000px) rotate(360deg); }
}

@keyframes blob {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

/* ʀᴇꜱᴘᴏɴꜱɪᴠᴇ ᴅᴇꜱɪɢɴ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        top: 10px;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    .terms-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .terms-item::before {
        left: -12px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .terms-item p {
        padding-left: 1rem;
    }

    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1.2rem;
      }
    
      .footer-section {
        flex: 1 1 45%;
        min-width: 160px;
      }
    
      .footer-logo span {
        font-size: 1.4rem;
      }
    
      .footer-description,
      .footer-links li,
      .footer-contact li {
        font-size: 0.8rem;
      }
    
      .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
      }
      .hamburger {
        display: flex;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 6rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    
   .faq-header h3 {
    font-size: 0.9rem;
   }

   .section-header h2 {
    font-size: 1.3rem;
}

.section-header p {
    font-size: 0.9rem;

}

.footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-section {
    flex: 1 1 45%;
    min-width: 140px;
  }

  .footer-description {
    font-size: 0.75rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .footer-legal {
    display: none;
  }
    
}
