:root {
    --primary: #e6b800;
    --primary-dark: #cfb53b;
    --background: #0a0e17;
    --card-bg: #131a2d;
    --text-light: #e0e0e0;
}

:root {
    --primary: #FFD700;
    --secondary: #CFB53B;
    --dark-bg: #0a0e17;
    --card-bg: #131a2d;
    --text-light: #e0e0e0;
    --text-lighter: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #e6b800;
    background: rgb(12, 11, 11);
}
.nav-tabs {
    display: flex;
    justify-content: space-between;
    background: #1e1e1e;
    padding: 10px 20px;
}
.nav-left {
    display: flex;
}

.nav-tabs a {
    color: #e6b800;
    text-decoration: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 14px;
}
.nav-tabs a.active, .nav-tabs a:hover {
    background: #333;
}
.tab-content {
    padding: 20px;
    display: none;
}
.tab-content.active {
    display: block;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 15px 30px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(230, 184, 0, 0.2);
    transition: all 0.3s ease-in-out;
    background: #0a0e17;
    position: relative;
    z-index: 1000;
    
}
.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #e6b800;
    text-shadow: 0 0 10px rgba(230, 184, 0, 0.8);
    font-family: 'Orbitron', sans-serif;
}
.nav-links, .auth-buttons {
    display: flex;
    gap: 20px;
}
.nav-links a, .auth-buttons button {
    color: #e6b800;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s, text-shadow 0.3s;
}

#client-btn{
    color: #000;
}
.nav-links a:hover {
    color: #fff;
}
.auth-buttons button {
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}




.nav-item {
position: relative;
}

.nav-link {
color: #e6b800;
text-decoration: none;
font-size: 16px;
padding: 10px 15px;
transition: all 0.3s;
display: block;
font-weight: 500;
letter-spacing: 0.5px;
border-radius: 4px;
}

.nav-link:hover {
color: #fff;
background: rgba(230, 184, 0, 0.15);
text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: #131a2d;
border: 1px solid rgba(230, 184, 0, 0.2);
border-radius: 0 0 8px 8px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
width: 340px;
opacity: 0;
visibility: hidden;
transform: translateY(15px);
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
z-index: 1001;
}

.nav-item:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(5px);
}

.dropdown-header {
color: #e6b800;
padding: 12px 15px;
font-size: 14px;
border-bottom: 1px solid rgba(230, 184, 0, 0.2);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
margin-bottom: 5px;
}

.dropdown-item {
display: block;
padding: 10px 15px;
color: #e0e0e0;
text-decoration: none;
transition: all 0.3s;
}

.dropdown-item:hover {
background: rgba(230, 184, 0, 0.1);
color: #e6b800;
padding-left: 25px;
}



/* Sidebar Dropdown Styles */
.sidebar-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
z-index: 1999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.sidebar-overlay.active {
opacity: 1;
visibility: visible;
}


.sidebar {
position: fixed;
right: -100%;
top: 0;
width: 280px;
height: 100%;
background: #0a0e17;
padding: 20px;
display: flex;
flex-direction: column;
gap: 10px;
transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
z-index: 2000;
border-left: 1px solid rgba(230, 184, 0, 0.2);
}

.sidebar.active {
right: 0;
}

.sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid rgba(230, 184, 0, 0.15);
}

.sidebar-header .logo {
font-size: 22px;
color: #e6b800;
text-shadow: 0 0 10px rgba(230, 184, 0, 0.6);
}

.close-sidebar {
font-size: 22px;
background: none;
border: none;
color: #e6b800;
cursor: pointer;
transition: transform 0.3s;
padding: 5px;
}

.close-sidebar:hover {
transform: rotate(90deg);
}

.sidebar-content {
flex: 1;
overflow-y: auto;
padding: 15px 0;
scrollbar-width: thin;
scrollbar-color: #e6b800 #0a0e17;
}

.sidebar-content::-webkit-scrollbar {
width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
background: #0a0e17;
}

.sidebar-content::-webkit-scrollbar-thumb {
background-color: #e6b800;
border-radius: 3px;
}

.sidebar-item {
position: relative;
border-bottom: 1px solid rgba(230, 184, 0, 0.1);
}

.sidebar-link {
color: #e6b800;
padding: 16px 25px;
font-size: 16px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}

.sidebar-link:hover {
background: rgba(230, 184, 0, 0.08);
}

.dropdown-arrow {
transition: transform 0.3s;
font-size: 12px;
}

.sidebar-dropdown {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
padding-left: 15px;
background: rgba(0, 0, 0, 0.15);
}

.sidebar-dropdown.active {
max-height: 500px;
}

.sidebar-dropdown .dropdown-item {
padding: 12px 25px 12px 35px;
display: block;
color: #e0e0e0;
text-decoration: none;
transition: all 0.3s;
}

.sidebar-dropdown .dropdown-item:hover {
color: #e6b800;
background: rgba(230, 184, 0, 0.1);
}

.sidebar-dropdown a {
display: block;
color: #e0e0e0;
padding: 12px 25px 12px 35px;
text-decoration: none;
transition: color 0.3s;
}

.sidebar-dropdown a:hover {
color: #e6b800;
background: rgba(230, 184, 0, 0.1);
}

.sidebar-auth {
padding: 20px;
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 10px;
}

.sidebar-auth button {
width: 100%;
padding: 12px;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}

/* Auth Buttons */
.auth-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.login-btn, .client-btn, .sidebar-auth .login-btn, .sidebar-auth .client-btn {
padding: 10px 20px;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}

.login-btn, .sidebar-auth .login-btn {
background: transparent;
color: #e6b800;
border: 2px solid #e6b800;
box-shadow: 0 0 15px rgba(230, 184, 0, 0.4);
}

.login-btn:hover, .sidebar-auth .login-btn:hover {
background: #e6b800;
color: #121212;
box-shadow: 0 0 25px rgba(230, 184, 0, 0.8);
}

.client-btn, .sidebar-auth .client-btn {
background: #e6b800;
color: #121212;
font-weight: 600;
border: none;
box-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
}

.client-btn:hover, .sidebar-auth .client-btn:hover {
background: linear-gradient(90deg, #fff, #ffd700);
box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
}

/* Mobile Toggle Styles */
.menu-toggle {
display: none;
font-size: 24px;
color: #e6b800;
cursor: pointer;
background: none;
border: none;
padding: 5px;
transition: transform 0.3s;
}

.close-sidebar {
align-self: flex-end;
font-size: 20px;
background: none;
border: none;
color: #e6b800;
cursor: pointer;
margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.nav-links, .auth-buttons {
display: none;
}

.menu-toggle {
display: block;
}

.navbar {
padding: 15px 20px;
}
}
















/* CSS FOR BUSINESS NAV */
.menu-toggle2 {
    display: none;
    font-size: 24px;
    color: #e6b800;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: transform 0.3s;
}
.sidebar2 {
    position: fixed;
    right: -100%;
    top: 0;
    width: 280;
    height: 100%;
    background: #0a0e17;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 2000;
    border-left: 1px solid rgba(230, 184, 0, 0.2);
}

.sidebar2.active {
    right: 0;
    }
    
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(230, 184, 0, 0.15);
    }
    
    .sidebar-header .logo {
    font-size: 22px;
    color: #e6b800;
    text-shadow: 0 0 10px rgba(230, 184, 0, 0.6);
    }
    
    .close-sidebar2 {
    font-size: 22px;
    background: none;
    border: none;
    color: #e6b800;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
    }
    
    .close-sidebar2:hover {
    transform: rotate(90deg);
    }
    
    
    
    

/* Enhanced Hero Styles */
.hero {
    background: radial-gradient(ellipse at 80% 50%, #0a0e17 0%, #070a12 100%);
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hero-badge {
    display: inline-block;
    background: rgba(230, 184, 0, 0.15);
    color: #e6b800;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(230, 184, 0, 0.3);
    backdrop-filter: blur(5px);
  }
  
  .hero h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .highlight {
    color: #e6b800;
    position: relative;
    display: inline-block;
  }
  
  .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
    transform: skew(-15deg);
  }
  
  .subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 80%;
  }
  
  .cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .primary-cta {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 0.7rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: 0 5px 25px rgba(230, 184, 0, 0.4);
  }
  
  .primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 184, 0, 0.6);
  }
  
  .cta-icon {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s;
  }
  
  .primary-cta:hover .cta-icon {
    transform: translateX(5px);
  }
  
  .secondary-cta {
    color: #e6b800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .secondary-cta:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .hero-visual {
    position: relative;
    perspective: 1500px;
  }
  
  .hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 1.2rem;
    transform: rotateY(-10deg) rotateX(5deg);
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.3); */
    /* border: 1px solid rgba(230, 184, 0, 0.2); */
    position: relative;
    z-index: 2;
    transition: transform 0.5s;
  }
  
  .hero-image:hover {
    transform: rotateY(-5deg) rotateX(3deg) scale(1.03);
  }
  
  .visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    transform: translate(-50%, -50%);
  }
  
  .scrolling-partners {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
  }
  
  .partners-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
  }
  
  .partners-track span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
  }
  
  .partners-track img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  
  .partners-track img:hover {
    opacity: 1;
  }

  /* SVG-specific styles */
.badge-icon {
    width: 1em;
    height: 1em;
    margin-right: 0.5rem;
    color: #e6b800;
  }
  
  .cta-icon, .link-icon {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s;
  }
  
  .partner-icon {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    fill: currentColor;
    color: rgba(255,255,255,0.9);
  }
  
  .partner-icon:hover {
    opacity: 1;
  }
  
  /* Visa specific color */
  .partner-icon[title="Visa"] {
    color: #1a1f71; /* Visa blue */
  }
  
  /* Mastercard specific color */
  .partner-icon[title="Mastercard"] {
    color: #eb001b; /* Mastercard red */
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .subtitle {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-group {
      justify-content: center;
    }
    
    .hero-image {
      max-width: 400px;
      margin: 3rem auto 0;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 4rem 2rem;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .subtitle {
      font-size: 1.2rem;
    }
  }

.benefits {
    text-align: center;
    padding: 50px;
    background: #121212;
    color: #e6b800;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.benefits div {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 24px;
}

/* BENEFITS SECTION STYLES */
.benefits-section {
    padding: 80px 20px;
    background: #0a0e17;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.benefits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.benefit-icon {
    font-size: 32px;
    margin-right: 20px;
    color: #FFD700;
    font-weight: 300;
    min-width: 40px;
    text-align: center;
}

.benefit-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefit-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.divider {
    height: 60px;
    width: 1px;
    background: rgba(255, 215, 0, 0.2);
    margin: 0 20px;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefit-item {
        padding: 20px 0;
        width: 100%;
        justify-content: center;
    }
    
    .divider {
        height: 1px;
        width: 100px;
        margin: 10px 0;
    }
    
    .benefit-content h3 {
        font-size: 28px;
    }
}

/* CSS Styles for SERVICES SECTION */
/* CSS Styles */
.services-section {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(19, 26, 45, 0.8);
    border-radius: 12px;
    padding: 30px 25px;
    border: 1px solid rgba(230, 184, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    min-height: 220px; /* Increased to accommodate larger icons */
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 184, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    margin-bottom: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #e6b800;
    margin-bottom: 12px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.5;
}

.card-icon {
    margin-top: auto;
    text-align: center;
    padding: 0 10px;
}

.service-icon {
    width: 150px; /* Increased from 60px */
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* CSS with Arrow Glow Enhancement */
.card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    color: #e6b800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(230, 184, 0, 0.3);
    box-shadow: 0 0 10px rgba(230, 184, 0, 0.3);
}

.card-arrow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(230, 184, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5);
}

.service-card:hover .card-arrow::after {
    opacity: 1;
}

/* Rest of your existing CSS remains unchanged */

/* Responsive Styles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .service-card {
        min-height: 200px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
}

/* AWARDS SECTION STYLING */
.awards-section {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.awards-content {
    flex: 1;
    min-width: 0;
}

.awards-heading {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.awards-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.awards-highlight {
    display: inline-flex;
    align-items: baseline;
    background: rgba(230, 184, 0, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e6b800;
    margin-right: 15px;
    line-height: 1;
}

.highlight-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.awards-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.trophy-image {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
    transition: transform 0.5s ease;
}

.awards-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .awards-container {
        gap: 40px;
    }
    
    .awards-heading {
        font-size: 2.5rem;
    }
    
    .highlight-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 80px 20px;
    }
    
    .awards-container {
        flex-direction: column;
    }
    
    .awards-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .awards-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .awards-highlight {
        margin: 0 auto;
    }
    
    .awards-badge {
        bottom: -15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .awards-heading {
        font-size: 2rem;
    }
    
    .awards-subtitle {
        font-size: 1.1rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
}

.credit-score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #222;
    padding: 40px;
    /* border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); */
}


/* CREDIT SCORE SECTION STYLING */
.credit-score-section {
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.credit-score-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.credit-score-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.credit-score-content {
    flex: 1;
    min-width: 0;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 184, 0, 0.1);
    color: #e6b800;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.section-heading {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #e6b800;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #e6b800;
    width: 40px;
    height: 40px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.4);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.credit-score-visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.feature-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.credit-score-visual:hover .feature-image {
    transform: scale(1.02);
}

.credit-score-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffffff;
    color: #121212;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .credit-score-container {
        gap: 40px;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .credit-score-section {
        padding: 80px 20px;
    }
    
    .credit-score-container {
        flex-direction: column;
    }
    
    .credit-score-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .credit-score-badge {
        top: -15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* SPEND SMART SECTION STYLING */
/* SPEND SMART SECTION STYLING */
.spend-smart-section {
    background: linear-gradient(135deg, #000000 0%, #0e131f 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.decorative-shape {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 184, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.spend-smart-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(230, 184, 0, 0.15);
    color: #e6b800;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(230, 184, 0, 0.3);
    backdrop-filter: blur(5px);
}

.badge-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.sec-heading {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.heading-line {
    display: block;
}

.highlight {
    color: #e6b800;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
    transform: skew(-15deg);
}

.sec-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    position: relative;
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pros-item {
    background: rgba(19, 26, 45, 0.6);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(230, 184, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.pros-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(19, 26, 45, 0.8);
    border-color: rgba(230, 184, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pros-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.pros-icon {
    width: 30px;
    height: 30px;
    color: #e6b800;
}

.pros-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.pros-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pros-underline {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e6b800, rgba(230, 184, 0, 0));
    position: absolute;
    bottom: 25px;
    left: 30px;
    transition: width 0.4s ease;
}

.pros-item:hover .pros-underline {
    width: 80px;
}

.ca-button {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    border: none;
    padding: 18px 38px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(230, 184, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ca-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ca-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(230, 184, 0, 0.6);
}

.ca-button:hover::before {
    opacity: 1;
}

.arr-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    transition: transform 0.4s ease;
}

.ca-button:hover .arr-icon {
    transform: translateX(8px);
}

.spend-smart-visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.photo-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(230, 184, 0, 0.3);
    position: relative;
}

.spend-smart-image {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
    display: block;
  max-width: 100%;
  height: auto; /* Prevents aspect ratio distortion */
  object-fit: contain; /* Ensures full visibility */
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 184, 0, 0.05) 0%, transparent 100%);
    z-index: 2;
}

.floating-rewards {
    position: absolute;
    top: -30px;
    right: -30px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.reward-bubble {
    background: #ffffff;
    color: #121212;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.reward-bubble:nth-child(2) {
    animation-delay: 0.5s;
    transform: translateY(20px);
}

.reward-bubble:nth-child(3) {
    animation-delay: 1s;
    transform: translateY(-10px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .spend-smart-container {
        gap: 50px;
    }
    
    .sec-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .pros-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .spend-smart-section {
        padding: 80px 20px;
    }
    
    .spend-smart-container {
        flex-direction: column;
    }
    
    .sec-heading {
        font-size: 2.5rem;
    }
    
    .pros-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .floating-rewards {
        top: -20px;
        right: 20px;
    }
    
    .reward-bubble {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sec-heading {
        font-size: 2.2rem;
    }
    
    .sec-description {
        font-size: 1.1rem;
    }
    
    .ca-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

.full-width-img {
    width: 100%;
    border-radius: 12px;
}
.rates-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #0a0e17;
    padding: 40px;
    
}
.rates-text {
    flex: 1;
    text-align: left;
}

.rates-text h2 {
    font-size: 3.2rem;
    /* color: #e6b800;
    margin-bottom: 15px; */
    font-weight: 600;
}
.rates-image {
    flex: 1;
    text-align: right;
}
.rates-image img {
    max-width: 80%;
    border-radius: 12px;
}
.learn-more-btn {
    background: #e6b800;
    color: #222;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.learn-more-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 12px rgba(230, 184, 0, 0.8);
}

/* SECURITY SECTION STYLING */
.security-section {
    background: linear-gradient(135deg, #000000 0%, #0a0e17 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 184, 0, 0.1);
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.security-content {
    flex: 1;
    min-width: 0;
}

.security-badge {
    display: inline-block;
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 50, 50, 0.2);
}

.security-heading {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #e6b800;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 184, 0, 0.3);
    z-index: -1;
}

.security-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.security-items {
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.security-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #e6b800;
    width: 40px;
    height: 40px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-detail {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.security-cta {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.security-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.4);
}

.cta-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.security-cta:hover .cta-icon {
    transform: translateX(5px);
}

.security-visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 184, 0, 0.2);
}

.security-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.security-visual:hover .security-image {
    transform: scale(1.02);
}

.protection-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #121212;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .security-container {
        gap: 40px;
    }
    
    .security-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 80px 20px;
    }
    
    .security-container {
        flex-direction: column;
    }
    
    .security-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .security-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .security-item {
        justify-content: center;
    }
    
    .protection-badge {
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .security-heading {
        font-size: 2rem;
    }
    
    .security-description {
        font-size: 1.1rem;
    }
    
    .security-detail {
        font-size: 1rem;
    }
    
    .security-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}


/* ARTICLES SECTION */
 /* ARTICLES SECTION STYLES */
.articles-section {
padding: 4rem 2rem;
max-width: 1200px;
margin: 0 auto;
background-color: #0a0e17;
}

.articles-section .section-header {
text-align: left;
margin-bottom: 3rem;
}

.articles-section .section-header h2 {
font-size: 2.5rem;
color: #FFD700;
margin-bottom: 0.5rem;
}

.articles-section .section-header p {
font-size: 1.1rem;
opacity: 0.8;
max-width: 600px;
}

.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 2rem;
}

.article-card {
background: #131a2d;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid rgba(255, 215, 0, 0.1);
}

.article-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
border-color: rgba(255, 215, 0, 0.3);
}

.article-image {
height: 200px;
overflow: hidden;
}

.article-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
transform: scale(1.05);
}

.article-content {
padding: 1.5rem;
}

.article-content h3 {
color: #FFD700;
margin-bottom: 0.75rem;
font-size: 1.4rem;
}

.article-content p {
color: #e0e0e0;
opacity: 0.8;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.read-more {
color: #FFD700;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
}

.read-more:hover {
color: #ffffff;
text-decoration: underline;
}

.read-more::after {
content: '→';
margin-left: 5px;
transition: transform 0.3s ease;
}

.read-more:hover::after {
transform: translateX(3px);
}

@media (max-width: 768px) {

}

/* FOOTER SECTION */
.footer {
    background: #111;
    color: #e6b800;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1;
    margin: 20px;
}
.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.footer-links a {
    display: block;
    color: #e6b800;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.social-icons a {
    margin: 0 10px;
    color: #e6b800;
    font-size: 24px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #fff;
}
.footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}


@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    .menu-toggle {
        display: block;
    }

    .menu-toggle2 {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .hero img {
        max-width: 100%;
    }

    .benefits div {
        flex-direction: column;
        gap: 20px;
    }

    .rates-container {
        flex-direction: column;
        text-align: center;
    }
    .rates-text, .rates-image {
        text-align: center;
    }
    .rates-image img {
        max-width: 100%;
    }

    .articles-grid {
    grid-template-columns: 1fr;
    }

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

    
}





/* FOOTER SECTION STYLES */
.footer {
    background: #0a0e17;
    color: #e0e0e0;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 215, 0, 0.7);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    color: #FFD700;
    width: 20px;
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color: #FFD700;
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #e0e0e0;
    background: rgba(255, 215, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FFD700;
    color: #0a0e17;
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter p {
    margin-bottom: 10px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #0a0e17;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #bbb;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}



/* CSS FOR OFFERS SECTION */


/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
} */

.offers-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    
    min-height: 280px;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(207, 181, 59, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover .arrow-button {
    transform: translate(5px, -5px);
    opacity: 1;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.offer-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.offer-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    -webkit-background-clip: text;
    background-clip: text;
    /* color: transparent; */
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.arrow-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.arrow-button::after {
    content: '→';
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card p {
        max-width: 100%;
    }
}














/* Add this to your CSS */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-link.active {
    color: #fff;
    background: rgba(230, 184, 0, 0.3);
    border-bottom: 2px solid #e6b800;
}




/* Enhanced Savings Account Calculator Styles */
.savings-account-calculator {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0e17 0%, #121a2a 100%);
    position: relative;
    overflow: hidden;
  }
  
  .savings-account-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #CFB53B);
  }
  
  .savings-account-calculator-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .savings-account-calculator-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .savings-account-calculator-badge {
    display: inline-block;
    background: rgba(230, 184, 0, 0.15);
    color: #e6b800;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 184, 0, 0.3);
    letter-spacing: 1px;
  }
  
  .savings-account-calculator-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .savings-account-calculator-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .savings-account-calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .savings-account-calculator-form-container {
    background: rgba(19, 26, 45, 0.6);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(230, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
  }
  
  .savings-account-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .savings-account-calculator-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .savings-account-calculator-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }
  
  .savings-account-calculator-input-wrapper {
    position: relative;
  }
  
  .savings-account-calculator-currency {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #e6b800;
    font-weight: 600;
  }
  
  .savings-account-calculator-input {
    width: 100%;
    padding: 16px 20px 16px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 184, 0, 0.3);
    border-radius: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .savings-account-calculator-input:focus {
    outline: none;
    border-color: #e6b800;
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
  }
  
  .savings-account-calculator-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 184, 0, 0.3);
    border-radius: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6b800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    font-weight: 500;
  }
  
  .savings-account-calculator-select:focus {
    outline: none;
    border-color: #e6b800;
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
  }
  
  .savings-account-calculator-button {
    background: linear-gradient(135deg, #FFD700, #CFB53B);
    color: #121212;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .savings-account-calculator-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.5);
  }
  
  .savings-account-calculator-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .savings-account-calculator-button:hover svg {
    transform: translateX(5px);
  }
  
  .savings-account-calculator-results-container {
    position: relative;
  }
  
  .savings-account-calculator-results-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: radial-gradient(circle at center, rgba(230, 184, 0, 0.1) 0%, transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .savings-account-calculator-results-container:hover .savings-account-calculator-results-glow {
    opacity: 1;
  }
  
  .savings-account-calculator-results {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .savings-account-calculator-result-card {
    background: rgba(19, 26, 45, 0.8);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(230, 184, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .savings-account-calculator-result-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(230, 184, 0, 0.3);
  }
  
  .savings-account-calculator-result-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .savings-account-calculator-result-title {
    font-size: 1.4rem;
    color: #e6b800;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .savings-account-calculator-result-value {
    margin-bottom: 30px;
  }
  
  .savings-account-calculator-result-main {
    font-size: 2.5rem;
    color: #e6b800;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  
  .savings-account-calculator-result-detail {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .savings-account-calculator-result-breakdown {
    background: rgba(230, 184, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(230, 184, 0, 0.1);
  }
  
  .savings-account-calculator-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .savings-account-calculator-result-item:last-child {
    margin-bottom: 0;
  }
  
  .savings-account-calculator-result-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .savings-account-calculator-result-number {
    font-size: 1.1rem;
    color: #e6b800;
    font-weight: 600;
  }
  
  .savings-account-calculator-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .savings-account-calculator-content {
      gap: 30px;
    }
    
    .savings-account-calculator-form-container,
    .savings-account-calculator-result-card {
      padding: 30px;
    }
  }
  
  @media (max-width: 900px) {
    .savings-account-calculator-content {
      grid-template-columns: 1fr;
    }
    
    .savings-account-calculator-result-card {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .savings-account-calculator {
      padding: 80px 20px;
    }
    
    .savings-account-calculator-title {
      font-size: 2.2rem;
    }
    
    .savings-account-calculator-subtitle {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .savings-account-calculator-title {
      font-size: 1.8rem;
    }
    
    .savings-account-calculator-form-container,
    .savings-account-calculator-result-card {
      padding: 25px;
    }
    
    .savings-account-calculator-result-main {
      font-size: 2rem;
    }
  }