/* Vixo Insurance - Global Stylesheet */
/* Built with a mobile-first, responsive approach */

/*------------------------------------------------*/
/* # Vixo Brand DNA
/*------------------------------------------------*/
:root {
  /* Colors */
  --navy: #0A0F1C;
  --green: #A4D233;
  --yellow: #FFD700;
  --white: #FFFFFF;
  --gray-light: #f8fafc;
  --gray-dark: #6c757d;
  --text-primary: #1e293b;
  --text-secondary: #334155;
  --text-light: var(--white);
  --blue-primary: #1e3a8a;
  --blue-light: #2563eb;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Sizing & Spacing */
  --container-width: 1200px;
  --header-height: 70px;
}

/*------------------------------------------------*/
/* # Base & Reset Styles
/*------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: #fff !important;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/*------------------------------------------------*/
/* # Enhanced Typography
/*------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Montserrat', 'Poppins', serif;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

/*------------------------------------------------*/
/* # Layout & Components
/*------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --- Header --- */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -1px;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.35s ease-in-out;
  z-index: 1000;
}
.nav.is-open {
  right: 0;
}
.nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.5rem 1rem;
}
.nav a:hover {
  color: var(--green);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    transition: none;
  }
  .nav a {
    font-size: 1rem;
    font-weight: 500;
  }
}

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, #0A0F1C 80%, #1a365d 100%);
  color: #fff;
  box-shadow: 0 -2px 24px rgba(10,15,28,0.12);
  font-size: 1rem;
  padding: 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr 1.2fr;
  gap: 3rem;
  padding: 3.5rem 0 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col {
  display: block;
  background: none;
  border-radius: 0;
  padding: 0;
  min-height: unset;
  height: unset;
  box-shadow: none;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 1.2rem 0;
  }
  .footer-col {
    padding: 0;
  }
}
.footer-col h3, .footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 1.3rem;
  color: #A4D233;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h3::after, .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: #A4D233;
}

.footer-services h4 {
  position: relative;
}

.footer-services h4::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: #A4D233;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  font-size: 1rem;
  padding-left: 0;
}
.footer-col ul li a:hover {
  color: #A4D233;
  padding-left: 6px;
}

/* Footer Services Two Column Layout */
.footer-services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  list-style: none;
  padding: 0;
}

.footer-services ul li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer-services ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #A4D233;
  font-weight: bold;
  font-size: 0.9rem;
}

.footer-services ul li a {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.2rem 0;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-services ul li a:hover {
  color: #A4D233;
  padding-left: 6px;
}

.footer-brand p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0;
  opacity: 0.92;
  line-height: 1.7;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.92;
  word-break: break-all;
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0 0.7rem 0;
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .footer-content {
    padding: 0 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 1.2rem 0;
  }
  .footer-col:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  /* Footer Services Single Column on Tablet */
  .footer-services ul {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .footer-services ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
  }
  .footer-services ul li::before {
    font-size: 0.8rem;
  }
  .footer-services ul li a {
    font-size: 0.95rem;
    padding: 0.1rem 0;
  }
}
@media (max-width: 600px) {
  .footer-content {
    padding: 0 0.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0 0.7rem 0;
    border-bottom: none;
  }
  .footer-col {
    margin-bottom: 1.5rem;
    border-right: none;
    padding-right: 0;
  }
}

.contact-preview {
  background-color: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.contact-preview h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.contact-preview p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-preview {
    padding: 6rem 0;
  }
  
  .contact-preview h2 {
    font-size: 2.5rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--navy);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  border: 2px solid var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  /* background removed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 0 2.5rem 0;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
  pointer-events: none;
}
.hero::before {
  display: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero-content p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.hero-arrow {
  margin-top: 3rem;
  text-align: center;
}
.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}
.scroll-arrow:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem !important;
  }
  .hero-content p {
    font-size: 1.2rem !important;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .hero-arrow {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    padding: 0 0 2.5rem 0;
  }
  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* Features Section - Navy background, white text for section, but cards are white with navy text */
.features {
  padding: 2.2rem 0 !important;
  background-color: var(--navy);
  color: var(--white);
}
.features .section-title {
  color: var(--green);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
}
.feature-card {
  background-color: var(--white);
  color: var(--navy);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.feature-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.feature-card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

/* About page specific styles */
.about-features-navy {
  background-color: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.features-heading {
  color: var(--green);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--font-secondary);
  font-weight: 800;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    justify-content: center;
  }
  .features,
  .testimonials {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-features-navy {
    padding: 4rem 3rem;
    margin: 4rem auto;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-items: center;
    justify-content: center;
  }
  /* Center the last card when there are 5 cards */
  .features-grid .feature-card:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-features-navy {
    margin: 5rem auto;
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .features {
    padding: 1.2rem 0 !important;
  }
  .features,
  .about-features-navy {
    border-radius: 12px;
    margin: 1rem;
    padding: 3rem 1rem;
  }
  .features-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .feature-card {
    max-width: 280px;
    padding: 1.5rem;
    margin: 0 auto;
  }
}

/* Testimonials Section - White background, navy text, cards are white with yellow border */
.testimonials {
  padding: 2.2rem 0 !important;
  background-color: var(--white);
  color: var(--navy);
}
.testimonials .section-title {
  color: var(--navy);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
}
.testimonial-card {
  background-color: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-card p {
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
}
.testimonial-card .name {
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    justify-content: center;
  }
}

/* --- Services Page --- */
.page-hero {
  position: relative;
  min-height: 320px;
  background: #0A0F1C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,15,28,0.7);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.services-section {
  padding: 4rem 0;
  background-color: var(--gray-light);
}
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.service-card {
  background-color: var(--white);
  color: var(--navy);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--green);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(10, 15, 28, 0.8), rgba(10, 15, 28, 0.8)), url('../Images/P.I.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  position: relative;
  z-index: 2;
  animation: service-icon-float 2.2s ease-in-out infinite alternate;
}
@keyframes service-icon-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
.service-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}
.service-card .btn {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid .service-card:last-child:nth-child(3n-1) {
    grid-column: 2;
  }
  .services-grid .service-card:last-child:nth-child(3n-2) {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 4rem 0;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .page-hero p {
    font-size: 1.1rem;
  }
  .service-card {
    padding: 2rem;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* --- Content Pages --- */
.content-section {
  padding: 4rem 0;
  background-color: var(--white);
}
.content-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.content-main h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.content-main h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.content-main h4 {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.content-main p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
  font-weight: 400;
}
.content-main ul {
  margin-bottom: 1.2rem;
}
.content-main li {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.content-main li:before {
  content: "•";
  color: var(--blue-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 2rem 0;
}
.feature-item {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--green);
}
.feature-item h4 {
  margin-bottom: 0.5rem;
}
.feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cta-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}
.cta-section h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.cta-section p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-card {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--green);
}
.sidebar-card h3 {
  font-family: var(--font-secondary);
  color: var(--navy);
  margin-bottom: 1rem;
}
.sidebar-card p {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.sidebar-card ul {
  list-style: none;
  padding: 0;
}
.sidebar-card li {
  margin-bottom: 0.5rem;
}
.sidebar-card a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}
.sidebar-card a:hover {
  color: var(--green);
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .content-main h2 {
    font-size: 2rem;
  }
  .content-main h3 {
    font-size: 1.5rem;
  }
  .cta-section {
    padding: 2rem;
  }
  .sidebar-card {
    padding: 1.5rem;
  }
}

/* Investment Products Page Styles */
.main-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.intro-section h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-section p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
  font-weight: 400;
}

.product-overview {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.product-overview h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.overview-item {
  text-align: center;
  padding: 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.overview-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.overview-icon {
  margin-bottom: 1rem;
}

.overview-icon img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.overview-item h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.overview-item p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #0A0F1C;
  font-weight: 400;
}

.product-image {
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.detailed-products,
.benefits-section,
.process-section {
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 3rem 0;
}

.detailed-products > h3,
.benefits-section > h3,
.process-section > h3 {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 2rem 1rem 0 1rem;
}

.products-grid,
.benefits-grid,
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.product-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a365d 100%);
  color: white;
  padding: 1.5rem;
}

.product-header h4 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-content {
  padding: 1.5rem;
}

.product-content p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #0A0F1C;
  margin-bottom: 1rem;
  font-weight: 400;
}

.product-features h5 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A0F1C;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features ul li {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #0A0F1C;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 400;
}

.product-features ul li:before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.benefits-section {
  background: linear-gradient(to bottom, #0A0F1C 0%, #fff 100%);
  border-radius: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.benefits-section h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.benefit-icon {
  margin-bottom: 1rem;
}

.benefit-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.benefit-item h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.benefit-item p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.process-section {
  background: #fff;
  border-radius: 0;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}

.process-section::after {
  content: none;
}

.process-section h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-number {
  background: var(--green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.step-content p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a365d 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-section h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-section p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-section .btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background: #00cc44;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .benefits-section,
  .process-section,
  .detailed-products,
  .benefits-grid,
  .process-grid,
  .products-grid {
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
    align-items: center;
  }
  .benefits-section {
    text-align: center;
    padding: 0 1rem 3rem 1rem;
  }
  .benefits-section h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .benefits-grid {
    justify-items: center;
    align-items: center;
  }
  .accordion-card,
  .benefit-card,
  .process-card {
    min-height: 80px;
    max-height: 120px;
  }
  .accordion-header h4 {
    padding: 0.5rem 1rem;
  }
  .accordion-content {
    padding: 0.5rem 1rem;
    max-height: 300px;
    overflow-y: auto;
  }
  .accordion-card.active .accordion-content {
    max-height: 300px;
    overflow-y: auto;
  }
}

.products-grid-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.products-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .products-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
  }
  .products-grid .accordion-card {
    width: calc(33.333% - 1.34rem);
    align-self: flex-start;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .products-grid .accordion-card .accordion-content {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(10,15,28,0.10);
    border-radius: 0 0 10px 10px;
    background: #fff;
    margin-top: 0;
  }
}

@media (max-width: 899px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .products-grid .accordion-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.accordion-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  height: 100%;
  justify-content: flex-start;
  border: 1.5px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  background: #0A0F1C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0A0F1C;
  color: #fff;
  width: 100%;
  padding: 0;
  border-radius: 6px 6px 0 0;
  min-height: 56px;
  cursor: pointer;
}

.accordion-header h4 {
  flex: 1;
  background: none;
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  padding: 1.2rem 2rem;
  border-radius: 6px 6px 0 0;
}

.accordion-toggle-icon {
  font-size: 1.5rem;
  font-weight: 900;
  color: #A4D233;
  margin-right: 1.5rem;
  user-select: none;
  transition: color 0.2s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.95);
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, box-shadow 0.3s, transform 0.3s;
  padding: 0 2rem;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
  color: #0A0F1C;
  background: #fff;
}

.accordion-card.active {
  box-shadow: 0 8px 32px rgba(10,15,28,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  border-color: #A4D233;
  z-index: 2;
}

.accordion-card.active .accordion-content {
  max-height: 250px;
  opacity: 1;
  padding: 1.5rem 2rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(10,15,28,0.10);
  border-radius: 0 0 10px 10px;
  transform: scaleY(1);
  color: #0A0F1C;
  overflow-y: auto;
  background: #fff;
  position: relative;
}

/* Custom scrollbar styling */
.accordion-card.active .accordion-content::-webkit-scrollbar {
  width: 6px;
}

.accordion-card.active .accordion-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.accordion-card.active .accordion-content::-webkit-scrollbar-thumb {
  background: #A4D233;
  border-radius: 3px;
}

.accordion-card.active .accordion-content::-webkit-scrollbar-thumb:hover {
  background: #8bb82a;
}

.commitment-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin: 2rem 0 2.5rem 0;
  padding: 0;
  overflow: visible;
}

.commitment-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: 320px;
}

.commitment-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.commitment-text h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.commitment-text p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
}

.commitment-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.commitment-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 1;
}

.commitment-image::after {
  content: none !important;
  background: none !important;
}

.commitment-image img {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .commitment-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 340px;
  }
  .commitment-text, .commitment-image {
    flex: 1 1 0;
    min-width: 0;
  }
  .commitment-text {
    padding: 3rem 3rem 3rem 3.5rem;
  }
  .commitment-image {
    min-height: 340px;
  }
}

@media (max-width: 899px) {
  .commitment-image {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.benefits-grid, .process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) and (max-width: 899px) {
  .benefits-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .benefits-section,
  .process-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
  }
  
  .benefits-section h3,
  .process-section h3 {
    margin-bottom: 3rem;
  }
  
  .benefit-card,
  .process-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .benefits-grid, .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #fff;
  color: #0A0F1C;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.benefit-card h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.process-section {
  background: #fff;
  padding: 0 0 3rem 0;
}

.process-card {
  background: #0A0F1C;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.process-card h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.process-card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
}

.cta-maxwidth {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  background: #0A0F1C;
  color: #fff;
  text-align: center;
}

.cta-maxwidth h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.3;
}

.cta-maxwidth p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.footer-spacer-section {
  display: none;
}

@media (min-width: 900px) {
  .products-grid .accordion-card .accordion-content {
    position: static;
    left: unset;
    top: unset;
    width: 100%;
    z-index: unset;
    box-shadow: 0 8px 32px rgba(10,15,28,0.10);
    border-radius: 0 0 10px 10px;
    background: #fff;
    margin-top: 0;
  }
}

.footer-cta {
  background: #A4D233;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
}

.footer-cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-cta h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.footer-cta p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  font-weight: 400;
}

.footer-cta-btn {
  display: inline-block;
  background: #0A0F1C;
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,15,28,0.10);
  margin-top: 0.5rem;
}

.footer-cta-btn:hover {
  background: #fff;
  color: #0A0F1C;
  box-shadow: 0 4px 16px rgba(10,15,28,0.13);
}

@media (max-width: 600px) {
  .footer-cta {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .footer-cta h2 {
    font-size: 1.4rem;
  }
  .footer-cta-content {
    gap: 0.7rem;
  }
}

/* FAQS PAGE LAYOUT */
.faqs-section .container.faqs-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faqs-left {
  flex: 0 0 320px;
  max-width: 320px;
  background: #0A0F1C;
  color: #fff;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 2px 16px rgba(10,15,28,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 420px;
}

.faqs-left h2 {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.faqs-left h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.faqs-left p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
}

.faqs-left .footer-cta-btn {
  background: #39FF14;
  color: #0A0F1C;
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}

.faqs-left .footer-cta-btn:hover {
  background: #FFD600;
  color: #0A0F1C;
}

.faqs-right {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.faqs-list.small-faqs {
  width: 100%;
  max-width: 520px;
}

.faq-card.accordion-card {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(10,15,28,0.06);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  padding: 0.7rem 1.1rem;
  transition: box-shadow 0.2s;
}

.faq-card.accordion-card .faq-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: #0A0F1C;
  padding: 0.2rem 0;
}

.faq-card.accordion-card .accordion-toggle-icon {
  color: #39FF14;
  font-size: 1.2rem;
  margin-right: 0.7rem;
  font-weight: bold;
}

.faq-card.accordion-card .accordion-content {
  display: none;
  padding: 0.5rem 0 0.2rem 1.9rem;
  color: #222;
  font-size: 0.97rem;
}

.faq-card.accordion-card.active .accordion-content {
  display: block;
}

.faq-card.accordion-card.active {
  box-shadow: 0 4px 18px rgba(57,255,20,0.09);
}

/* Responsive */
@media (max-width: 900px) {
  .faqs-section .container.faqs-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .faqs-left, .faqs-right {
    max-width: 100%;
    width: 100%;
    align-items: stretch;
  }
  .faqs-right {
    align-items: stretch;
  }
  .faqs-list.small-faqs {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .faqs-left {
    padding: 1.2rem 1rem 1rem 1rem;
    min-height: unset;
  }
  .faq-card.accordion-card {
    font-size: 0.93rem;
    padding: 0.6rem 0.7rem;
  }
}

/* Home About Section */
.home-about-section {
  padding: 1.5rem 0 !important;
}
.home-about-section .about-overview {
  padding: 1.2rem 1rem !important;
  margin: 1.2rem auto !important;
}
.home-about-section h2 {
  font-size: 2rem;
  color: #0f172a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.home-about-section h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* How We Do Business Process Cards */
.home-process-section {
  margin: 3rem 0 2rem 0;
}
.process-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .process-card-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .process-card-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    justify-content: center;
  }
}

/* Our Products & Services Two-Layer Cards */
.home-products-section {
  margin: 3rem 0 2rem 0;
}
.product-card-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.product-two-layer-card {
  width: 340px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 2rem;
}

.product-card-cta {
  font-size: 0.98rem;
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
  align-self: flex-start;
}
.product-card-cta:hover {
  color: #0A0F1C;
  text-decoration: none;
}
@media (max-width: 900px) {
  .process-card-row, .product-card-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .process-card, .product-two-layer-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Why Choose Vixo? Section Styles */
.home-why-choose-section {
  margin: 3rem 0 2rem 0;
}
.why-choose-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(10,15,28,0.06);
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.why-choose-card h2 {
  font-size: 2rem;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.why-choose-card p {
  font-size: 1.08rem;
  color: #334155;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .why-choose-card {
    padding: 1.2rem 0.7rem;
  }
  .why-choose-card h2 {
    font-size: 1.3rem;
  }
}

/* Our Standout Commitment Section Styles */
.home-commitment-section {
  margin: 3rem 0 2rem 0;
}
.home-commitment-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.process-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .process-card-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .process-card-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    justify-content: center;
  }
}

/* Modern card hover effects for home page */
.process-card, .product-two-layer-card, .testimonial-card {
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.process-card:hover, .product-two-layer-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 40px rgba(30,58,138,0.18), 0 2px 8px rgba(10,15,28,0.10);
  z-index: 2;
}

/* Font improvements for headings and body */
body, p, a, li, span, input, button {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

/* Overlap card design for Our Standout Commitment section */
.standout-card-wrapper {
  position: relative;
  width: 270px;
  margin-bottom: 2.5rem;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
}
.standout-card-wrapper:hover {
  transform: translateY(-6px) scale(1.025);
  z-index: 3;
}
.standout-img-card {
  height: 340px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(10,15,28,0.12);
  overflow: hidden;
  background: #fff;
}
.standout-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.standout-text-card {
  position: absolute;
  left: 50%;
  transform: translateX(-40%);
  width: 88%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.13);
  padding: 1.1rem 1.1rem 0.8rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  overflow: hidden;
  overflow-wrap: break-word;
  min-height: 270px;
  max-height: 270px;
  bottom: -165px !important;
}
@media (max-width: 900px) {
  .standout-card-wrapper {
    width: 98vw;
    max-width: 340px;
  }
  .standout-img-card {
    height: 220px;
  }
  .standout-text-card {
    width: 94%;
    min-height: 180px;
    max-height: 180px;
    bottom: -60px !important;
    padding: 1rem 1rem 0.7rem 1rem;
    transform: translateX(-50%);
  }
}

.about-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.about-tab-btn {
  background: #f1f5f9;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e3a8a;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30,58,138,0.07);
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  outline: none;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.about-tab-btn:hover,
.about-tab-btn:focus {
  background: #e0e7ef;
  color: #0A0F1C;
  box-shadow: 0 4px 16px rgba(30,58,138,0.13);
  transform: translateY(-2px) scale(1.04);
}
.about-tab-btn.active {
  background: linear-gradient(90deg, #a4d233 0%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(30,58,138,0.18);
  transform: scale(1.07);
}

.accordion-content.open {
  max-height: 1000px;
  opacity: 1;
  transform: scaleY(1);
  padding: 1.1rem 1.2rem;
  color: #0A0F1C;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.footer-services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.footer-service-card {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #0A0F1C;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(10,15,28,0.07);
  color: #0A0F1C;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  text-decoration: none;
  transition: border 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0;
}
.footer-service-card:hover {
  border-color: #1e3a8a;
  color: #1e3a8a;
  box-shadow: 0 4px 16px rgba(30,58,138,0.10);
}
@media (max-width: 900px) {
  .footer-services-cards {
    gap: 0.5rem;
  }
  .footer-service-card {
    font-size: 0.93rem;
    padding: 0.38rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .footer-services-cards {
    gap: 0.3rem;
  }
  .footer-service-card {
    font-size: 0.91rem;
    padding: 0.32rem 0.5rem;
  }
}

.footer-service-card--long {
  width: 100%;
  margin-bottom: 0.4rem;
  font-size: 1.01rem;
  text-align: left;
}
.footer-services-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.7rem;
  width: 100%;
}
.footer-services-cards-grid .footer-service-card {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .footer-service-card--long {
    font-size: 0.97rem;
  }
  .footer-services-cards-grid {
    gap: 0.3rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .footer-services-cards-grid {
    grid-template-columns: 1fr;
  }
}

.footer-contact-top.footer-contact-inline {
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(10,15,28,0.07);
  padding: 1.1rem 2rem 1.1rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 100%;
}
.footer-contact-item {
  color: #0A0F1C;
  font-size: 1.08rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-contact-label {
  font-weight: 700;
  color: #1e3a8a;
  margin-right: 0.2rem;
}
.footer-contact-link {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-contact-link:hover {
  color: #A4D233;
}
@media (max-width: 900px) {
  .footer-contact-top.footer-contact-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1rem 1rem 1rem;
  }
  .footer-contact-item {
    font-size: 1rem;
  }
}

.footer-contact-overlap-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 20;
}
.footer-contact-overlap {
  position: relative;
  z-index: 21;
  margin-top: -40px;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(10,15,28,0.13), 0 2px 8px rgba(10,15,28,0.10);
}
@media (max-width: 900px) {
  .footer-contact-overlap {
    margin-top: -28px;
  }
}
@media (max-width: 600px) {
  .footer-contact-overlap {
    margin-top: -24px;
  }
}

.footer-pages {
  margin-left: 0;
}

.footer-service-card-wide {
  grid-column: span 2;
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .footer-service-card-wide {
    grid-column: span 1;
    text-align: left !important;
    display: block;
  }
}

.learn-more-btn {
  display: inline-block;
  background: #0A0F1C;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 1.7rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10,15,28,0.10);
  position: relative;
  z-index: 2;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.learn-more-btn:hover {
  background: #A4D233;
  color: #0A0F1C;
  box-shadow: 0 4px 16px rgba(164,210,51,0.13);
}
.learn-more-cta-wrapper {
  position: relative;
  min-height: 90px;
}
.arrow {
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 1;
  pointer-events: none;
}
.arrow-tl {
  top: -28px;
  left: 18%;
  transform: rotate(-45deg);
  animation: arrow-bounce-tl 1.5s infinite alternate;
}
.arrow-tr {
  top: -28px;
  right: 18%;
  transform: rotate(45deg) scaleX(-1);
  animation: arrow-bounce-tr 1.7s infinite alternate;
}
.arrow-bl {
  bottom: -28px;
  left: 18%;
  transform: rotate(45deg) scaleY(-1);
  animation: arrow-bounce-bl 1.6s infinite alternate;
}
.arrow-br {
  bottom: -28px;
  right: 18%;
  transform: rotate(-45deg) scale(-1,-1);
  animation: arrow-bounce-br 1.8s infinite alternate;
}
.arrow::before {
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  background: none;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  /* Crooked SVG arrow */
  background-image: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 34 Q18 18 34 34 M34 34 Q30 28 28 22" stroke="%23A4D233" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
@keyframes arrow-bounce-tl {
  0% { top: -28px; left: 18%; opacity: 0.7; }
  100% { top: -38px; left: 13%; opacity: 1; }
}
@keyframes arrow-bounce-tr {
  0% { top: -28px; right: 18%; opacity: 0.7; }
  100% { top: -38px; right: 13%; opacity: 1; }
}
@keyframes arrow-bounce-bl {
  0% { bottom: -28px; left: 18%; opacity: 0.7; }
  100% { bottom: -38px; left: 13%; opacity: 1; }
}
@keyframes arrow-bounce-br {
  0% { bottom: -28px; right: 18%; opacity: 0.7; }
  100% { bottom: -38px; right: 13%; opacity: 1; }
}
@media (max-width: 600px) {
  .arrow, .arrow::before {
    width: 20px;
    height: 20px;
  }
  .arrow-tl {
    top: -16px;
    left: 25%;
  }
  .arrow-tr {
    top: -16px;
    right: 25%;
  }
  .arrow-bl {
    bottom: -16px;
    left: 25%;
  }
  .arrow-br {
    bottom: -16px;
    right: 25%;
  }
  .learn-more-cta-wrapper {
    min-height: 40px;
    margin-top: 1.2rem;
  }
  .learn-more-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 767px) {
  .benefit-card {
    max-height: none !important;
    height: auto !important;
    min-height: 0 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    padding-bottom: 1rem;
  }
  .benefit-card h4,
  .benefit-card p {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: center;
  }
  .scrollable-mobile {
    max-height: none !important;
    overflow-y: visible !important;
    padding-bottom: 0 !important;
  }
  .process-card {
    max-height: none !important;
    height: auto !important;
    min-height: 0 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    padding-bottom: 1rem;
    overflow: visible !important;
  }
  .process-card h4,
  .process-card p {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .about-tab-btn {
    font-size: 1.13rem !important;
    padding: 0.8rem 1.45rem !important;
    border-radius: 24px !important;
    min-width: 100px !important;
    margin: 0 0.13rem !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
  }
}

.form-popup-message {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 180px;
  max-width: 90vw;
  padding: 0.4rem 1.2rem;
  border-radius: 0.7rem;
  font-size: 0.98rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,15,28,0.13);
  opacity: 1;
  transition: opacity 0.5s;
  pointer-events: none;
  line-height: 1.3;
  white-space: nowrap;
}
.form-popup-message.success {
  background: #eafbe2;
  color: #1e3a8a;
  border: 1.2px solid #A4D233;
}
.form-popup-message.error {
  background: #fff0f0;
  color: #b91c1c;
  border: 1.2px solid #b91c1c;
}

/* Mobile responsive styling for form popup messages */
@media (max-width: 768px) {
  .form-popup-message {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
    width: auto;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    white-space: normal;
    line-height: 1.4;
    min-width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .form-popup-message {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 0.4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 360px) {
  .form-popup-message {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
  }
  .products-grid .accordion-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  /* Home page sections - same tablet styling */
  .process-card-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
  }
  
  .process-card-row .process-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .why-choose-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

/*------------------------------------------------*/
/* # Footer Social Media Icons
/*------------------------------------------------*/
.footer-social-links {
  margin-top: 1.5rem;
}

.footer-social-links h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--green);
}

.social-icons-footer {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

.social-item:hover .social-name {
  color: var(--green);
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2332 100%);
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(10, 15, 28, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-icon-footer:hover {
  background: linear-gradient(135deg, var(--green) 0%, #8bc34a 100%);
  color: var(--navy);
  transform: translateY(-3px) scale(1.05);
  border-color: var(--green);
  box-shadow: 0 8px 25px rgba(164, 210, 51, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon-footer:hover::before {
  left: 100%;
}

.social-icon-footer svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .social-icons-footer {
    gap: 0.8rem;
  }
  
  .social-icon-footer {
    width: 36px;
    height: 36px;
  }
  
  .social-icon-footer svg {
    width: 18px;
    height: 18px;
  }
  
  .social-name {
    font-size: 0.85rem;
  }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-icons-footer {
    gap: 0.7rem;
  }
  
  .social-icon-footer {
    width: 38px;
    height: 38px;
  }
  
  .social-icon-footer svg {
    width: 19px;
    height: 19px;
  }
  
  .social-name {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .social-icon-footer {
    width: 34px;
    height: 34px;
  }
  
  .social-icon-footer svg {
    width: 16px;
    height: 16px;
  }
  
  .social-name {
    font-size: 0.8rem;
  }
} 