/* =======================
   Root Colors & Fonts
========================== */
:root {
  --primary-color: #593AD3;
  --secondary-color: #65E2CA;
  --third-color: #D0C8ED;
  --forth-color: #DEFAF4;

  --font-main: 'Poppins', sans-serif;

  /* Typography Sizes */
  --font-size-menu: 20px;
  --font-size-menu-mobile: 16px;

  --font-size-h1: 60px;
  --font-size-h1-mobile: 32px;

  --font-size-h2: 42px;
  --font-size-h2-mobile: 30px;

  --font-size-h3: 48px;
  --font-size-h3-mobile: 26px;

  --font-size-h4: 36px;
  --font-size-h4-mobile: 24px;

  --font-size-h5: 32px;
  --font-size-h5-mobile:22px;

  --font-size-h6: 30px;
  --font-size-h6-mobile:20px;

  --font-size-p: 24px;
  --font-size-p-mobile: 18px;
}


/* =======================
   Base Styles
========================== */
body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}


/* =======================
   Typography Styles
========================== */
h1 {
  font-weight: 700;
  font-size: var(--font-size-h1);
}

h1 span {
  color: var(--primary-color);
}

h2 {
  font-weight: 700;
  font-size: var(--font-size-h2);
}

h3 {
  font-weight: 400;
  font-size: var(--font-size-h3);
}

h4 {
  font-weight: 700;
  font-size: var(--font-size-h4);
}

h5 {
  font-weight: 700;
  font-size: var(--font-size-h5-mobile);
}

h6 {
  font-weight: 400;
  font-size: var(--font-size-h6);
}

p {
  font-weight: 400;
  font-size: var(--font-size-p);
}

p span {
  font-weight: 700;
  font-size: var(--font-size-p-mobile);
}


/* =======================
   Navigation Menu
========================== */

/* =======================
   Buttons
========================== */
.btn-primary {
  background-color: var(--primary-color);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 24px;
  border: none;
  padding: 10px 20px;
  color: #fff;
}




/* =======================
   General Styles
========================== */
/* =======================
 Navbar Styles
========================== */
.navbar {
  background-color: var(--primary-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Logo Style */
.navbar-brand {
  border: 1px solid var(--secondary-color); /* Adding a white border around the logo */
  padding: 5px; /* Optional padding to make it look more refined */
  border-radius: 8px; /* Optional: Rounded corners for the logo */
  transition: all 0.3s ease;
  background-color: white;
}

.navbar-brand:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  background-color: var(--secondary-color);
  border: 1px solid rgba(0, 0, 0, 0);
}


.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Mobile Offcanvas */
.offcanvas-body {
  background-image: url("./images/bg-1\ \(6\).jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 999;
}
.offcanvas-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #593ad3c5;
  z-index: -1;
}

.navbar-toggler {
  border: none;
}

/* =======================
 Hero Section Styles
========================== */
.full-height {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section {
  background-image: url("./images/bg-1\ \(6\).jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 99;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #593ad3c5;
  z-index: -1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-text .brand {
  color: var(--secondary-color);
}
/* Animation for Hero Text */
.hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Smooth Animation for Hero Image */
.hero-img {
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}


/* Glowing Effect for AtomStack Text with Cyan Glow */
#typing-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
  color: #65E2CA; /* Light cyan color for the text */
  text-shadow: 0 0 10px #65E2CA, 0 0 20px #65E2CA, 0 0 30px #65E2CA, 0 0 40px #65E2CA; /* Glowing effect with cyan */
  animation: glowing 1.5s infinite ease-in-out;
}

/* Keyframes for Glowing Effect */
@keyframes glowing {
  0% {
      text-shadow: 0 0 10px #65E2CA, 0 0 20px #65E2CA, 0 0 30px #65E2CA, 0 0 40px #65E2CA;
  }
  50% {
      text-shadow: 0 0 15px #65E2CA, 0 0 25px #65E2CA, 0 0 35px #65E2CA, 0 0 45px #65E2CA;
  }
  100% {
      text-shadow: 0 0 10px #65E2CA, 0 0 20px #65E2CA, 0 0 30px #65E2CA, 0 0 40px #65E2CA;
  }
}


.hero-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border: none;
}

/* =======================
 Media Queries for Responsiveness
========================== */
@media (max-width: 992px) {
  .hero-section {
      background-image: url("./images/Hero-mobile.png");
  }

  .hero-text h1 {
      font-size: 2rem;
  }

  .hero-text h2 {
      font-size: 1.2rem;
  }

  .hero-img {
      max-width: 110%;
  }
}

@media (max-width: 768px) {
  .navbar-toggler {
      background-color: var(--primary-color);
  }

  .navbar-nav .nav-link {
      font-size: 1.2rem;
  }

  .hero-text {
      padding: 0 20px;
  }
}








/* =======================
   Simplifies Everything Section - Fix for Icons on Mobile
========================== */
.simplifiesEverything {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background color for corporate feel */
  color: #333;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.simplifiesEverything h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color); /* Using theme color */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.simplifiesEverything p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.simplifiesEverything p span {
  font-weight: bold;
  color: var(--secondary-color); /* Using secondary theme color */
}

/* Feature List Styling */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px); /* Subtle movement on hover */
  color: var(--primary-color); /* Hover effect to highlight text */
}

.icon-container {
  width: 45px; /* Increased size for desktop */
  height: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem; /* Default icon size */
  transition: background-color 0.3s ease;
}

/* On hover, change icon color */
.feature-item:hover .icon-container {
  background-color: var(--secondary-color); /* Icon color change on hover */
}

/* Image Content */
.image-content img {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .simplifiesEverything {
    padding: 50px 0;
  }

  .simplifiesEverything h3 {
    font-size: 2rem;
  }

  .feature-list {
    flex-direction: column; /* Stack items vertically for mobile */
    gap: 15px;
  }

  .feature-item {
    font-size: 1rem;
  }

  /* Image and Text Layout Fix */
  .image-content img {
    max-width: 100%;
  }

  .col-md-6 {
    flex: 1 1 100%; /* Ensure both text and image are properly stacked */
  }

  /* Icon Container */
  .icon-container {
    width: 40px; /* Slightly smaller icons for mobile */
    height: 40px;
    font-size: 1.3rem; /* Adjust icon size for smaller screens */
  }
}





/* Background & Section Layout */
.biggerPictureRedesigned {
  background: linear-gradient(135deg, var(--primary-color), #3a25a5);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Background Gradient Blur Shapes */
.blur-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.shape1 {
  width: 300px;
  height: 300px;
  background-color: var(--secondary-color);
  top: -100px;
  left: -100px;
}

.shape2 {
  width: 250px;
  height: 250px;
  background-color: var(--third-color);
  bottom: -80px;
  right: -80px;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.glass-card h3 {
  color: var(--secondary-color);
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.glass-card p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* List Styling */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-color: var(--forth-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.custom-list li:hover {
  color: var(--third-color);
}

.custom-list li:hover::before {
  transform: scale(1.2);
}

/* Floating Image */
.floating-img {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .glass-card {
    padding: 25px;
  }
  .glass-card h3 {
    font-size: 1.8rem;
  }
  .custom-list li {
    font-size: 1rem;
  }
}




/* ================================
   Secure + Loan Unified Section
================================== */
.secureLoanSection {
  background: linear-gradient(135deg, var(--third-color), var(--forth-color));
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Image Float Animation */
.floating-img-sm {
  animation: floatSm 4s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}

@keyframes floatSm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Equal height fix for cards */
@media (min-width: 992px) {
  .secureLoanSection .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .secureLoanSection .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}


/* Responsive Tweaks */
@media (max-width: 768px) {
  .feature-card {
    padding: 20px;
  }

  .feature-card h4 {
    font-size: 1.3rem;
  }

  .check-list li {
    font-size: 0.95rem;
  }
}





/* ================================
   Boost Sales Section Redesigned
================================== */
.boostSalesRedesigned {
  background-color: var(--forth-color);
  padding: 100px 0;
  position: relative;
}

.sales-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sales-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.text-box h3 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Icon-enhanced list */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 15px;
  gap: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.tick-list li i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.tick-list li:hover {
  color: var(--primary-color);
}

/* Floating Animation */
.floating-img {
  animation: floatY 4s ease-in-out infinite;
}

/* ================================
   Boost Sales Section Redesigned
================================== */
.boostSalesRedesigned {
  background-color: var(--forth-color);
  padding: 100px 0;
  position: relative;
  overflow: visible; /* allow blobs to render outside */
}

.sales-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.sales-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.text-box h3 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Icon-enhanced list */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 15px;
  gap: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.tick-list li i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.tick-list li:hover {
  color: var(--primary-color);
}

/* Floating Animation */
.floating-img {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Background Visual Decorations */
.boost-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px); /* less blur for visibility */
  opacity: 0.4;        /* stronger visibility */
  pointer-events: none;
  z-index: 0;
}

.deco-left {
  width: 250px;
  height: 250px;
  background-color: var(--third-color);
  top: 30px;
  left: 20px;
}

.deco-right {
  width: 300px;
  height: 300px;
  background-color: var(--secondary-color);
  bottom: 40px;
  right: 40px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .text-box h3 {
    font-size: 1.6rem;
  }

  .tick-list li {
    font-size: 1rem;
  }

  .sales-card {
    padding: 25px;
  }
}


/* ================================
   One Platform Enhanced
================================== */
.onePlatformEnhanced {
  background: radial-gradient(circle at top left, var(--forth-color), var(--third-color));
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}

.overlay-pattern {
  position: absolute;
  background-image: url('images/dot-pattern.svg'); /* optional dot grid */
  background-repeat: repeat;
  background-size: 200px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  z-index: 0;
}

/* Infinity Icon Layer */
.icon-layer {
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

/* Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--secondary-color);
}

/* Description */
.section-subtext {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }

  .icon-layer {
    font-size: 3.5rem;
  }
}



/* ================================
   Why Choose AtomStack (Advanced)
================================== */
.whyChooseAdvanced {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
}

/* Card Design */
.advanced-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.advanced-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-top {
  padding: 25px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.card-bottom {
  padding: 20px;
  background: #fff;
}

.card-number {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-top h4 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.card-bottom p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Arrow/Icon */
.card-top .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.2;
}

/* THEME COLORS */
.card-primary .card-top {
  background-color: var(--primary-color);
}
.card-secondary .card-top {
  background-color: var(--secondary-color);
}
.card-third .card-top {
  background-color: var(--third-color);
  color: #000;
}
.card-forth .card-top {
  background-color: var(--forth-color);
  color: #000;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .advanced-card {
    text-align: center;
  }

  .card-top .icon {
    position: static;
    margin-top: 15px;
  }
}






/* ================================
   Who Is AtomStack For Redesign
================================== */
.whoAtomRedesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--forth-color), var(--third-color));
}

.section-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* Image Animation */
.who-img {
  max-width: 90%;
  animation: floatY 5s ease-in-out infinite;
}

/* Audience Items */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audience-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.audience-item i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.audience-item:hover {
  background-color: var(--third-color);
  transform: translateX(5px);
}

/* Floating Image */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.6rem;
    text-align: center;
  }

  .audience-item {
    font-size: 1rem;
    flex-direction: row;
    justify-content: flex-start;
  }

  .who-img {
    max-width: 100%;
  }
}




/* ================================
   AtomStack Dashboard - Timeline Style
================================== */
.atomDashboardTimeline {
  padding: 100px 0;
  background: var(--forth-color);
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
}

/* Image */
.dashboard-img-styled {
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Timeline Structure */
.feature-timeline {
  position: relative;
  border-left: 3px solid var(--primary-color);
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.timeline-item {
  position: relative;
}

.timeline-item .dot {
  width: 14px;
  height: 14px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  left: -32px;
  top: 5px;
  border: 3px solid white;
  box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item .content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.timeline-item .content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Icon inside heading */
.timeline-item i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .feature-timeline {
    padding-left: 15px;
    border-left: 2px solid var(--primary-color);
  }

  .timeline-item .dot {
    left: -24px;
    width: 12px;
    height: 12px;
  }

  .timeline-item .content h5 {
    font-size: 1rem;
  }
}





/* ================================
   Testimonial Branded Section
================================== */
.testimonialBranded {
  padding: 100px 0;
  background: linear-gradient(to bottom right, var(--third-color), var(--forth-color));
}

.section-heading {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
}

/* Cards with brand background accents */
.testimonial-card {
  border-radius: 16px;
  padding: 30px;
  color: #000;
  flex: 1;
  min-width: 280px;
  position: relative;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Individual backgrounds */
.brand-primary {
  border-top: 6px solid var(--primary-color);
}
.brand-secondary {
  border-top: 6px solid var(--secondary-color);
}
.brand-third {
  border-top: 6px solid var(--third-color);
}

/* Quote icon */
.quote-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Testimonial text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
}

/* User info */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* Avatar brand backgrounds */
.avatar-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.avatar-secondary {
  background-color: var(--secondary-color);
}

.avatar-third {
  background-color: var(--third-color);
}

.user-meta .name {
  font-weight: bold;
  margin: 0;
}

.user-meta .position {
  font-style: italic;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column !important;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
  }
}




/* ===============================
   Simplify & Scale CTA Section
================================= */
.simplifyCta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--forth-color), var(--secondary-color));
  color: #000;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cta-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 15px;
}

.cta-description {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #444;
}

/* CTA Button */
.cta-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(89, 58, 211, 0.25);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  color: #000;
  box-shadow: 0 12px 35px rgba(101, 226, 202, 0.4);
}

/* Contact Cards */
.contact-info .contact-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.contact-card .contact-label {
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.contact-card a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: var(--third-color);
}

/* Social Icons */
.social-icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* Live Chat */
.chat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.chat-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.chat-link:hover .chat-icon {
  transform: scale(1.1);
}

.chat-link:hover {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-button {
    width: 100%;
  }

  .chat-link {
    display: inline-block;
    margin-top: 20px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }

  .contact-card i {
    margin-bottom: 10px;
  }
}




/* =======================
   AtomStack Footer
========================== */
.atom-footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 80px 0 40px;
  font-family: var(--font-main);
}

/* Top Grid */
.footer-top {
  row-gap: 40px;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--forth-color);
  margin-top: 8px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--forth-color);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact i {
  margin-right: 8px;
  color: var(--secondary-color);
}

/* Social */
.footer-social img {
  width: 34px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Chat */
.footer-chat {
  text-decoration: none;
  color: var(--forth-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-chat img {
  width: 22px;
  height: 22px;
}

/* Bottom Text */
.footer-bottom p {
  font-size: 0.9rem;
  color: var(--third-color);
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-chat {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }
}


/* =======================
   Responsive Typography
========================== */
@media (min-width: 992px) {
  .offcanvas-lg {
    display: none !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-h1-mobile);
  }

  h2 {
    font-size: var(--font-size-h2-mobile);
  }

  h3 {
    font-size: var(--font-size-h3-mobile);
  }

  h4 {
    font-size: var(--font-size-h4-mobile);
  }

  p {
    font-size: var(--font-size-p-mobile);
  }

  .nav-link {
    font-size: var(--font-size-menu-mobile);
  }


  .hero-img {
    max-width: 122%;
}

.hero-section {
  background-image: url("./images/Hero-mobile.png");
}
.mobileMargin{
  margin-bottom: 40px;
}
.secureAccess {
  padding: 40px 0;
}

.getBusiness {
  padding: 40px 0;
}
.boostSales {
  padding: 40px 0;
}
.onePlatform {
  padding: 40px 0;
}
.whyChoose {
  padding: 40px 0;
}

.whyChoose p {
  padding-bottom: 0px;
}

.whoAtom {
  padding: 40px 0;
}

.atomDashboard {
  padding: 40px 0;
}

.whoAtom ol li {
  font-size: 18px;
  line-height: 40px;
}
}