/* styles.css */
body {

        font-family: arimo;

    /* font-family: 'Roboto', sans-serif;   */
    margin: 0;
    padding: 0;
    font-size: 16px;
     cursor: url('img/cursor.png'), default;
}


p {
      line-height: 1.6;
}

h2 {
    letter-spacing: 1px !important;
    color: #1c2b33;
}

h2 {
  
   font-size: 2.2rem !important;
    font-weight: 550 !important;
    margin: 15px 0 !important;
    line-height: 40px !important;
  
  }


  /* h2 {
  text-transform: uppercase;
} */


h1 { 
    letter-spacing: 1px;
}



h3 {
    margin: 0;
    font-size: 24px;
    color: #1c2b33;
    font-weight: 600;
}




/* Hide scrollbar for Chrome, Safari, and Edge */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
body, .your-scrollable-element {
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* Internet Explorer 10+ */
}

.mp-py-20 {
    padding-top: 2rem;
}


/* ::-webkit-scrollbar {
  width: 10px;             
  height: 10px;         
}

::-webkit-scrollbar-track {
  background: #fc75cf;
}

::-webkit-scrollbar-thumb {
  background: #afe950;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #62e9507c;
} */





/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===============================
   HEADER BASE STYLES
=============================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
   
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
}

/* Limit inner content */
.site-header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}



.site-header.scrolled {
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.container {
  max-width: 90%;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO
=============================== */

.logo {
  z-index: 9999;
}
.logo img {
  height: 40px;
  display: block;
}

/* ===============================
   DESKTOP NAVIGATION
=============================== */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}





.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #7f51ff;
}

/* ===============================
   CTA BUTTON
=============================== */
.cta-button .btn-cta {
  padding: 10px 28px;
  background-color: #afe950;
  color: black;
  position: relative;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 9999;
}

.cta-button .btn-cta:hover {
  background-color: #7f51ff;
  /* border: 2px solid #7f51ff; */
  color: rgb(255, 255, 255);
  font-weight: 300;
}

/* ===============================
   MOBILE MENU TOGGLE
=============================== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ===============================
   MOBILE SLIDE PANEL
=============================== */
.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #111;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 2000;
}

.mobile-panel.active {
  right: 0;
}

.mobile-panel .close-btn {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  text-align: right;
}

.mobile-panel ul {
  list-style: none;
  padding: 0;
}

.mobile-panel li {
  margin: 20px 0;
}

.mobile-panel a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
}





/* @media (max-width: 768px) {
  :is(.nav, .cta-button):first-of-type {
    display: none;
  }
} */




/* =
==============================
   RESPONSIVE BREAKPOINTS
=============================== */
@media (max-width: 768px) {
  .nav,
  .cta-button {
    display: none;
  }





  .menu-toggle {
    display: block;
  }
}
/* ===============================
   FULL EDGE-TO-EDGE MEGA MENU
=============================== */
.mega-dropdown {
  position: static;
}

.mega-dropdown .mega-menu {
  display: none;
  position: fixed;
  top: 20px;
  left: 0px; /* start from absolute left */
  right: 0px; /* end at absolute right */
  width: 100vw; /* cover full viewport width */
margin-left: calc(11% - 29vw);
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  padding: 60px 70px;
  max-width: 1300px;
}



.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Content area centered within full width */
.mega-menu .mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4px 60px;
}

.mega-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 0px 0;
  transition: color 0.3s ease;
}

.mega-menu ul li a:hover {
  color: #afe950;
}



/* Mega Menu (Full Width) */
.mega-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  padding: 60px 10%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-column {
  flex: 1;
  min-width: 180px;
}

.mega-column h4 {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 10px;
}

.mega-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.mega-column ul li a:hover {
  color: #afe950;
}



/* About CSS */

.impact-section {
  position: relative;
  background: url(https://themes.boldway.agency/deep/maindemo/wp-content/uploads/sites/27/2025/08/mainhomedeep.jpg) no-repeat center center / cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
  z-index: 0; /* Important: so the ::before doesn't go under the whole page */
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3d1c324b; 
  z-index: 0; 
}

.impact-overlay {
  position: relative;
  z-index: 1; /* 👈 Ensures this appears above the overlay */
  padding: 80px 20px;
  border-radius: 8px;
  display: inline-block;
}

.subtitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.impact-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: white;
}

.impact-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ccc;
}

.impact-btn {
  padding: 14px 30px;
  border: 2px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.impact-btn:hover {
  background: #fff;
  color: #000;
}





.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: "Open Sans";
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for content */
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}





::selection {
  color: #7f51ff;
  background-color: #afe950;
}


/* App Development */

.text-yellow-300 {
  color: #afe950 !important;



                        color: #afe950;
                        color: #fc75cf;
                        color: #115cfa;
                        color: #000000;
                        color: #f8fafc;
}





.fa-vector-square:before {
  color: #7f51ff;
}

.fa-yelp:before {
  color: #7f51ff;
}

.fa-react:before {
  color: #7f51ff;
}







.call-button .btn-call {
  padding: 10px 28px;
  background-color: #afe950;
  color: black;
  position: relative;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 9999;
}

.call-button .btn-call:hover {
  background-color: #7f51ff;
  /* border: 2px solid #7f51ff; */
  color: rgb(255, 255, 255);
  font-weight: 300;
}