html {
    /* 
     * WCAG 2.1 AA Standard: 16px minimum base font
     * NEVER reduce below 16px on any breakpoint for accessibility
     */
    font-size: 16px;
    overflow-x: hidden;
}

body {
    max-width: 1920px !important;
    margin: auto !important;
    overflow-x: hidden;
    position: relative;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ============================================
   INDUSTRY-STANDARD TYPOGRAPHY SYSTEM
   ============================================
   
   Based on:
   - WCAG 2.1 AA Accessibility Guidelines
   - Material Design 3 Type Scale
   - Apple Human Interface Guidelines
   - Perfect Fourth (1.333) Modular Scale
   
   Type Scale (in px at 16px base):
   - Display: 57px, 45px, 36px
   - Headline: 32px, 28px, 24px  
   - Title: 22px, 16px, 14px
   - Body: 16px (large), 14px (medium), 12px (small)
   - Label: 14px, 12px, 11px
   
   ============================================ */

/* All paragraph tags - Optimal body text */
p {
    font-family: 'SpotifyMix-Regular', sans-serif;
    font-size: 1.125rem;       /* 18px - comfortable reading on desktop */
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.87);
    letter-spacing: 0.01em;
}

/* All header tags - Helvetica-Font with consistent styling */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica-Font', sans-serif;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.87);
    letter-spacing: 0.02em;
}

/* 
 * Desktop Header Sizes (Perfect Fourth Scale 1.333)
 * Designed for screens 1200px+
 */
h1 { 
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
}
h2 { 
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
h3 { 
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: 0.015em;
}
h4 { 
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
h5 { 
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
}
h6 { 
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* 
 * Tablet Typography (768px - 992px)
 * Slightly reduced but still highly readable
 */
@media (max-width: 992px) {
    p {
        font-size: 1.0625rem;  /* 17px for tablet */
        line-height: 1.6;
    }
    h1 { font-size: 2.5rem; }  /* 40px */
    h2 { font-size: 2rem; }    /* 32px */
    h3 { font-size: 1.5rem; }  /* 24px */
    h4 { font-size: 1.375rem; }/* 22px */
    h5 { font-size: 1.25rem; } /* 20px */
    h6 { font-size: 1.125rem; }/* 18px */
}

/* 
 * Mobile Typography (480px - 768px)
 * Optimized for handheld devices
 * CRITICAL: Base stays 16px for accessibility
 */
@media (max-width: 768px) {
    p {
        font-size: 1rem;       /* 16px - NEVER go below this */
        line-height: 1.55;     /* Slightly tighter but still readable */
    }
    h1 { 
        font-size: 2rem;       /* 32px - Large but fits mobile */
        line-height: 1.2;
    }
    h2 { 
        font-size: 1.75rem;    /* 28px */
        line-height: 1.25;
    }
    h3 { 
        font-size: 1.5rem;     /* 24px */
        line-height: 1.3;
    }
    h4 { 
        font-size: 1.25rem;    /* 20px */
        line-height: 1.35;
    }
    h5 { 
        font-size: 1.125rem;   /* 18px */
        line-height: 1.4;
    }
    h6 { 
        font-size: 1rem;       /* 16px - minimum for headings */
        line-height: 1.45;
        font-weight: 600;
    }
}

/* 
 * Small Mobile Typography (< 480px)
 * Compact screens - prioritize readability
 */
@media (max-width: 480px) {
    p {
        font-size: 1rem;       /* 16px - maintain accessibility */
        line-height: 1.5;
    }
    h1 { 
        font-size: 1.75rem;    /* 28px */
        line-height: 1.2;
    }
    h2 { 
        font-size: 1.5rem;     /* 24px */
        line-height: 1.25;
    }
    h3 { 
        font-size: 1.375rem;   /* 22px */
        line-height: 1.3;
    }
    h4 { 
        font-size: 1.25rem;    /* 20px */
        line-height: 1.35;
    }
    h5 { 
        font-size: 1.125rem;   /* 18px */
        line-height: 1.4;
    }
    h6 { 
        font-size: 1rem;       /* 16px */
        line-height: 1.45;
    }
}

/* ============================================
   END TYPOGRAPHY SYSTEM
   ============================================ */

@font-face {
    font-family: 'Helvetica-Font';
    src: url('fonts/helvetica-compressed-5871d14b6903a.otf');
}

@font-face {
    font-family: 'SpotifyMix-Regular';
    src: url('fonts/SpotifyMix-Regular.ttf');
}

@font-face {
    font-family: 'SpotifyMix-Bold';
    src: url('fonts/SpotifyMix-Bold.ttf');
}

@font-face {
    font-family: 'SpotifyMix-Black';
    src: url('fonts/SpotifyMix-Black.ttf');
}

@font-face {
    font-family: 'SpotifyMix-Light';
    src: url('../fonts/SpotifyMix-Light.ttf');
}

.spotify_light {
    font-family: 'SpotifyMix-Light';
}

.spotify_regular {
    font-family: 'SpotifyMix-Regular';
}

.spotify_bold {
    font-family: 'SpotifyMix-Bold' !important;
}

.helvetica_font {
    font-family: 'Helvetica-Font';
    letter-spacing: 0.02em;
}

.spotify_black{
    font-family: 'SpotifyMix-Black' !important;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

/* ============================================
   SIZE UTILITY CLASSES
   ============================================
   
   Industry-Standard Type Scale (Material Design 3 / Apple HIG):
   
   BODY TEXT:
   - .text-xs    : 12px (0.75rem) - Captions, labels, fine print
   - .text-sm    : 14px (0.875rem) - Secondary text, metadata
   - .text-base  : 16px (1rem) - Body text (WCAG minimum)
   - .text-lg    : 18px (1.125rem) - Lead paragraphs
   - .text-xl    : 20px (1.25rem) - Emphasized body
   
   HEADLINE TEXT:
   - .text-2xl   : 24px (1.5rem) - Small headlines
   - .text-3xl   : 28px (1.75rem) - Section headers
   - .text-4xl   : 32px (2rem) - Page headers
   - .text-5xl   : 40px (2.5rem) - Hero subtext
   - .text-6xl   : 48px (3rem) - Display text
   - .text-7xl   : 56px (3.5rem) - Large display
   - .text-8xl   : 64px (4rem) - Hero headlines
   - .text-9xl   : 72px (4.5rem) - Jumbo text
   
   ============================================ */

/* Body Text Sizes */
.very_small,
.text-xs {
    font-size: 0.75rem !important;  /* 12px - Minimum for any text */
    line-height: 1.5;
}

.smallest,
.text-sm {
    font-size: 0.875rem !important; /* 14px - Secondary text */
    line-height: 1.5;
}

.small,
.text-base {
    font-size: 1.125rem !important; /* 18px - matches paragraph size */
    line-height: 1.6;
}

.small_2,
.text-lg {
    font-size: 1.125rem !important; /* 18px - Lead paragraphs */
    line-height: 1.6;
}

.text-xl {
    font-size: 1.25rem !important;  /* 20px - Emphasized */
    line-height: 1.5;
}

/* Headline Text Sizes */
.medium_small,
.text-2xl {
    font-size: 1.5rem !important;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.text-3xl {
    font-size: 1.75rem !important;
    line-height: 1.35;
    letter-spacing: 0.015em;
}

.medium,
.text-4xl {
    font-size: 2rem !important;
    line-height: 1.3;
    letter-spacing: 0.015em;
}

.medium_ls,
.text-5xl {
    font-size: 2.5rem !important;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.big_less_ls,
.text-6xl {
    font-size: 3rem !important;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.big_ls,
.text-7xl {
    font-size: 3.5rem !important;
    line-height: 1.15;
    letter-spacing: 0.025em;
}

.big,
.text-8xl {
    font-size: 4rem !important;
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.very_big,
.text-9xl {
    font-size: 4.5rem !important;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

/* Display/Hero Sizes */
.very_big2 {
    font-size: 5rem !important;
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.very_big_ls {
    font-size: 5.5rem !important;
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.95) !important;
}

/* Height Utilities */
.vh-100 {
    height: 100vh;
    overflow: hidden;
}

.vh-75 {
    height: 75vh;
}

/* ============================================
   RESPONSIVE SIZE UTILITIES - TABLET (992px)
   ============================================ */
@media (max-width: 992px) {
    .very_big_ls { font-size: 4.5rem !important; letter-spacing: 0.04em; }
    .very_big2 { font-size: 4rem !important; letter-spacing: 0.035em; }
    .very_big, .text-9xl { font-size: 3.5rem !important; letter-spacing: 0.03em; }
    .big, .text-8xl { font-size: 3rem !important; letter-spacing: 0.03em; }
    .big_ls, .text-7xl { font-size: 2.75rem !important; letter-spacing: 0.025em; }
    .big_less_ls, .text-6xl { font-size: 2.5rem !important; letter-spacing: 0.025em; }
    .medium_ls, .text-5xl { font-size: 2.25rem !important; letter-spacing: 0.02em; }
    .medium, .text-4xl { font-size: 1.75rem !important; letter-spacing: 0.02em; }
    .medium_small, .text-2xl { font-size: 1.375rem !important; letter-spacing: 0.015em; }
}

/* ============================================
   RESPONSIVE SIZE UTILITIES - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    .very_big_ls { font-size: 3.5rem !important; letter-spacing: 0.05em; }
    .very_big2 { font-size: 3rem !important; letter-spacing: 0.05em; }
    .very_big, .text-9xl { font-size: 2.75rem !important; letter-spacing: 0.04em; }
    .big, .text-8xl { font-size: 2.5rem !important; letter-spacing: 0.04em; }
    .big_ls, .text-7xl { font-size: 2.25rem !important; letter-spacing: 0.04em; }
    .big_less_ls, .text-6xl { font-size: 2rem !important; letter-spacing: 0.03em; }
    .medium_ls, .text-5xl { font-size: 1.75rem !important; letter-spacing: 0.03em; }
    .medium, .text-4xl { font-size: 1.5rem !important; letter-spacing: 0.025em; }
    .medium_small, .text-2xl { font-size: 1.25rem !important; letter-spacing: 0.02em; }
    
    /* Body sizes - mobile optimized */
    .small_2, .text-lg { font-size: 1.0625rem !important; }  /* 17px */
    .small, .text-base { font-size: 1rem !important; }       /* 16px on mobile */
    
    /* Layout utilities */
    .vw-100 {
        width: 100vw;
        object-fit: cover;
    }
    
    .vh-sm-50 {
        height: 50vh !important;
    }
    
    .spotify_black_sm {
        font-family: 'SpotifyMix-Black' !important;
    }
    
    .image-panel {
        height: 15rem !important;
    }
}

/* ============================================
   RESPONSIVE SIZE UTILITIES - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .very_big_ls { font-size: 2.5rem !important; letter-spacing: 0.05em; }
    .very_big2 { font-size: 2.25rem !important; letter-spacing: 0.05em; }
    .very_big, .text-9xl { font-size: 2rem !important; letter-spacing: 0.04em; }
    .big, .text-8xl { font-size: 1.875rem !important; letter-spacing: 0.04em; }
    .big_ls, .text-7xl { font-size: 1.75rem !important; letter-spacing: 0.04em; }
    .big_less_ls, .text-6xl { font-size: 1.625rem !important; letter-spacing: 0.03em; }
    .medium_ls, .text-5xl { font-size: 1.5rem !important; letter-spacing: 0.03em; }
    .medium, .text-4xl { font-size: 1.375rem !important; letter-spacing: 0.03em; }
    .medium_small, .text-2xl { font-size: 1.25rem !important; letter-spacing: 0.02em; }
    
    /* Body text stays at minimum readable size */
    .small_2, .text-lg { font-size: 1rem !important; }
    .small, .text-base { font-size: 1rem !important; }
}

#hero_section img{
    object-fit: cover;
}

#hero_section {
    position: relative;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

/* Hero text inherits from base h1, but with specific color */
.text-container h1 {
    color: white;
}

#changing-text {
    display: inline-block;
    --animate-duration: 0.8s;
}

.reveal-on-scroll {
    visibility: hidden;
}

.header_black {
    color: rgba(0, 0, 0, 0.87) !important;
}

.usd_image_right {
    border-radius: 20px 0 0 20px;
}

.usd_image_left {
    border-radius: 0 20px 20px 0;
}

#white_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); /* Adjust the opacity as needed */
    z-index: 1;
}

#overlay_content {
    z-index: 2;
}

.number-anim {
    animation: fade-out-in 300ms ease-in-out;
}

@keyframes fade-out-in {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.carousel-section {
    padding: 60px 0;
}

.carousel-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    color: #343a40;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* New wrapper to serve as the positioning context for the controls */
.custom-carousel-wrapper {
    position: relative;
}

.custom-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

/* The track that holds all the slides */
.custom-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    /* CRITICAL: Aligns all items to the top, creating space at the bottom for the shorter active item */
    align-items: flex-start;
    min-height: 450px; /* Define a height for the track */
}

/* Styling for each individual slide item */
.custom-carousel-item {
    flex: 0 0 40%;
    height: 450px; /* Default height (100%) */
    transition: height 0.5s ease-in-out;
    overflow: hidden;
}

/* The active slide is SHORTER to create the gap */
.custom-carousel-item.active {
    height: 360px; /* 80% of 450px */
}

.custom-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CRITICAL: Controls are now positioned absolutely */
.carousel-controls {
    position: absolute;
    bottom: 20px; /* Position it from the bottom of the wrapper */
    left: 50%;
    transform: translateX(-50%);
    width: 40%; /* Match the width of the active item */
    z-index: 20; /* Ensure it's on top */
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Optional: subtle background for better visibility */
    backdrop-filter: blur(5px);
    padding: 8px;
    border-radius: 50px;
}

.carousel-nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;         /* 24px - clear touch target */
    color: #555;
    cursor: pointer;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.carousel-nav-btn:hover {
    color: #000;
}

.carousel-nav-btn:disabled {
    color: #bbb;
    cursor: default;
}

.carousel-counter {
    font-size: 1rem;           /* 16px - readable counter */
    color: #333;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-carousel-item, .carousel-controls {
        flex-basis: 60%;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .custom-carousel-item, .carousel-controls {
        flex-basis: 85%;
        width: 85%;
    }
    .custom-carousel-track, .custom-carousel-item {
        min-height: 350px;
    }
    .custom-carousel-item.active {
        height: 280px; /* 80% of 350px */
    }
}

.image-row {
    display: flex;
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-panel {
    height: 20rem;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative; 
    flex: 1;
    transition: flex 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- UPDATED: Gradient direction is now 'to bottom' --- */
.image-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /*linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 50%);*/
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-panel:hover::before {
    opacity: 1;
}

/* --- UPDATED: Positioning and text-alignment --- */
.panel-content {
    position: absolute;
    top: 20px;   
    left: 30px;    
    text-align: left; 
    color: white;
    opacity: 0;
    transition: opacity 0.5s 0.2s ease-in-out;
}

.image-panel:hover .panel-content {
    opacity: 1;
}

.panel-content h3 {
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.panel-content ul {
    padding: 0;
    margin: 0;
    margin-left: 1rem;
    list-style: none;
}

.panel-content svg{
    width: 1rem;
}

.panel-content li {
    padding-bottom: 5px;
    font-weight: 300;
}

.image-row.hover-left .image-panel.left {
    flex: 2.33; 
}
.image-row.hover-left .image-panel.right {
    flex: 1;
}

.image-row.hover-right .image-panel.right {
    flex: 2.33;
}
.image-row.hover-right .image-panel.left {
    flex: 1;
}

.logo-scroller {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-scroller .logo-list {
  display: flex;
  animation: scroll 10s linear infinite;
}

.logo-scroller .logo-list img {
  height: 80px;
  margin: 0 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Fix for hero_section overflow */
#hero_section {
    width: 100% !important;
}

/* --- AKASHDEEP PREMIUM FOOTER --- */
.akash-footer {
    background-color: #0E1E42; /* Your Brand Blue */
    color: #ffffff;
    font-family: 'SpotifyMix-Regular', sans-serif;
}

/* Override base p and h styles for dark footer background */
.akash-footer p,
.akash-footer h1,
.akash-footer h2,
.akash-footer h3,
.akash-footer h4,
.akash-footer h5,
.akash-footer h6 {
    color: rgba(255, 255, 255, 0.85);
}

.footer-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Brand Title & Header Section */
.footer-brand-title {
    font-family: 'SpotifyMix-Black', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);  /* 24px - 32px responsive */
    text-transform: uppercase;
    line-height: 1.15;
}

.footer-brand-sub {
    font-size: 1rem;           /* 16px - readable on all devices */
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    line-height: 1.5;
}

.footer-contact-main {
    font-family: 'SpotifyMix-Bold', sans-serif;
    font-size: 1.125rem;       /* 18px - clear contact info */
    line-height: 1.4;
}

.footer-contact-sub {
    font-size: 0.9375rem;      /* 15px - slightly smaller but readable */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Headings & Body Text */
.footer-heading {
    font-family: 'SpotifyMix-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.4;
}

.footer-text {
    font-size: 0.9375rem;      /* 15px - comfortable reading */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

/* Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;      /* 15px - link text */
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-links a:hover, 
.footer-links a.active {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: inline-flex;
}

.social-icon-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1); /* Makes icons white */
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Bottom Strip */
.footer-copy, .footer-credits {
    font-size: 0.875rem;       /* 14px - minimum readable for legal text */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'SpotifyMix-Bold', sans-serif;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .akash-footer {
        text-align: left;
    }
}
