
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    :root {
    --bg-dark: #0f172a;
    --accent: #38bdf8;
    --glass: rgba(255, 255, 255, 0.05);
}
html {
  scroll-behavior: smooth;
}
body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
/* --- User Navigation & Profile UI --- */
.user-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Profile Avatar Styling */
#userAvatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #8E6BCB; /* Brand Purple */
    object-fit: cover;
    transition: transform 0.2s ease;
}

#userAvatar:hover {
    transform: scale(1.05);
}

.profile-container {
    position: relative;
}

/* Professional Dropdown Card */
.dropdown-card {
    position: absolute;
    top: 50px;
    right: 0;
    background: #FFFFFF;
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none; /* Controlled by .active class */
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-out;
}

.dropdown-card.active {
    display: block;
}

/* Dropdown Header (User Name/Email area) */
.dropdown-header {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-header p {
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dropdown Links List */
.dropdown-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-links li a:hover {
    background: #f8f9fa;
    color: #8E6BCB;
}

/* Logout Specific Styling */
.logout-link {
    color: #ff4757 !important;
    border-top: 1px solid #eee;
    font-weight: 600;
}

.logout-link:hover {
    background: #fff5f5 !important;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a1128;
    z-index: 9999;
    
    /* 1. ALLOW SCROLLING */
    overflow-y: auto; 
    
    /* 2. HIDE SCROLLBAR (Chrome, Safari, Edge) */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px; /* Space for the X button */
    padding-bottom: 40px; /* Buffer at the bottom */

    /* Animation */
    transform: translateY(-100%); 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.mobile-nav-links a:hover{
    color: #00d4ff;
    transition: 0.9s;
}

/* 3. HIDE SCROLLBAR (Chrome, Safari and Opera) */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
}

/* X button moved to Top Right */
.close-menu {
    position: absolute;
    top: 25px; /* Distance from top */
    right: 25px; /* Distance from right */
    left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.close-menu:hover {
    opacity: 0.7;
}

.close-menu:active {
    transform: scale(0.9);
}



.premium-link {
    color: #4db8ff !important; /* Accent color */
}

.mobile-nav-links a.premium-link {
    color: #4db8ff; /* Light Blue accent from the "Premium" btn */
}

.mobile-buttons {
    margin-top: 30px;
    width:90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}
#dlLink_m{
    width: 100%;
    display: flex;
    justify-content: center;
}
.mobile-buttons .btn-primary {
    width: 100%;
    background: #1a73e8; /* Blue color from your buttons */
    padding: 15px;
    border-radius: 8px;
    color: white;
    border: none;
   
    font-weight: bold;
    cursor: pointer;
}
.mobile-buttons .btn-primary:hover {
  opacity: 0.9;
  transition: 0.9s;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px 0;
    letter-spacing: 1px;

  background: none;
}
/* Container for Category + Arrow */
.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    padding-left: 20px;
}

.arrow-icon {
    transition: transform 0.3s ease;
    fill: #4db8ff; /* Matches your premium link color */
}

/* The actual list (hidden by default) */
/* This is your existing code with one small fix */
.mobile-dropdown {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    /* Clean transition for both height and opacity */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

/* 2. The state when the menu is open */
.has-dropdown.active .mobile-dropdown {
    /* Increase this significantly to accommodate the long list */
    max-height: 2000px; 
    opacity: 1;
    padding: 10px 0;
    /* This ensures you can scroll if it exceeds the phone screen height */
    overflow-y: visible; 
}

/* 3. Optional: Rotate the arrow icon if you have one */
.has-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

/* Optional: Make the scrollbar itself match your purple theme */
::-webkit-scrollbar {
    width: 10px;
    display: none;
}

::-webkit-scrollbar-track {
    background: #0B0E14;
}

::-webkit-scrollbar-thumb {
    background: #334155; /* Slate color */
    border-radius: 10px;
    border: 2px solid #0B0E14;
}

::-webkit-scrollbar-thumb:hover {
    background: #8E6BCB; /* Purple on hover */
}

/* When Active */
.has-dropdown.active .mobile-dropdown {
    max-height: 400px; /* Adjust based on list length */
    margin-top: 10px;
    padding-bottom: 10px;
}

.has-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}
/* Animation for smooth appearance */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}
/* --- TOAST NOTIFICATION SYSTEM --- */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none; /* Allows clicking through empty space */
}

.success-alert, .error-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    min-width: 320px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: popUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
}

.success-alert {
    background: rgba(34, 197, 94, 0.1); 
    border: 2px solid #22c55e; 
}

.success-alert i {
    color: #22c55e;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}

.error-alert {
    background: rgba(239, 68, 68, 0.1); 
    border: 2px solid #ef4444; 
}

.error-alert i {
    color: #ef4444;
    font-size: 1.4rem;
}

@keyframes popUp {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s ease;
}

/* --- AUTH MODAL OVERLAY --- */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none; 
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-overlay.active {
    display: flex;
}

/* --- AUTH CARD --- */
.auth-card {
    background: #FFFFFF;
    padding: 25px 30px;
    border-radius: 30px;
    width: 100%;
    max-width: 480px;
    height: auto; /* Changed from 600px to auto for better content fitting */
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.auth-title {
    color: #222;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 35px;
}

/* --- FORM & INPUTS --- */
.email-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.auth-card input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    color: #333;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-card input:focus {
    border-color: #8E6BCB;
}

.input-error {
    border: 1px solid #ff4d4d !important;
    background-color: rgba(255, 77, 77, 0.05) !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* --- BUTTONS & LINKS --- */
.sign-in-btn {
    width: 100%;
    background: #8E6BCB;
    color: #FFFFFF;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(142, 107, 203, 0.2);
    transition: background 0.2s ease;
}

.sign-in-btn:hover {
    background: #7B56B9;
}

.close-auth {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 30px;
    cursor: pointer;
}

/* --- SOCIAL LOGIN SECTION --- */
.social-divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 30px 0;
}

.social-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #E0E0E0;
}

.social-divider-text {
    padding: 0 15px;
    color: #888;
    font-size: 0.85rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.social-btn {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-btn:hover {
    background-color: #F8F8F8;
}

/* --- MOBILE RESPONSIVENESS (Auth Only) --- */
@media(max-width:551px){
    .auth-card {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    .auth-overlay {
        padding: 0;
    }
}
a{
  text-decoration: none;
   color: white;
}
.carousel-info{
  display: none;
}
.prev,.next{
  display: none;
}
/* 1. The 'Hidden' State */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* 2. Left-side entry (optional) */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

/* 3. The 'Visible' State (triggered by JS) */
.reveal.active, .reveal-left.active {
  opacity: 1;
  transform: translate(0, 0);
}
/* The 'Pop' Hidden State */
.pop-reveal {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

/* The 'Pop' Visible State */
.pop-reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Staggering the Pop (Optional but looks great) */
.grid .card:nth-child(1), .asset-grid .asset-card:nth-child(1) { transition-delay: 0.05s; }
.grid .card:nth-child(2), .asset-grid .asset-card:nth-child(2) { transition-delay: 0.1s; }
.grid .card:nth-child(3), .asset-grid .asset-card:nth-child(3) { transition-delay: 0.15s; }
.grid .card:nth-child(4), .asset-grid .asset-card:nth-child(4) { transition-delay: 0.2s; }
/* Card 1 */
.asset-card:nth-child(1) { transition-delay: 0.1s; }
/* Card 2 */
.asset-card:nth-child(2) { transition-delay: 0.2s; }
/* Card 3 */
.asset-card:nth-child(3) { transition-delay: 0.3s; }
/* Glassmorphism Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-links a {
text-decoration: none;
color: rgb(196, 196, 196);
}
.buttons button {
    background-color: #38BDF8;
    color: white;
    padding: 15px;
    border: none;
    height: 50px;
    width: 150px;
    border-radius: 5px;
    cursor: pointer;
    /* Required for the shadow positioning */
    position: relative; 
    z-index: 1;
    transition: transform 0.3s ease; /* Smooth lift effect */
}

/* The Shadow Layer */
.buttons button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.5); /* Matches your #0EA5E9 color with transparency */
    border-radius: 5px;
    filter: blur(15px); /* Softens the shadow into a glow */
    z-index: -1; /* Places shadow behind the button */
    opacity: 0; /* Hidden by default */
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
}

.buttons button:hover {
    opacity: 1; /* Changed from 0.8 to keep button solid while shadow glows */
    transform: translateY(-5px); /* Button lifts UP */
}

/* Hover effect: Shadow moves DOWN while button moves UP */
.buttons button:hover::after {
    opacity: 1;
    transform: translateY(12px) scale(0.9); /* Shadow moves to the bottom */
}
.nav-links  li{
    display: inline-block;
    margin: 5px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 40px ;
    height: 100vh;
    justify-content: space-between;
}
.hero-content h1{
  font-size: 80px;
}
.highlight {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    border: none;
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}
.btn-secondary{
 padding: 18px;
 border-radius: 10px;
 background: none;
 color: white;
 cursor: pointer;
 border: 1px solid white;
}
.hero-btns{
    display: flex;
    gap: 20px;
}
/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 50px 5%;



}


.bento-item {
    background: var(--glass);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}
.industry-section{
padding: 40px;
display: flex;
justify-content: center;
}
.carousel-container {
    position: relative;
    width: 550px;
    height: 300px;
    /* margin: 50px auto; */
    border-radius: 20px;
    overflow: hidden;
    background: #1e293b;
    z-index: 1;
    transition: transform 0.3s ease;
}
.tasker-card{
    padding: 40px;
}
/* Moving Back Shadow */
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(14, 165, 233, 0.4);
    filter: blur(30px);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel-container:hover {
    transform: translateY(-10px);
}

.carousel-container:hover::after {
    opacity: 1;
    transform: translateY(25px) scale(0.9);
}

/* Badges styling from your design */
.badge {
    position: absolute;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 10;
}
.container {
  text-align: center;
 width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* The Hover Effect */
.card:hover {
  background: var(--theme-color);
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card span {
  font-weight: 600;
  font-size: 1.1rem;
}
.free-badge { bottom: 20px; left: 20px; background: #0EA5E9; color: white; }
.count-badge { top: 20px; right: 20px; background: #10B981; color: white; }

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.carousel-slide img.active { display: block; animation: fade 0.5s; }

@keyframes fade { from { opacity: 0.4; } to { opacity: 1; } }
.pouplar{
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
 
}
/* General Layout Utilities */
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
/* .text-center { text-align: center; } */

.mb-5 { margin-bottom: 3rem; }

:root {
  --main-bg: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #777;
  --border-light: #eeeeee;
}


/* Card Component */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
 width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.asset-card {
  background: #1B2234;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* THEMED HOVER Logic */
.asset-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.asset-card:hover .price-value {
  color: var(--theme-color);
}

/* Element Styles */
.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.badge-rating {
  background: #fff9e6;
  color: #ffb800;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
}

.asset-title { font-size: 20px; margin: 20px 0 8px; color: var(--text-primary); }
.asset-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.category-tag { display: block; margin-top: 15px; font-size: 12px; color: #999; }

.card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.price-info { font-size: 14px; color: var(--text-secondary); }
.price-value { font-size: 20px; font-weight: 800; color: #4433ff; transition: color 0.3s; }

.btn-order {
  background: #111;
  color: #fff;
  border: none;
  padding: 20px 20px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-order:hover {
  opacity: 0.8;
}
.footer {
  background-color: #050a18; /* Deep dark blue from the image */
  color: #94a3b8;
  padding: 80px 0 40px 0;
  font-family: 'Inter', sans-serif;
    margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand and Links */
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand { flex: 1; }
.brand-logo { color: #00d4ff; font-size: 24px; margin-bottom: 20px; }
.brand-logo span { color: #ffffff; }
.footer-brand p { line-height: 1.6; margin-bottom: 25px; max-width: 320px; }

.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-between;
}

.link-col h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
.link-col ul { list-style: none; padding: 0; }
.link-col li { margin-bottom: 12px; }
.link-col a { text-decoration: none; color: inherit; transition: 0.3s; }
.link-col a:hover { color: #00d4ff; }

/* Contact Info Boxes */
.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
}

.c-icon { font-size: 20px; color: #00d4ff; }
.c-label { display: block; font-size: 12px; color: #64748b; }
.c-value { color: #fff; font-weight: 600; }

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 14px;
}

.legal-links { display: flex; gap: 20px; }
.legal-links a { text-decoration: none; color: inherit; }
/* Intro Block */
.intro {
  /* padding: 100px ; */
  height: 100%;
margin-top: 40px;
  /* background: #ffffff; */
}

.intro__container {
  display: flex;
  /* max-width: 1200px; */
  margin: 0 auto;
  align-items: center;
  gap: 60px;
  /* padding: 0 40px; */
  height: 100%;
  width: 100%;
  padding: 40px;

  /* justify-content: space-between; */
}

.intro__visual { flex: 1; position: relative; }
.intro__content { flex: 1; }

/* Carousel Component */
.carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.carousel-slide img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* This class will be added by JS once the image is ready */
.carousel-slide img.loaded {
    opacity: 1;
}
.carousel__viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

.carousel__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Spec List Component */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.spec-list__item {
  display: flex;
  gap: 20px;
  transition: transform 0.2s ease;
}

.spec-list__item:hover {
  transform: translateX(10px);
}

.spec-list__icon-box {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #f0fdfa; /* Light Cyan */
  color: #0d9488;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Utility Classes (Global reusable pieces) */
.u-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00d4ff;
  letter-spacing: 1px;
}

.u-accent { color: #00d4ff; }

.btn {
  padding: 24px 37px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
margin: 10px;
}

.btn--primary {
  background: #111;
  color: #fff;
}

.btn--primary:hover {
  background: #292929;
}
.responsive{
  display: none;
}
.responsive button{
  padding: 10px;
  height: 60px;
  background: none;
  border: none;
 fill: white;
cursor: pointer;
color: white;
}
@media (max-width:1151px) {
  .carousel-container{
    display: none;
  }
  .nav-links{
    display: none;
  }
  .intro__container{
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-main{
    display: flex;
    flex-direction: column;
  }
  .footer-links{
    flex-direction: column;
  }
  .footer-contact-grid{
    display: flex;
    flex-direction: column;
  }
  .footer-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .legal-links{
    display: flex;
    justify-content: center;
    text-align: center;
  }
 .buttons{
  display: none;
 }
 .responsive{
  display: block;
 }
}

/* Dark Navy Theme from the photo */
.mobile-menu {
    position: fixed;
    top: 70px; /* Adjust based on your nav height */
    left: 0;
    width: 100%;
    height: 0; /* Starts hidden */
    background: #0a1128; /* Deep Navy from reference */
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.mobile-menu.active {
    height: calc(100vh - 70px);
    padding-top: 40px;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    padding: 20px 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav-links a.premium-link {
    color: #4db8ff; /* Light Blue accent from the "Premium" btn */
}

.mobile-buttons {
    margin-top: 30px;
    width: 80%;
}

.mobile-buttons .btn-primary {
    width: 100%;
    background: #1a73e8; /* Blue color from your buttons */
    padding: 15px;
    border-radius: 8px;
    color: white;
    border: none;
    font-weight: bold;
}
.responsive button:active{
  background: none;
}
@media(max-width:479px){
  .hero-content h1{
    font-size: 60px;
  }
  .btn {
  padding: 17px 17px;

}
.intro__actions{

  display: flex;
  justify-content: center;
}
.btn{
  font-size: 8px;
}
.logo svg{
  width: 170px;
}
.hero-btns button{
  font-size: 10px;
}
  .hero{
height: 60vh;
margin-top: 40px;
 }
 }
@media(max-width:344px){

.hero-btns button{
  font-size: 8px;
}
 .hero-content h1{
    font-size: 40px;
  }
  .hero{
height: 40vh;
margin-top: 60px;
 }

 .asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
    gap: 25px;
    width: 100%;
    margin: 0;
    padding: 0 ;
}
.legal-links{
  font-size: 10px;
}
}

