:root {
  --maroon: #4b1f4f;
  --maroon-dark: #3a163d;
  --purple-accent: #8b3dff;
  --white: #ffffff;
  --gray-border: #e6e6e6;
  --circle-gold: #fff
}

/* ========== TOP BAR ========== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--maroon);
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.topbar .container {
  padding: 0px;
}

.topbar-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.topbar-link:hover {
  text-decoration: underline;
}

.topbar-cta {
  background: var(--purple-accent);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}

.topbar-cta:hover {
  background: #7a2df3;
  text-decoration: none;
}

/* ========== MAIN NAVBAR ========== */
.main-navbar {
  position: fixed; /* Fix the navbar at the top */
  top: 20px; /* 20px space from the top */
  left: 0;
  right: 0; /* Ensures it spans the full width */
  width: calc(100% - 200px); /* Full width minus 100px padding from both sides */
  margin: 0 auto; /* Centered horizontally */
  padding: 14px 100px; /* 100px padding on left and right, 14px padding on top and bottom */
  border-radius: 25px;
  padding: 14px 0;
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid var(--gray-border);
  z-index: 999; /* Ensure it's above other content */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow effect */
}


.navbar-brand {
  font-size: 26px;
}

.brand-primary {
  color: var(--maroon);
}

.brand-secondary {
  color: var(--purple-accent);
}

.nav-link {
  color: #2b2b2b;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  border-radius: 15px;
  color: #fff; /* Change text color on hover */
  background-color: var(--maroon); /* Background color on hover */
  padding: 8px 20px; /* Adds padding on hover for a more pronounced button effect */
  cursor: pointer;
}

.navbar-toggler {
  border: none;
}

.navbar-nav .nav-item {
  margin-right: 15px;
}

/* ================= Mobile Adjustments ================= */
@media (max-width: 768px) {
  .topbar .container {
    padding: 8px;
  }

  .main-navbar .container {
    padding: 10px 0;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-right: 10px;
  }

  .navbar-toggler {
    border: none;
  }

  .topbar {
    top: 0;
    left: 0;
    width: 100%;
  }

  .main-navbar {
    left: 0;
    right: 0;
    top:0px;
    width:100%;
    border-radius: 0px;
    background-color: #fff;
    border-bottom: 1px solid var(--gray-border);
    z-index: 999;
  }
}

/* ========== BUTTONS ========== */
.btn-primary-premium {
  background-color: var(--maroon);
  color: var(--white);
  border: none;
  padding: 13px 31px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary-premium:hover {
  background-color: #fff;
  color: black;
}

.btn-search {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #2b2b2b;
}

.btn-search:hover {
  color: var(--maroon);
}

/* ========== MOBILE ========== */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 15px;
  }

  .topbar {
    display: none;
  }
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.0rem;
    }
}

/* LEFT CONTENT */
.hero-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
}

.hero-description {
  font-size: 17px;
  color: rgb(78, 75, 75);
  margin-top: 20px;
  max-width: 520px;
}

.hero-description-home{
  font-size: 17px;
  color: white;
  margin-top: 20px;
  max-width: 520px;
}

.hero-subtext {
  font-size: 15px;
  margin-top: 10px;
  color: white;
}

/* HERO FORM – COMPACT & PROFESSIONAL */
.hero-form {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
}

/* INPUT */
.hero-input {
  flex: 1;
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid #d1d1d1;
  outline: none;
  transition: all 0.2s ease;
}

.hero-input::placeholder {
  color: #999;
}

.hero-input:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(75, 31, 79, 0.08);
}

.hero-wrapper-about{
  position: relative;
  background-color:#D2EBFF;
  background-size: cover; /* This ensures the background image covers the whole section */
  padding-top: 100px; /* Adjusted for space above, including header/nav */
  padding-bottom: 100px;
  color: black; /* Adjust text color to contrast the background */
  /* height: 100vh; Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-wrapper-about .container {
  z-index: 2; /* Make sure the content is on top of the background */
}

@media (max-width: 768px) {
  .hero-wrapper-about {
    position: relative;
    padding-top:20px;
    border-radius: 25px;
    background-color:#D2EBFF;
    background-size: cover; /* This ensures the background image covers the whole section */
    top: 130px; /* Adjusted for space above, including header/nav */
    padding-bottom: 100px;
    color: white; /* Adjust text color to contrast the background */
    /* height: 100vh; Full viewport height */
    display: flex;
  }
}

/* Hero section styling */
.hero-wrapper {
  position: relative;
  background-image:linear-gradient(95deg, #07578C 16.96%, #0E94D8 60.27%, #42F0CD 103.45%);
  background-size: cover; /* This ensures the background image covers the whole section */
  padding-top: 100px; /* Adjusted for space above, including header/nav */
  padding-bottom: 100px;
  color: white; /* Adjust text color to contrast the background */
  /* height: 100vh; Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wrapper .container {
  z-index: 2; /* Make sure the content is on top of the background */
}

@media (max-width: 768px) {
  .hero-wrapper {
    position: relative;
    padding-top:20px;
    border-radius: 25px;
    background-image:linear-gradient(95deg, #07578C 16.96%, #0E94D8 60.27%, #42F0CD 103.45%);
    background-size: cover; /* This ensures the background image covers the whole section */
    top: 130px; /* Adjusted for space above, including header/nav */
    padding-bottom: 100px;
    color: white; /* Adjust text color to contrast the background */
    /* height: 100vh; Full viewport height */
    display: flex;
  }
}

/* BUTTON */
.hero-btn {
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #3a3a3a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-btn:hover {
  background-color: #000000;
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .hero-form .hero-input {
    height: 56px !important;
    font-size: 16px !important;
    padding: 0 22px !important;
    line-height: 56px !important;
  }

  .hero-form .hero-btn {
    height: 56px !important;
    font-size: 16px !important;
  }
}

/* MOBILE STACK */
@media (max-width: 575px) {
  .hero-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }
}


/* RIGHT VISUAL */
.hero-visual {
  min-height: 520px;
}

/* BACKGROUND CIRCLES */
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.circle-maroon {
  width: 380px;
  height: 380px;
  background: #0e3f12;
  top: 40px;
  right: 230px;
}

.circle-gold {
  width: 320px;
  height: 320px;
  background: var(--gold);
  bottom: -40px;
  right: -40px;
}

/* UI CARDS */
.ui-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 18px;
  z-index: 2;
  font-size: 14px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-header a {
  font-size: 12px;
  color: #7a4cff;
  text-decoration: none;
}

/* CARD POSITIONS */
.snapshot-card {
  top: 40px;
  left: 40px;
  width: 300px;
}

.snapshot-card .stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.snapshot-card h3 {
  color: #7a4cff;
  margin-bottom: 2px;
}

.opportunities-card {
  top: 200px;
  left: 0;
  width: 280px;
}

.opportunities-card ul,
.partner-card ul {
  padding-left: 0;
  list-style: none;
}

.opportunities-card li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.partner-card {
  bottom: 40px;
  right: 0;
  width: 260px;
}

.btn-primary-login{
  background-color: #fff;
  color: black;
  border: 2px solid black;
  padding: 13px 31px;
  border-radius: 999px;
  font-weight: 600;
}
/* Adjustments for mobile view */
@media (max-width: 768px) {
  .button-group {
    flex-direction: column; /* Stack the buttons vertically */
    align-items: center; /* Center align buttons */
    gap: 10px; /* Add some space between buttons */
  }

  .btn-primary-login, .btn-primary-premium {
    width: 100%; /* Make the buttons full-width on mobile */
    padding: 15px 0; /* Adjust padding for mobile */
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-heading {
    text-align: center;
    font-size: 34px;
  }

  .hero-description {
    font-size: 17px;
    margin-top: 30px;
    color: rgb(78, 75, 75);
    text-align: center;
    margin-bottom: 30px;
    max-width: 520px;
  }
  .hero-description-home{
    font-size: 17px;
    margin-top: 30px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    max-width: 520px;
  }

  .hero-visual {
    display: none;
  }
}
/* ================= SLIDE-IN ANIMATION (DESKTOP ONLY) ================= */

@media (min-width: 992px) {

  .slide-item {
    opacity: 0;
    transform: translateX(80px);
    animation: slideInRight 0.9s ease forwards;
  }

  .slide-item.delay-1 {
    animation-delay: 0.3s;
  }

  .slide-item.delay-2 {
    animation-delay: 0.7s;
  }

  .slide-item.delay-3 {
    animation-delay: 1.0s;
  }

}

/* Animation Keyframes */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= BRANDS SECTION ================= */

.brands-section {
  padding: 5px 0;
  background-color:#F7F7F7; padding-top:30px;padding-bottom:30px;
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 35px;
  font-weight: 600;
}

/* Slider */
.brands-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: scrollBrands 28s linear infinite;
}

/* Logos */
.brands-track img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brands-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .brands-track {
    gap: 40px;
  }

  .brands-track img {
    height: 34px;
  }
}
.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

.brands-section {
    padding: 20px 0; /* Reduce padding for mobile view */
  }

/* ================= INLINE STATS SECTION ================= */
.stat-icon.purple {
  color: #4B1F4F;
}

.inline-stats-section {
  padding: 90px 0;
  background: #ffffff;
}

.inline-stats-heading {
  font-size: 32px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 60px;
}

.inline-stats-row {
  row-gap: 40px;
}

.inline-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.stat-icon {
  font-size: 26px;
  line-height: 1;
}

.stat-icon.purple {
  color: #4B1F4F; /* purple accent like screenshot */
}

.stat-text {
  text-align: left;
}

.stat-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.stat-text span {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 768px) {
  .inline-stats-heading {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .inline-stats-section {
    padding: 0;
    padding-top: 90px;
    padding-bottom: 50px;
    background: #ffffff;
  }

  .brands-section{
    padding: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .stat-text strong {
    font-size: 18px;
  }
}

/* Scoped styles for the new section */
.custom-info-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.custom-info-section .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-info-section .section-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.4;
}

.custom-info-section .info-column {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.custom-info-section .info-column:hover {
  transform: translateY(-10px);
}

.custom-info-section .info-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.custom-info-section .info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-info-section .info-column ul {
  list-style-type: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
}

.custom-info-section .info-column ul li {
  margin-bottom: 10px;
  color: #f2f2f2;
}

/* Hover effect on icons */
.custom-info-section .info-icon img {
  transition: transform 0.3s ease;
}

.custom-info-section .info-column:hover .info-icon img {
  transform: scale(1.1);
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
  .custom-info-section .container {
    flex-direction: column;
  }

  .custom-info-section .info-column {
    margin-bottom: 20px;
  }
}

/* Styling for each info column */
.info-column {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.info-column:hover {
  transform: translateY(-10px); /* Slight hover effect for interactivity */
}

.info-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.info-column:hover .info-icon img {
  transform: scale(1.1); /* Scale the icon on hover */
}

.info-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-text {
    text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #f2f2f2;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-column {
    margin-bottom: 20px;
  }
}

/* Flexbox layout for aligning the icon and text on the same line */
.elementor-widget-wrap {
  display: flex;
  align-items: center;
  gap: 20px; /* Adds space between the icon and the text */
}

.info-icon {
  width: 40px; /* Icon size */
  height: 40px;
}

/* Optional hover effect on icon */
.elementor-widget-wrap:hover .info-icon {
  transform: scale(1.1); /* Slightly scale the icon on hover */
  transition: transform 0.3s ease-in-out;
}
/* For desktop - add padding to the left and right */
.section-heading {
  padding-left: 150px;
  padding-right: 150px;
}

/* For mobile - remove the padding */
@media (max-width: 768px) {
  .section-heading {
    padding-left: 0;
    padding-right: 0;
  }
}

/* General Styling for CTA Section */
.cta-section {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-stat-image {
  max-width: 100%;
  height: auto;
}

/* Left Section Styling */
.cta-left .cta-icon {
  margin-bottom: 15px;
}

/* Heading and Text Styling for Right Section */
.cta-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 20px; /* Reduce padding for mobile */
  }

  .cta-heading {
    font-size: 18px; /* Adjust heading size for smaller screens */
  }

  .cta-text {
    font-size: 14px; /* Adjust text size for readability */
  }
}

.custom-footer {
  background-color: #1A1D29;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}

.footer-left {
  width: 30%;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
}

.footer-left p {
  font-size: 16px;
  line-height: 1.5;
}

.footer-left a {
  color: #00bcd4;
  text-decoration: none;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-links,
.footer-company {
  width: 30%;
}

.footer-links h4,
.footer-company h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-company ul {
  list-style-type: none;
  padding: 0;
}

.footer-links li,
.footer-company li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-company a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover,
.footer-company a:hover {
  color: #00bcd4;
}

.footer-subscribe {
  width: 30%;
}

.footer-subscribe h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-subscribe p {
  font-size: 16px;
  line-height: 1.5;
}

.subscribe-btn {
  background-color: #00bcd4;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.subscribe-btn:hover {
  background-color: #0098a6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom-company{
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 10px;
}

.footer-bottom-left,
.footer-bottom-right {
  width: 100%;
}

.footer-bottom-left p,
.footer-bottom-right p {
  font-size: 14px;
  color: #888;
}

.footer-bottom-left-company p{
  font-size: 16px;
  color: #fff;
}

.footer-bottom-left p a,
.footer-bottom-right p a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom-left p a:hover,
.footer-bottom-right p a:hover {
  text-decoration: underline;
}

.footer-bottom-right p {
  font-size: 12px;
  color: #888;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-left,
  .footer-links,
  .footer-company,
  .footer-subscribe {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
  }

  .footer-left h2 {
    font-size: 24px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .footer-bottom-left p,
  .footer-bottom-right p {
    font-size: 12px;
  }
}
.social-icon i {
  font-size: 24px; /* Adjust size */
  color: #fff; /* Icon color */
  margin: 0 10px; /* Space between icons */
}

.social-icon i:hover {
  color: #00bcd4; /* Hover color */
}

.blog-section .card {
  border-radius: 15px;
  overflow: hidden;
}

.blog-section .card img {
  object-fit: cover;
  height: 300px;
}

.blog-section .card-body {
  padding: 20px;
}

.blog-section .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}


.blog-section .btn-primary-premium:hover {
  background-color: #fff;
  color:black;
  border-color: #3f51b5;
}

/* Card Styling */
.cta-section .card {
  border-radius: 15px;
  overflow: hidden;
}

.cta-section .card-img-top {
  object-fit: cover;
  height: 250px; /* Adjust height */
}

.cta-section .card-body {
  padding: 20px;
}

.cta-section .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.cta-section .btn-primary {
  background-color: #5c6bc0;
  border-color: #5c6bc0;
}

.cta-section .btn-primary:hover {
  background-color: #3f51b5;
  border-color: #3f51b5;
}

/* Why Choose Us Section Styling */
.why-choose-us-section {
  background-color: #f9f9f9; /* Light background */
  padding: 60px 0; /* Top and bottom padding */
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin: 0 auto 40px; /* Center text */
}

/* Feature Cards Layout */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for card */
  width: 280px; /* Fixed width */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px); /* Slight hover effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}


.feature-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .features {
    flex-direction: column; /* Stack the feature cards vertically on mobile */
    align-items: center; /* Center the cards */
  }

  .feature-card {
    width: 90%; /* Make cards wider on mobile */
    margin-bottom: 20px;
  }
}

/* Success Story Section */
.success-story-section {
    padding: 50px 0;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.who-we-are {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.who-we-are h2 {
    font-size: 24px;
    font-weight: bold;
    color: #3e4a59;
}

.who-we-are h3 {
    font-size: 32px;
    color: #f23a77;
}

.who-we-are h3 span {
    font-weight: bold;
    color: #004f56;
}

.who-we-are p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

.who-we-are .highlighted-text {
    color: #f23a77;
    font-weight: bold;
}

.who-we-are .footer-text {
    font-style: italic;
    color: #f23a77;
    margin-top: 20px;
}

/* Info Cards for Mission, Vision, Values */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background-color: #f23a77;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 18px;
}

.card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are {
        padding: 20px;
    }

    .info-cards {
        flex-direction: column;
    }

    .card {
        padding: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-story-section {
        padding-top: 150px;
    }
    .mb-2{
        font-size: 12px;
    }
    .cta-section-bottom{
      padding-top: 30px;
    }
}

/* General container layout */
.container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Side - Flexbox with modern layout */
.container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
  padding: 20px;
}

/* Vertical line */
.content .left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

/* Details inside the left-side */
.content .left-side .details {
  margin: 14px;
  text-align: center;
}

/* Icon in left-side */
.content .left-side .details i {
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}

/* Text styles */
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

/* Right side adjustments */
.container .content .right-side {
  width: 75%;
  margin-left: 75px;
  padding: 20px;
}

/* Topic text styling */
.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}

/* Input fields */
.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

/* Input and textarea */
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

/* Message box */
.right-side .message-box {
  min-height: 110px;
}

/* Textarea styling */
.right-side .input-box textarea {
  padding-top: 6px;
}

/* Button styling */
.right-side .button {
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #5029bc;
}

/* Media queries for responsiveness */

/* Tablet - Adjust for medium screens */
@media (max-width: 950px) {
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

/* Mobile - Adjust for smaller screens */
@media (max-width: 820px) {
  /* Switch layout to column-reverse on smaller screens */
  .container .content {
    flex-direction: column-reverse;
  }

  /* Left side flex direction and alignment for mobile */
  .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Hide vertical line in mobile view */
  .container .content .left-side::before {
    display: none;
  }

  /* Adjust right side layout for mobile */
  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

/* General Container */
.ready-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.ready-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ready-left {
  width: 45%;
  text-align: left;
}

.ready-text h2 {
  font-size: 30px;
  font-weight: 600;
  color: #3e2093;
  margin-bottom: 15px;
}

.rocket-icon {
  width: 24px;
  margin-left: 10px;
}

.ready-text p {
  font-size: 16px;
  color: #afafb6;
}

.ready-image img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
}

/* Right Form Section */
.ready-right {
  width: 50%;
}

.ready-form {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 16px;
  color: #3e2093;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 8px;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3e2093;
  outline: none;
}

.form-hint {
  font-size: 14px;
  color: #afafb6;
  margin-top: 5px;
}

.form-error {
  color: red;
  font-size: 14px;
}

.form-buttons {
  text-align: center;
}

.btn-submit {
  background-color: #3e2093;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #5029bc;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ready-container {
    flex-direction: column;
    text-align: center;
  }

  .ready-left, .ready-right {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .ready-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 10px 20px;
  }

  .why-choose-us-section-2{
    padding-top:150px;
  }
}

.about-stats {
  background-color: #f9f9f9; /* Light background */
  padding: 60px 0;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stats-box {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  color: black;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: bold;
}

.stat-item p {
  font-size: 18px;
  margin-top: 10px;
}


@media (max-width: 767px) {
  .stats-box {
    flex-direction: column;
  }

  .stat-item {
    margin-bottom: 20px;
  }
}

.digital-ads {
  background-color: #ffffff;
  padding: 60px 0;
}

.digital-ads h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4e4b7f;
}

.digital-ads p {
  font-size: 18px;
  color: #7f7f7f;
}

.icon-box {
  text-align: center;
  margin-bottom: 30px;
}

.icon {
  /* width: 60px; */
  height: 100px;
  margin-bottom: 15px;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-box h4 {
  font-size: 20px;
  color: #4e4b7f;
  font-weight: 500;
}

@media (max-width: 767px) {
  .icon-box {
    margin-bottom: 20px;
  }

  .icon {
    /* width: 50px; */
    height: 80px;
  }

  .digital-ads h2 {
    font-size: 30px;
  }

  .digital-ads p {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 16px;
  }
}

.advertisers-section {
  background-color: #ffffff;
  padding: 80px 260px;
}

.advertisers-section .header {
  margin-bottom: 40px;
}

.advertisers-section .header .label {
  font-size: 18px;
  color: #7e7e7e;
  text-transform: uppercase;
  font-weight: 600;
}

.advertisers-section .header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4b4b4b;
  margin-top: 10px;
}

.advertisers-section .header p {
  font-size: 18px;
  color: #7e7e7e;
  margin-top: 20px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  justify-content: space-between;
}

.service-card {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  /* width: 60px; */
  height: 60px;
  margin-bottom: 20px;
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h4 {
  font-size: 22px;
  color: #4b4b4b;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-card p {
  font-size: 16px;
  color: #7e7e7e;
}

.btn-demo {
  background: linear-gradient(90deg, #f7990d, #f4449d);
  padding: 12px 30px;
  font-size: 20px;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-demo:hover {
  background: linear-gradient(90deg, #f4449d, #f7990d);
}

@media (max-width: 767px) {
  .service-cards {
    flex-direction: column;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .advertisers-section .header h2 {
    font-size: 28px;
  }

  .advertisers-section .header p {
    font-size: 16px;
  }

  .btn-demo {
    font-size: 18px;
    padding: 10px 20px;
  }

  .advertisers-section {
    padding: 80px 0px;
  }
}


.b-lead-form {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

.b-lead-form__form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.b-lead-form__form .form-row {
  margin-bottom: 30px;
}

.b-lead-form__form .form-row .form-group {
  margin-bottom: 20px;
}

.b-lead-form__form .form-control {
  border-radius: 5px;
  padding: 10px;
}

.b-lead-form__form .required {
  color: #e63946;
}

.b-lead-form .c-section-heading {
  margin-bottom: 40px;
}

.b-lead-form .c-section-heading__title {
  font-size: 28px;
  font-weight: bold;
}

.form-check-label {
  flex: 1;
}

.b-lead-form .bg-happy_yellow {
  background-color: #f2c94c;
  height: 3px;
  margin: 10px auto;
}

.form-check-label {
  font-size: 14px;
  color: #6c757d;
}

/* Section Styling */
.expertise-section {
  background-color: #f8f9fa; /* Light background */
  padding-top: 80px; /* Adjust for spacing */
  padding-bottom: 80px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Feature Card Styling */
.feature-card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  width: 100%;
  max-width: 300px; /* Set a max width for the feature cards */
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px); /* Slight hover effect */
}

.icon {
  margin-bottom: 1.5rem;
}

.feature-card img {
  max-height: 60px;
  width: auto;
}

h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .feature-card-group {
    display: flex;
    justify-content: space-between;
  }
}

/* Section Styling */
.publishers-struggle {
  background-color: white; /* Light background for the section */
  padding-top: 80px; /* Top padding for spacing */
  padding-bottom: 80px; /* Bottom padding for spacing */
}

.publishers-struggle-growth{
  background-color: #F9F9F9; /* Light background for the section */
  padding-top: 80px; /* Top padding for spacing */
  padding-bottom: 80px; /* Bottom padding for spacing */
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.struggle-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* To ensure content wraps on smaller screens */
}

.struggle-left {
  flex: 1;
  padding-right: 30px; /* Right padding to give space */
  text-align: left;
}

.struggle-left h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.struggle-left p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
}

.struggle-list {
  list-style-type: none;
  padding-left: 0;
}

.struggle-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.struggle-list li::before {
  content: "\2022"; /* Bullet point */
  color: #086ad8; /* Blue color for bullets */
  font-size: 1.5rem;
  margin-right: 10px;
}

.struggle-right {
  flex: 1;
  text-align: center;
}

.struggle-right img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .struggle-inner {
    flex-direction: column; /* Stack the content on small screens */
    text-align: center; /* Center align the text on smaller screens */
  }

  .struggle-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .struggle-right img {
    max-width: 80%; /* Adjust image size for mobile */
  }
}
