/* ======================================
BASE STYLES
====================================== */
body {
font-family: 'Exo 2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
background: #0f172a url('../../assets/img/background/background.jpg') center center;
background-size: cover; 
margin: 0;
padding: 0;
overflow-x: hidden;
color: #fff;
}

/* =========================
   Buttons (Unique Styles)
   ========================= */
   .btnx {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  /* Primary Button - Sky Blue */
  .btnx-p {
    background-color: #4FC3F7;
    color: #fff;
  }
  .btnx-p:hover {
    background-color: #039BE5;
  }
  
  /* Secondary Button - White with Blue Border */
  .btnx-s {
    background-color: #fff;
    color: #4FC3F7;
    border: 2px solid #4FC3F7;
  }
  .btnx-s:hover {
    background-color: #4FC3F7;
    color: #fff;
  }
  

/* ======================================
NAVIGATION STYLES
====================================== */
.nav-container {
    display: flex;
    justify-content: space-between;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
  }
    
  .logo-container {
    display: flex;
    gap: 0.8rem;
  }
    
  .logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
  }
    
  .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #4FC3F7;
    font-size: 1.5rem;
  }
    
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }
    
  .desktop-nav a {
    color: #fff;
    text-decoration: none;
  }
    
  .dropdown {
    position: relative;
  }
    
  .dropdown-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
    
  .dropdown-toggle:hover {
    background-color: rgba(79, 195, 247, 0.2);
  }
    
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 12.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
  }
    
  .dropdown-menu.show {
    display: block;
  }
    
  .dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
  }
    
  .dropdown-item:hover {
    background-color: rgba(79, 195, 247, 0.3);
  }
    
  .nav-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
  }
    
  .mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
    
  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 92%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-x: hidden;
  }
    
  .mobile-nav.show {
    display: block;
  }
    
  .mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  }
    
  .mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 0.5rem 1.5rem;
  }
    
  .mobile-dropdown-menu a {
    padding: 0.7rem 0;
    color: #fff;
    text-decoration: none;
  }
    
  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
    
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    .mobile-toggle {
      display: block;
    }
  }

/* ======================================
HERO BANNER STYLES
====================================== */
.hero-banner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem 5%;
min-height: 80vh;
position: relative;
overflow: hidden;
}

.hero-content {
max-width: 37.5rem;
z-index: 2;
}

.hero-preheading {
font-family: 'Rajdhani', 'Segoe UI', sans-serif;
font-size: 2.2rem;
font-weight: 300;
margin-bottom: 0.5rem;
color: #f0f0f0;
letter-spacing: 0.125rem;
text-transform: uppercase;
}

.hero-heading {
font-family: 'Orbitron', 'Segoe UI', sans-serif;
font-size: 4.5rem;
font-weight: 900;
margin: 0.5rem 0 1.5rem 0;
color: #4FC3F7;
line-height: 1.1;
text-shadow: 0 0 0.9375rem rgba(79, 195, 247, 0.7), 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.5);
letter-spacing: 0.0625rem;
}

.hero-subheading {
font-family: 'Exo 2', 'Segoe UI', sans-serif;
font-size: 1.8rem;
font-weight: 300;
color: #e0e0e0;
margin-bottom: 2.5rem;
line-height: 1.4;
max-width: 90%;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #4FC3F7 0%, #01579B 100%);
color: white;
font-family: 'Rajdhani', sans-serif;
font-size: 1.4rem;
font-weight: 600;
text-decoration: none;
border-radius: 3.125rem;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0.25rem 0.9375rem rgba(79, 195, 247, 0.4);
letter-spacing: 0.0625rem;
text-transform: uppercase;
}

.cta-button:hover {
transform: translateY(-0.1875rem);
box-shadow: 0 0.375rem 1.25rem rgba(79, 195, 247, 0.6);
background: linear-gradient(135deg, #29B6F6 0%, #0277BD 100%);
}

.earth-container {
position: relative;
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}

.earth {
width: 37.5rem;
height: 37.5rem;
background: url('../../assets/img/images/earth.webp') center center;
background-size: cover;
border-radius: 50%;
box-shadow: 
0 0 3.75rem rgba(79, 195, 247, 0.4),
0 0 7.5rem rgba(0, 0, 0, 0.3),
inset 0 0 7.5rem rgba(0, 0, 0, 0.8);
opacity: 0;
animation: scaleIn 2.5s ease-out forwards;
position: relative;
}

.earth-rotator {
animation: rotate 60s linear infinite;
}

@keyframes scaleIn {
0% {
transform: scale(0);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes rotate {
0%   { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.earth::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
box-shadow: 
inset -1.25rem -1.25rem 4.375rem rgba(0, 0, 0, 0.8),
inset 0.625rem 0.625rem 3.125rem rgba(0, 0, 0, 0.2);
}


/* ======================================
GLOBAL STYLES
====================================== */


body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
}

.page-container {
    width: 100%;
    max-width: 75rem;
    padding: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ======================================
ABOUT SECTION STYLES
====================================== */
.about-us {
    padding: 5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
    min-width: 18.75rem;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 0.625rem var(--primary-shadow);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-shadow);
}

/* Tab Content */
.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-pane h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.tab-pane p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), #0288D1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* Image Grid */
.image-grid-container {
    flex: 1;
    min-width: 18.75rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 25rem;
    position: relative;
}

.grid-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-img:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.25rem rgba(79, 195, 247, 0.4);
}

.bitcoin-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 1.5625rem rgba(79, 195, 247, 0.6);
    z-index: 10;
    animation: rotateBitcoin 10s linear infinite;
}

@keyframes rotateBitcoin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .tab-navigation {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-button {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .tab-button.active::after {
        display: none;
    }
    
    .image-grid {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* ======================================
MISSION SECTION STYLES
====================================== */
.our-mission {
padding: 5rem 0;
width: 100%;
box-sizing: border-box;
}

.mission-heading {
font-family: 'Orbitron', sans-serif;
color: #4FC3F7;
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
text-shadow: 0 0 0.625rem rgba(79, 195, 247, 0.5);
}

.mission-intro {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-bottom: 4rem;
}

.mission-intro-left {
flex: 1;
min-width: 18.75rem;
font-family: 'Rajdhani', sans-serif;
font-size: 1.8rem;
font-weight: 600;
color: #f0f0f0;
padding: 1rem;
border-left: 0.25rem solid #4FC3F7;
box-sizing: border-box;
}

.mission-intro-right {
flex: 1;
min-width: 18.75rem;
font-size: 1.1rem;
color: #e0e0e0;
line-height: 1.6;
padding: 1rem;
box-sizing: border-box;
}

.mission-cards {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
}

.mission-card {
flex: 1;
min-width: 18.75rem;
max-width: 21.875rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 0.75rem;
padding: 2rem;
box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(173, 216, 230, 0.2);
box-sizing: border-box;
}

.mission-card:hover {
transform: translateY(-0.3125rem);
box-shadow: 0 0.75rem 1.5625rem rgba(173, 216, 230, 0.3);
}

.card-header {
font-family: 'Rajdhani', sans-serif;
font-size: 1.4rem;
font-weight: 600;
color: #f0f0f0;
margin-bottom: 1rem;
padding-right: 4.375rem;
}

.card-content {
font-size: 1.1rem;
color: #e0e0e0;
line-height: 1.6;
}

.card-img {
position: absolute;
top: -0.9375rem;
right: -0.9375rem;
width: 7.5rem;
height: auto;
object-fit: cover;
border-radius: 0.5rem;
box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.stylish-text {
font-size: 1.3rem;
line-height: 1.8;
font-family: 'Orbitron', sans-serif;
font-weight: 500;
text-shadow: 0 0 0.625rem rgba(79, 195, 247, 0.4);
padding: 1rem 0;
color: white;
}

.card-img-pop {
position: absolute;
top: -2.1875rem;
right: -3.75rem;
width: 15.625rem;
height: auto;
object-fit: contain;
z-index: 5;
transition: transform 0.3s ease, filter 0.3s ease;
}

.mission-card:hover .card-img-pop {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0.3125rem 0.9375rem rgba(173, 216, 230, 0.6));
}

/* ======================================
RESPONSIVE STYLES (GENERAL)
====================================== */
@media (max-width: 1200px) {
.earth {
width: 31.25rem;
height: 31.25rem;
}

.hero-preheading {
font-size: 1.8rem;
}

.hero-heading {
font-size: 3.8rem;
}

.hero-subheading {
font-size: 1.5rem;
}
}

@media (max-width: 992px) {
.hero-banner {
flex-direction: column;
text-align: center;
padding-top: 3rem;
}

.hero-content {
max-width: 100%;
margin-bottom: 3rem;
display: flex;
flex-direction: column;
align-items: center;
}

.earth-container {
width: 100%;
}

.earth {
width: 25rem;
height: 25rem;
}

.hero-subheading {
max-width: 100%;
}

.about-us {
flex-direction: column;
padding: 3rem 0;
}

.about-content, .image-grid-container {
width: 100%;
}

.bitcoin-center {
width: 6.25rem;
height: 6.25rem;
}

.mission-intro {
flex-direction: column;
}

.mission-cards {
flex-direction: column;
align-items: center;
}

.mission-card {
width: 100%;
}

.card-img {
width: 5rem;
}
}

@media (max-width: 576px) {
.hero-preheading {
font-size: 1.5rem;
}

.hero-heading {
font-size: 3rem;
}

.hero-subheading {
font-size: 1.3rem;
}

.earth {
width: 20rem;
height: 20rem;
}

.cta-button {
padding: 0.8rem 2rem;
font-size: 1.2rem;
}

.about-us {
padding: 3rem 0;
}

.about-content h2 {
font-size: 1.8rem;
}

.subsection h3 {
font-size: 1.3rem;
}

.subsection p {
font-size: 1rem;
}

.bitcoin-center {
width: 5rem;
height: 5rem;
}

.grid-img {
border-radius: 0.5rem;
}

.our-mission {
padding: 3rem 0;
}

.mission-heading {
font-size: 1.75rem;
}

.mission-intro-left {
font-size: 1.5rem;
}

.mission-intro-right {
font-size: 1rem;
}

.card-header {
font-size: 1.2rem;
padding-right: 0;
}

.card-content {
font-size: 1rem;
}

.stylish-text {
font-size: 1.1rem;
}

.card-img-pop {
width: 9.375rem;
right: -1.875rem;
top: -1.25rem;
}

.timeline-section {
padding: 3rem 0;
}

.timeline-section-header h1 {
font-size: 1.75rem;
}

.timeline-section-header p {
font-size: 0.875rem;
}

.timeline-card h3 {
font-size: 1rem;
}

.timeline-card p {
font-size: 0.75rem;
}
}

/* ======================================
WHY TRADE WITH US SECTION STYLES
====================================== */
body {
background-color: #0f172a;
color: #fff;
}

.why-trade-section {
position: relative;
padding: 4rem 1rem;
overflow: hidden;
}

@media (min-width: 768px) {
.why-trade-section {
padding: 6rem 1rem;
}
}



.container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 10;
box-sizing: border-box;
}

.text-center {
text-align: center;
margin-bottom: 3rem;
}

@media (min-width: 768px) {
.text-center {
margin-bottom: 4rem;
}
}

.section-title {
font-size: 2rem;
font-weight: 700;
color: #60a5fa;
margin-bottom: 1.5rem;
text-wrap: balance;
}

@media (min-width: 768px) {
.section-title {
font-size: 2.5rem;
}
}

@media (min-width: 1024px) {
.section-title {
font-size: 3rem;
}
}

.content-wrapper {
display: flex;
flex-direction: column;
gap: 2rem;
margin-bottom: 3rem;
}

@media (min-width: 1024px) {
.content-wrapper {
flex-direction: row;
gap: 3rem;
margin-bottom: 3rem;
}
}

.text-content {
width: 100%;
box-sizing: border-box;
}

@media (min-width: 1024px) {
.text-content {
width: 40%;
}
}

.description {
font-size: 1.125rem;
line-height: 1.7;
color: white;
margin-bottom: 2rem;
text-wrap: pretty;
}

@media (min-width: 768px) {
.description {
font-size: 1.25rem;
}
}

.cta-button {
display: inline-block;
background-color: #2563eb;
color: white;
padding: 0.75rem 2rem;
border-radius: 9999px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 1rem;
}

.cta-button:hover {
background-color: #1d4ed8;
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.cards-carousel {
width: 100%;
position: relative;
overflow: hidden;
}

@media (min-width: 1024px) {
.cards-carousel {
width: 60%;
}
}

.cards-track {
display: flex;
gap: 1.5rem;
width: max-content;
}

.card {
flex-shrink: 0;
width: 320px;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(96, 165, 250, 0.2);
border-radius: 0.75rem;
transition: all 0.3s;
box-sizing: border-box;
}

@media (min-width: 768px) {
.card {
width: 288px;
}
}

.card:hover {
border-color: rgba(96, 165, 250, 0.4);
transform: scale(1.05);
box-shadow: 0 20px 25px rgba(96, 165, 250, 0.2);
}

.card-content {
padding: 1.5rem;
height: 100%;
display: flex;
flex-direction: column;
}

.card-icon {
width: 2.5rem;
height: 2.5rem;
color: #60a5fa;
margin-bottom: 1rem;
}

.card-title {
font-size: 1.25rem;
font-weight: 700;
color: #60a5fa;
margin-bottom: 0.5rem;
}

.card-subtitle {
font-size: 0.875rem;
font-weight: 500;
color: white;
margin-bottom: 0.75rem;
}

.card-description {
font-size: 0.875rem;
color: white;
line-height: 1.6;
flex-grow: 1;
margin-bottom: 1rem;
}

.card-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: #60a5fa;
font-weight: 600;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.3s;
background: none;
border: none;
cursor: pointer;
}

.card-link:hover {
gap: 0.75rem;
}

.card-link i {
transition: transform 0.3s;
}

.card-link:hover i {
transform: translateX(0.25rem);
}

.mobile-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
margin-top: 3rem;
}

@media (min-width: 640px) {
.mobile-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1024px) {
.mobile-grid {
display: none;
}
}

.mobile-card {
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(96, 165, 250, 0.2);
border-radius: 0.75rem;
transition: all 0.3s;
box-sizing: border-box;
}

.mobile-card:hover {
border-color: rgba(96, 165, 250, 0.4);
transform: scale(1.03);
}

.mobile-card-content {
padding: 1.5rem;
}

.mobile-card-icon {
width: 2rem;
height: 2rem;
color: #60a5fa;
margin-bottom: 0.75rem;
}

.mobile-card-title {
font-size: 1.125rem;
font-weight: 700;
color: #60a5fa;
margin-bottom: 0.5rem;
}

.mobile-card-subtitle {
font-size: 0.875rem;
font-weight: 500;
color: white;
margin-bottom: 0.75rem;
}

.mobile-card-description {
font-size: 0.875rem;
color: white;
line-height: 1.6;
margin-bottom: 1rem;
}

.mobile-card-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: #60a5fa;
font-weight: 600;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.3s;
background: none;
border: none;
cursor: pointer;
}

.mobile-card-link:hover {
gap: 0.75rem;
}

.mobile-card-link i {
transition: transform 0.3s;
}

.mobile-card-link:hover i {
transform: translateX(0.25rem);
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-320px * 6 - 24px * 6));
}
}

.animate-scroll {
animation: scroll 30s linear infinite;
}

@media (max-width: 768px) {
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-288px * 6 - 24px * 6));
}
}
}
/* ======================================
TIMELINE SECTION STYLES
====================================== */
:root{
--timeline-line-color:#ffffffaa;
--timeline-card-bg: rgba(255, 255, 255, 0.1);
--timeline-card-border: rgba(173, 216, 230, 0.2);
--timeline-shadow: 0 0.375rem 1.125rem rgba(0,0,0,0.4);
--timeline-accent:#4FC3F7;
--timeline-gutter:7.5rem; /* distance from vertical line */
--timeline-card-width:18.75rem;
}

.timeline-section {
padding: 5rem 0;
box-sizing: border-box;
}

.timeline-wrap{
max-width:68.75rem;
margin:0 auto;
position:relative;
padding:2.5rem 1.25rem;
text-align:center;
box-sizing: border-box;
}

.timeline-section-header{
margin-bottom:3.75rem;
}
.timeline-section-header h1{
font-family: 'Orbitron', sans-serif;
font-size: 2.5rem;
color: #4FC3F7;
margin-bottom:1rem;
text-shadow: 0 0 0.625rem rgba(79, 195, 247, 0.5);
}
.timeline-section-header p{
max-width:43.75rem;
margin:0 auto;
font-size:1rem;
color:#e0e0e0;
}

.timeline-vertical-line{
position:absolute;
left:50%;
top:0;
bottom:0;
width:2px;
background:var(--timeline-line-color);
transform:translateX(-50%);
z-index:1;
}

.timeline-content{
position:relative;
display:flex;
flex-direction:column;
gap:3.75rem;
padding:1.25rem 0;
}

.timeline-item{
position:relative;
display:flex;
align-items:center;
width:100%;
min-height:5rem;
box-sizing: border-box;
}

.timeline-connector{
position:absolute;
top:50%;
height:2px;
background:var(--timeline-line-color);
z-index:1;
}

.timeline-item.left .timeline-connector{ right:50%; width:var(--timeline-gutter); }
.timeline-item.right .timeline-connector{ left:50%; width:var(--timeline-gutter); }

.timeline-card{
width:var(--timeline-card-width);
background:var(--timeline-card-bg);
border:0.0625rem solid var(--timeline-card-border);
border-radius:0.75rem;
padding:1.5rem;
box-shadow:var(--timeline-shadow);
position:relative;
z-index:2;
text-align:left;
backdrop-filter: blur(10px);
box-sizing: border-box;
}

.timeline-card h3{margin:0 0 0.5rem 0;font-family: 'Rajdhani', sans-serif;font-size:1.125rem;color:#f0f0f0;display:flex;align-items:center;gap:0.625rem}
.timeline-card p{margin:0;font-size:0.875rem;color:#e0e0e0;line-height:1.5}

.timeline-item.left .timeline-card{ margin-left:calc(50% - var(--timeline-gutter) - var(--timeline-card-width)); }
.timeline-item.right .timeline-card{ margin-left:calc(50% + var(--timeline-gutter)); }

.timeline-card h3 svg { color: var(--timeline-accent); }
.timeline-card svg{flex-shrink:0}

@media (max-width:720px){
:root{ --timeline-gutter:2.5rem; --timeline-card-width:calc(100% - 6.25rem); }
.timeline-vertical-line{ left:1.25rem; transform:none; }
.timeline-content{ gap:2.5rem; }
.timeline-item.left .timeline-connector,.timeline-item.right .timeline-connector{ left:1.25rem; width:2.5rem; }
.timeline-item.left .timeline-card,.timeline-item.right .timeline-card{ margin:0 0 0 5rem; width:var(--timeline-card-width); }
.timeline-wrap {
padding: 1.25rem 0.625rem;
}
.timeline-section-header {
margin-bottom: 2.5rem;
}
}

/* ======================================
TRADING PLATFORM SECTION STYLES
====================================== */
.trading-platform-section {
padding: 5rem 0;
position: relative;
box-sizing: border-box;
}

.platform-header {
font-family: 'Orbitron', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: #4FC3F7;
text-align: center;
margin-bottom: 1.5rem;
text-shadow: 0 0 0.625rem rgba(79, 195, 247, 0.5);
}

.platform-intro {
font-family: 'Exo 2', sans-serif;
font-size: 1.2rem;
color: #e0e0e0;
text-align: center;
max-width: 800px;
margin: 0 auto 4rem;
line-height: 1.7;
font-weight: 300;
}

.platform-subsection {
display: flex;
align-items: center;
gap: 4rem;
margin-bottom: 5rem;
flex-wrap: wrap;
box-sizing: border-box;
}

.platform-subsection.reverse {
flex-direction: row-reverse;
}

.subsection-content {
flex: 1 1 500px;
box-sizing: border-box;
}

.subsection-content h3 {
font-family: 'Rajdhani', sans-serif;
font-size: 1.8rem;
font-weight: 600;
color: #4FC3F7;
margin-bottom: 1.2rem;
letter-spacing: 0.5px;
}

.subsection-content p {
font-family: 'Exo 2', sans-serif;
font-size: 1.15rem;
color: #e0e0e0;
line-height: 1.8;
font-weight: 300;
}

.subsection-image {
flex: 1 1 450px;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}

.placeholder-img {
width: 100%;
max-width: 550px;
height: auto;
aspect-ratio: 16/9; /* Keeps proportions responsive */
object-fit: cover;
border: 3px solid white;
border-radius: 12px;
box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
}

/* Start Trading Button */
.start-trading-container {
text-align: center;
margin-top: 4rem;
}

.start-trading-btn {
display: inline-block;
padding: 1.2rem 3rem;
background: linear-gradient(135deg, #4FC3F7 0%, #01579B 100%);
color: white;
font-family: 'Rajdhani', sans-serif;
font-size: 1.3rem;
font-weight: 600;
text-decoration: none;
border-radius: 3.125rem;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0.25rem 0.9375rem rgba(79, 195, 247, 0.4);
letter-spacing: 0.0625rem;
text-transform: uppercase;
}

.start-trading-btn:hover {
transform: translateY(-0.1875rem);
box-shadow: 0 0.375rem 1.25rem rgba(79, 195, 247, 0.6);
background: linear-gradient(135deg, #29B6F6 0%, #0277BD 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
.platform-subsection,
.platform-subsection.reverse {
flex-direction: column;
text-align: center;
gap: 2.5rem;
}

.subsection-image {
order: -1;
flex: 1 1 auto;
}

.placeholder-img {
max-width: 100%;
aspect-ratio: 16/10;
}
}

@media (max-width: 768px) {
.platform-header {
font-size: 2.2rem;
}

.platform-intro {
font-size: 1.1rem;
padding: 0 1rem;
margin-bottom: 3rem;
}

.subsection-content h3 {
font-size: 1.6rem;
}

.subsection-content p {
font-size: 1.05rem;
}

.placeholder-img {
max-width: 100%;
aspect-ratio: 4/3;
}
}

@media (max-width: 576px) {
.platform-header {
font-size: 1.9rem;
}

.platform-intro {
font-size: 1rem;
}

.subsection-content h3 {
font-size: 1.4rem;
}

.subsection-content p {
font-size: 0.95rem;
}

.placeholder-img {
max-width: 100%;
aspect-ratio: 1/1; /* Square-ish for very small screens */
}

.start-trading-btn {
padding: 1rem 2.2rem;
font-size: 1.1rem;
}

.platform-subsection {
margin-bottom: 4rem;
gap: 2rem;
}
}


/* ======================================
TESTIMONIALS SECTION STYLES
====================================== */
.testimonials-section {
padding: 3rem 1rem;
position: relative;
overflow: hidden;
box-sizing: border-box;
}

.testimonials-container {
max-width: 120%; 
margin: 0 auto;
position: relative;
box-sizing: border-box;
}

.testimonials-heading {
font-family: 'Orbitron', sans-serif;
font-size: 1.8rem;
font-weight: 700;
color: #4FC3F7;
text-align: center;
margin-bottom: 0.8rem;
text-shadow: 0 0 0.625rem rgba(79, 195, 247, 0.5);
}

.testimonials-subheading {
font-family: 'Exo 2', sans-serif;
font-size: 1rem;
color: #e0e0e0;
text-align: center;
max-width: 100%;
margin: 0 auto 2.5rem;
line-height: 1.6;
font-weight: 300;
padding: 0 1rem;
}

.testimonials-carousel-container {
position: relative;
overflow: hidden;
padding: 0.5rem 0;
margin: 0 auto;
}

.testimonials-track {
display: flex;
gap: 2rem; 
transition: transform 0.5s ease;
width: 100%;
}

.testimonial-card {
flex: 0 0 100%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 0.75rem;
box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
border: 1px solid rgba(173, 216, 230, 0.2);
overflow: hidden;
min-height: 28rem;
box-sizing: border-box;
}

.testimonial-card:hover {
transform: translateY(-0.3125rem);
box-shadow: 0 0.75rem 1.5625rem rgba(173, 216, 230, 0.3);
}

.testimonial-image-container {
flex: 0 0 45%;
overflow: hidden;
}

.testimonial-image {
width: 100%;
height: 100%;
object-fit: cover;
border-bottom: 3px solid #4FC3F7;
}

.testimonial-content {
flex: 0 0 55%;
padding: 1.5rem;
display: flex;
flex-direction: column;
justify-content: center;
}

.testimonial-name {
font-family: 'Rajdhani', sans-serif;
font-size: 1.4rem;
font-weight: 600;
color: #f0f0f0;
margin-bottom: 0.5rem;
}

.testimonial-title {
font-family: 'Exo 2', sans-serif;
font-size: 1rem;
color: #4FC3F7;
margin-bottom: 1.2rem;
font-weight: 500;
}

.testimonial-text {
font-family: 'Exo 2', sans-serif;
font-size: 0.95rem;
line-height: 1.6;
color: #e0e0e0;
font-style: italic;
margin-bottom: 1.2rem;
padding-right: 10%;     
}

.testimonial-rating {
display: flex;
gap: 0.3rem;
margin-top: auto;
}

.testimonial-rating i {
color: #FFD700;
font-size: 1rem;
}

.carousel-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 1.2rem;
margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
background: rgba(79, 195, 247, 0.2);
border: 1px solid #4FC3F7;
color: #4FC3F7;
width: 2.8rem;
height: 2.8rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
background: rgba(79, 195, 247, 0.4);
transform: translateY(-0.125rem);
}

.carousel-dots {
display: flex;
gap: 0.8rem;
}

.carousel-dot {
width: 0.8rem;
height: 0.8rem;
border-radius: 50%;
background: rgba(79, 195, 247, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.carousel-dot.active {
background: #4FC3F7;
transform: scale(1.2);
}

/* Tablet Styles */
@media (min-width: 768px) {
.testimonials-section {
padding: 4rem 2rem;
}

.testimonials-heading {
font-size: 2.2rem;
}

.testimonials-subheading {
font-size: 1.1rem;
max-width: 80%;
margin-bottom: 3rem;
}

.testimonial-card {
flex: 0 0 calc(50% - 1rem); 
min-height: 26rem;
}

.testimonials-track {
gap: 2rem; 
}

.testimonial-content {
padding: 1.8rem;
}

.testimonial-name {
font-size: 1.5rem;
}

.testimonial-text {
font-size: 1rem;
}
}

/* Desktop Styles */
@media (min-width: 1024px) {
.testimonials-section {
padding: 5rem 2rem;
}

.testimonials-heading {
font-size: 2.5rem;
}

.testimonials-subheading {
font-size: 1.2rem;
max-width: 800px;
margin-bottom: 4rem;
}

.testimonial-card {
flex: 0 0 calc(50% - 1rem); 
flex-direction: row;
min-height: 28rem;
}

.testimonial-image-container {
flex: 0 0 40%;
border-bottom: none;
border-right: 3px solid #4FC3F7;
}

.testimonial-content {
flex: 0 0 60%;
padding: 2rem;
}

.testimonial-name {
font-size: 1.6rem;
}

.testimonial-title {
font-size: 1.1rem;
}

.testimonial-text {
font-size: 1rem;
line-height: 1.7;
padding-bottom: 1rem;
}

.testimonial-rating i {
font-size: 1.1rem;
}

.carousel-prev,
.carousel-next {
width: 3rem;
height: 3rem;
}
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
.testimonials-container {
padding: 0;
}

.testimonial-card {
flex: 0 0 calc(45% - 1rem); /* Even wider cards on large desktops */
min-height: 28rem;
}

.testimonial-text {
font-size: 1.05rem;
}
}

/* Extra Large Desktop Styles */
@media (min-width: 1440px) {
.testimonial-card {
flex: 0 0 calc(40% - 1rem); /* Maximum width for very large screens */
min-height: 28rem;
}

.testimonial-content {
padding: 2.5rem;
}

.testimonial-text {
font-size: 1.1rem;
line-height: 1.8;
}

.testimonial-image-container {
flex: 0 0 35%; /* Slightly smaller image area */
}

.testimonial-content {
flex: 0 0 65%; /* Larger content area */
}
}

/* Single card on very wide screens */
@media (min-width: 1800px) {
.testimonial-card {
flex: 0 0 calc(35% - 1rem); /* Single very wide card */
}
}

@media (max-width: 768px) {
.nav-container {
justify-content: flex-start;
}

.logo-container {
margin: 0;
}

.mobile-toggle {
position: absolute;
right: 5%;
}
}

/* ======================================
FAQ SECTION STYLES
====================================== */

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;

}

.faq-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--primary-shadow);
    letter-spacing: 1px;
    color: #4FC3F7;
}

.faq-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.2);
}

.faq-question {
    padding: 20px 25px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-secondary);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* .cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color), #0288D1);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
} */

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ======================================
FINAL CTA SECTION STYLES
====================================== */
        
.final-cta-section {
    padding: 40px 0;
    width: 90%;
    /* background: transparent; */
}

.final-cta {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 12px;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite linear;
    pointer-events: none;
}

.headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #4FC3F7;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

.support-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    background: rgba(79, 195, 247, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: #4FC3F7;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.closing-line {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4FC3F7, #0288D1);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    margin: 0 auto;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Center the button */
.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .final-cta {
        padding: 50px 30px;
    }
    
    .headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 30px 0;
    }
    
    .final-cta {
        padding: 40px 25px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .support-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 18px 20px;
    }
    
    .feature-icon {
        font-size: 1.6rem;
        margin-right: 12px;
        width: 35px;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .closing-line {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
    
    .cta-button {
        padding: 14px 26px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 15px;
    }
    
    .final-cta {
        padding: 30px 20px;
        border-radius: 10px;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .support-text {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .closing-line {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button i {
        margin-right: 8px;
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .headline {
        font-size: 1.6rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .closing-line {
        font-size: 1rem;
    }
}
/* ======================================
FOOTER STYLES
====================================== */
footer {
background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
padding: 4rem 5%;
text-align: center;
border-top: 1px solid rgba(79, 195, 247, 0.3);
box-shadow: 0 -4px 15px rgba(79, 195, 247, 0.1);
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 3rem;
max-width: 1200px;
margin: 0 auto 2.5rem;
flex-wrap: wrap;
}

.footer-column {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
min-width: 200px;
}

.footer-column h4 {
font-family: 'Rajdhani', sans-serif;
font-size: 1.2rem;
color: #4FC3F7;
margin-bottom: 1rem;
text-transform: uppercase;
}

.footer-logo-container {
display: flex;
align-items: center;
gap: 1rem;
justify-content: flex-start;
}

.footer-logo {
width: 3rem;
height: 3rem;
border-radius: 50%;
box-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.footer-logo-text {
font-family: 'Orbitron', sans-serif;
font-weight: 700;
color: #4FC3F7;
font-size: 1.8rem;
text-shadow: 0 0 5px rgba(79, 195, 247, 0.4);
}

.footer-links {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.footer-links a {
color: #e0e0e0;
text-decoration: none;
transition: color 0.3s, transform 0.3s;
font-size: 1rem;
padding: 0.3rem 0.8rem;
border-radius: 4px;
}

.footer-links a:hover {
color: #4FC3F7;
transform: translateX(5px);
background: rgba(79, 195, 247, 0.1);
}

.footer-social {
display: flex;
gap: 1.5rem;
justify-content: flex-start;
flex-wrap: wrap;
}

.footer-social a {
color: #e0e0e0;
font-size: 1.5rem;
transition: color 0.3s, transform 0.3s;
padding: 0.5rem;
border-radius: 50%;
}

.footer-social a:hover {
color: #4FC3F7;
transform: scale(1.2);
background: rgba(79, 195, 247, 0.1);
}

.footer-copyright {
font-size: 0.95rem;
color: #b0b0b0;
padding-top: 2rem;
border-top: 1px solid rgba(79, 195, 247, 0.2);
margin-top: 2rem;
}

@media (max-width: 768px) {
footer {
padding: 3rem 5%;
}

.footer-container {
flex-direction: column;
align-items: flex-start;
gap: 2rem;
}

.footer-column {
width: 100%;
align-items: flex-start;
}

.footer-logo-text {
font-size: 1.5rem;
}

.footer-social {
justify-content: flex-start;
}

.footer-social a {
font-size: 1.5rem;
}
}
