/* General body styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Noto Sans", Arial, "Odoo Unicode Support Noto", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0; /* Remove default margin */
}

/* Header styling */
.header {
    background-color: white; /* White background for the header */
    padding: 10px 20px; /* Padding around the content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for the header */
    position: fixed; /* Fix position to the top */
    width: 100%; /* Full width */
    top: 0; /* Align to the top */
    z-index: 1000; /* Ensure header is on top of other content */
}

.header .container {
    display: flex; /* Flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Center items horizontally */
}

/* Hamburger menu icon styling */
.hamburger {
    font-size: 24px; /* Font size of the icon */
    cursor: pointer; /* Pointer cursor on hover */
    color: #333; /* Dark color */
}

/* Logo styling */
.logo {
    flex: 1;
    text-align: center;   
}

.logo img {
    padding-top: 0;
    padding-bottom:0 ;
    max-height: 80px; /* Limit logo height */
    text-align: center;
}


/* Side menu styling */
.side-menu {
    position: fixed; /* Fixed position */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 350px; /* Fixed width */
    height: 100vh; /* Full viewport height */
    color: #333;
    background: #ffffff; /* Dark background */
    transform: translateX(-100%); /* Hide off-screen */
    transition: transform 0.3s ease; /* Smooth transition for opening */
    z-index: 1100; /* Ensure menu is above other content */
}

/* Active state of the side menu */
.side-menu.active {
    transform: translateX(0); /* Slide into view */
}

/* Logo inside side menu */
.side-menu .logo {
    padding: 20px; /* Padding around the logo */
    text-align: center; /* Center the logo */
    color: white; /* White color for text */
    font-size: 1.5rem; /* Font size */
}
.side-menu .logo img {
    height: 70px;  
}

/* Menu items inside side menu */
.side-menu .menu-items {
    padding: 20px; /* Padding around the menu items */
    color: rgb(0, 0, 0); /* White color for text */
    text-align: center; /* Center text */
}
.side-menu .menu-items p{
    font-size: 16px;
    font-weight: 500;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: rgb(17, 17, 17);
}

/* Button for appointments in side menu */
.side-menu .appointment-button {
    display: block;
    margin: 20px auto;
    width: 90%;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: center;
    background-color: #466ECE;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
/* Navbar Styling */
.navbar {
    padding: 15px 0;
}

.navbar-brand img.logo {
    height: 40px; /* Adjust height for logo */
}

/**/
.side-menu .menu-items {
    padding: 10px; /* Reduced padding */
    text-align: center;
}

.side-menu .menu-items p {
    font-size: 14px; /* Slightly smaller font */
    font-weight: 500;
    margin: 5px 0; /* Reduced margin */
    text-align: left;
    padding-left: 50px; /* Reduced left padding */
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    border-radius: 6px; /* Slightly rounded edges */
    overflow: hidden;
    position: relative;
}

/* Background hover effect */
.side-menu .menu-items p:hover {
    background: linear-gradient(90deg, #f8f8f8, #eaeaea);
    transform: translateX(3px);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

/* Links inside menu items */
.side-menu .menu-items p a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 5px 10px; /* Reduced padding */
    transition: color 0.3s ease-in-out;
    position: relative;
    font-size: 16px; /* Slightly smaller font */
}

/* Underline animation on hover */
.side-menu .menu-items p a::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 3px;
    width: 0%;
    height: 2px; /* Thinner underline */
    background: #f68108;
    transition: width 0.3s ease-in-out;
}

.side-menu .menu-items p a:hover::after {
    width: 70%;
}

/* Active state */
.side-menu .menu-items p a.active {
    color: #466ECE;
    background: rgba(0, 123, 255, 0.08);
    border-left: 3px solid #466ECE; /* Slightly thinner border */
    padding-left: 12px; /* Adjust padding to align */
    font-weight: 600;
}

/* Smooth transition for active state */
.side-menu .menu-items p a.active::after {
    width: 70%;
}


.side-menu .menu-items ul li{
    list-style: none;
}
/* Social icons inside side menu */
.side-menu .menu-social-icons {
   
    bottom: 120px; /* Place above the appointment button */
    left: 50%; /* Center horizontally */
   display: block;
    text-align: center; /* Align icons in the center */
    width: 90%; /* Limit width */
}

.side-menu .menu-social-icons a {
    display: inline-block; /* Inline for spacing */
    margin: 0 8px; /* Add spacing between icons */
    color: #333; /* Icon color */
    font-size: 18px; /* Icon size */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.side-menu .menu-social-icons a:hover {
    color: #466ECE; /* Change icon color on hover */
}
/* Hero section  */
/* Hero Section */
.hero-section {
  width: 100%;
  background-image: url('img/hero-section-bg.webp'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
}

.hero-content-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.658);
  padding: 10rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.hero-inner {
  max-width: 1000px;
  width: 100%;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFFFFF;
}

.hero-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #466ECE;
  background-color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 8rem 1rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section h2 {
    font-size: 1.4rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-button {
    font-size: 14px;
  }
}
/*-------------------founders journey-----------------*/
.founder-journey-section {
  background-color: #466ECE;
  padding: 30px 1rem;
  text-align: center;
}

.founder-journey-section h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder-journey-section p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

  /*----------------tabs css-------------------*/
  .phase-tabs-section {
    background-color: #ffffff;
    color: #222;
    padding: 2rem clamp(1rem, 5vw, 4rem);
  }

  .tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .tabs-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    
  justify-content: center; /* This centers the tab buttons */
  }

  .tab-button {
    background: #f2f2f2;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-content: center;
  }

  .tab-button:hover,
  .tab-button.active {
    background: #466ECE;
    color: #fff;
  }

  .tabs-content {
    background: #f9f9f9;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    border-radius: 12px;
  }

  .tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .tab-panel.active {
    display: block;
  }

  .tab-panel h3 {
    font-size: 28px;
    font-weight: 500;
    color: #466ECE;
    margin-bottom: 1rem;
  }

  .tab-panel p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    
  }

  .tab-panel ul {
    list-style: disc inside;
    padding-left: 1rem;
  }

  .tab-panel li {
    margin-bottom: 0.5rem;
    font-size: 16px;
  
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .tab-short {
    display: none;
  }
  
  .tab-full {
    display: inline;
  }
  
  @media (max-width: 768px) {
    .tab-short {
      display: inline;
    }
    .tab-full {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .tabs-menu {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    }
  
    .tab-button {
      flex: 0 0 auto; /* Prevent shrinking */
      white-space: nowrap;
    }
    .tab-button {
      padding: 0.5rem 0.75rem; /* Or use padding: 0; for no padding at all */
    }
  }
  
  /*--------------------------practice section modren-----------------------------*/
  .practice-section-modern {
    background-color: #fdfdfd;
    padding: 2.5rem clamp(2rem, 6vw, 6rem);
    /* display removed to ensure it's visible on all screens */
  }
  
  .practice-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .practice-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .practice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .practice-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-left: 6px solid #466ECE;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
  }
  
  .practice-item:hover {
    border-left-color: #E7943C;
  }
  
  .practice-item .dot {
    width: 12px;
    height: 12px;
    background-color: #466ECE;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
  }
  
  .practice-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.3rem;
  }
  
  .practice-item p {
    font-size: 16px;
   
    margin: 0;
    line-height: 1.5;
  }
  
  /* Optional: make grid 1 column on smaller screens */
  @media (max-width: 768px) {
    .practice-list {
      grid-template-columns: 1fr;
    }
  }
  
  
 /*simulation. scale section desktop*/
 .simulation-intro-section {
  background-color: #466ECE;
  padding: 40px 0;
}

.simulation-intro-section h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.simulation-intro-section p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

  /*what What You’ll Take Home*/
  .takehome-mobile-css {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
    display: none;
  }
  
  .takehome-css-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .takehome-css-title {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    color: #23395b;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .takehome-css-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .takehome-css-list li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #f7f9fc;
    border-left: 4px solid #F28C28;
    padding: 0.8rem 1rem 0.8rem 2rem;
    margin-bottom: 1rem;
    border-radius: 6px;
  }
  
  .takehome-css-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #E7943C;
    border-right: 2px solid #E7943C;
    transform: translateY(-50%) rotate(45deg);
  }
  
  @media (max-width: 767px) {
    .takehome-mobile-css {
      display: block;
    }
  }
  /*CTA for mobile*/
  .cta-mobile-section {
    background-color: #466ECE;
    padding: 3rem 1.5rem;
    color: #fff;
    display: none;
  }
  
  .cta-mobile-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-mobile-content h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-mobile-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #E7943C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #E7943C;
  }
  
  @media (max-width: 767px) {
    .cta-mobile-section {
      display: block;
    }
  }
/*-----------------------decisions-growth-desktop--------------------------------*/
/* General Section Styling */
.decisions-growth-desktop {
  padding: 30px 10px;
  background: linear-gradient(135deg, #eef2f7, #ffffff);
}

.decisions-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.decisions-heading {
  font-size: 32px;
  font-weight: 500;
  
  margin-bottom: 10px;
}

.decisions-subtext {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Kanban Grid */
.kanban-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.kanban-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 220px;
}

.kanban-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon */
.kanban-icon {
  margin-bottom: 20px;
}

.kanban-icon svg {
  width: 48px;
  height: 48px;
}

/* Content */
.kanban-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.kanban-content p {
  font-size: 16px;
  text-align: center;
  max-width: 260px;
}

/* Responsive */
@media (max-width: 1024px) {
  .kanban-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .kanban-grid {
    grid-template-columns: 1fr;
  }

  .decisions-heading {
    font-size: 2rem;
  }

  .kanban-card {
    height: 200px;
  }

  .kanban-icon svg {
    width: 30px;
    height: 30px;
  }

  .kanban-content h3 {
    font-size: 1.2rem;
  }

  .kanban-content p {
    font-size: 0.9rem;
  }
}

  /*------------------------------By the End, You’ll Walk Away With------------------------------*/
  .walkaway-section {
    background-color: #f2f6ff;
    padding: 3rem 3rem;
    display: block; /* Changed from 'none' to 'block' */
  }
  
  .walkaway-container {
    max-width: 1100px;
    margin: 0 auto;
    color: #23395b;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  @media (min-width: 1024px) {
   
  
    .walkaway-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }
  
  /* Left side */
  .walkaway-left {
    flex: 1.2;
    padding-right: 2rem;
  }
  
  .walkaway-heading {
  
    font-size: 32px;       /* updated */
    font-weight: 500;      /* updated */
    margin-bottom: 3rem;
              /* updated */
    text-align: left;      /* updated */
  }
  
  .walkaway-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    border-left: 3px solid #E7943C;
    padding-left: 2rem;
  }
  
  .walkaway-item {
    position: relative;
    padding-left: 1rem;
  }
  
  .walkaway-item .dot {
    position: absolute;
    left: -2.2rem;
    top: 0.3rem;
    width: 16px;
    height: 16px;
    background-color: #E7943C;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #E7943C;
  }
  
  .walkaway-item p {
    font-size: 16px;   /* updated */
    font-weight: bold; /* updated */
    margin: 0;
    line-height: 1.5;
  }
  
  /* Right side */
  .walkaway-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
  }
  
  .signup-form-box {
    background-color: #466ECE;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  .signup-form-box h3 {
  
    text-align: center;
  }
  
  .signup-form-box form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  
  /*-------------------------audience-section*/
  .audience-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
  }
  
  .audience-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .audience-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .audience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .audience-entry {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background-color: #E7943C;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }
  
  .audience-entry h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0.5rem;
   
  }
  
  .audience-entry p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    
    line-height: 1.6;
  }
  
  /* Responsive layout */
  @media (min-width: 768px) {
    .audience-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .audience-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /*--------------cta desktop------------------------*/
  .cta-section {
    background-color: #466ECE; /* Dark navy as new background */
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .cta-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* h2 heading */
  .cta-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Paragraph text */
  .cta-subtext {
    font-size: 17px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 2rem;
  }
  
  /* CTA button */
  .cta-button {
    display: inline-block;
    background-color: #E7943C; /* Fresh orange */
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #E7943C;
  }
 /* Testimonial Section */
.testimonial-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;

}

.blockquote {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
 
  margin-bottom: 2rem;
}

.blockquote-footer {
  font-size: 1rem;
  color: #777;
  font-style: italic;
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ddd;
  margin-top: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonial-image img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .testimonial-title {
      font-size: 1.5rem;
  }

  .blockquote {
      font-size: 1rem;
  }
}
/* Set padding for the FAQ section only */
.accordion-section {
  padding: 4rem 1rem;
}

/* Center the top heading and apply font styles */
.accordion-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}

/* Accordion header buttons */
.accordion-button {
  font-size: 16px;
  font-weight: 700;
}

/* Accordion body text */
.accordion-body {
  font-size: 16px;
  font-weight: 400;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Adjust side menu */
    .side-menu {
        width: 85%;
        max-width: 260px; /* Slightly narrower */
        height: 100vh;
        padding: 5px; /* Minimal padding */
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    /* Close button (smaller size) */
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 10px; /* Smaller icon */
        cursor: pointer;
    }

    /* Logo */
    .side-menu .logo {
        text-align: center;
        margin-bottom: 5px;
    }

    .side-menu .logo img {
        width: 180px; /* Slightly smaller logo */
        height: auto;
    }

    /* Menu items */
    .side-menu .menu-items {
        text-align: left;
        flex-grow: 1;
        padding: 0; /* No extra padding */
    }

    .side-menu .menu-items p {
        font-size: 12px; /* Smaller text */
        padding-left: 8px; /* Reduced left padding */
        margin: 3px 0;
    }

    .side-menu .menu-items p a {
        font-size: 14px;
        padding: 6px 8px; /* Less padding */
        display: block;
    }

    /* Submenu (Courses) */
    .side-menu .submenu {
        padding-left: 10px;
    }

    .side-menu .submenu li {
        list-style: none;
        padding: 2px 0;
    }

    /* Social icons */
    .side-menu .emnu-social-icons {
        text-align: center;
        margin-top: auto;
        margin-bottom: 3px; /* Even less bottom margin */
    }

    .side-menu .menu-social-icons a {
        font-size: 13px; /* Smaller icons */
        margin: 0 4px;
    }

    /* Button */
    .appointment-button {
        font-size: 12px;
        padding: 6px 10px;
        width: 90%;
        margin: 0 auto 5px; /* Minimum spacing */
        display: block;
    }
    .accordion-section h2 {
      text-align: center;
      font-size: 24px;
      font-weight: 500;
    }
    .accordion-section h2 {
      font-size: 20px;
      font-weight: 500;
  }
  
  .accordion-button h2 {
      font-size: 24px;
      font-weight: 900;
  }
  .walkaway-heading {
  
    font-size: 24px;       /* updated */
    font-weight: 500;      /* updated */
    margin-bottom: 3rem;
              /* updated */
    text-align: center;      /* updated */
  }
}






































/* Footer Styling */
.footer {
    color: #fff;
    background-color: #121a26; /* Dark background */
    padding: 40px 0;
}

footer h5 {
    font-size: 20px;
    font-weight: 500;
}

footer p {
    font-size: 16px;
    font-weight: 400;
}

.footer a {
    color: #fff; /* White links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #121a26;
    background-color: #fff;
    border-radius: 10%;
    padding: 15px;
    display: inline-block;
    margin: 5px;
    font-size: 16px;
}

.powered-by {
    color: #ddd; /* Light gray for powered by text */
    margin-top: 20px;
    font-size: 14px;
}

.powered-by a {
    color: #ddd;
}

.footer .divider {
    width: 100%;
    height: 1px;
    background-color: #ddd; /* Light gray divider */
    margin: 30px 0;
}

