/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../font/Mona_Sans/Mona-Sans.woff") format("woff"),
    url("../font/Mona_Sans/Mona-Sans.woff2") format("woff2");
}

@font-face {
  font-family: "Mona Sans Regular";
  src: url("../font/Mona_Sans/WOFF/Mona-Sans-Medium.woff") format("woff"),
    url("../font/Mona_Sans/WOFF/Mona-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Mona Sans Light";
  src: url("../font/Mona_Sans/WOFF/Mona-Sans-Light.woff") format("woff");
}

body {
  font-family: "Mona Sans", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;         
  padding-left: 4rem;        
  padding-right: 4rem;
  padding-bottom: 2rem;      
  gap: 2rem;                 
  margin: 0 auto;           
  max-width: 1440px;
  width: 100%;
}

.navbar > a {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Logo container */
.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
}

/* Center capsule menu */
.navbar-center {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.5rem;     
  width: 100%;
  max-width: 900px; 
  display: flex;
  justify-content: center;
  flex: 1;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; /* Equal spacing between items */
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Menu items */
.menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Links and buttons inside menu */
.menu-item > a,
.menu-item > button {
  padding: 10px 15px;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

/* Optional hover effect */
.menu-item > a:hover,
.menu-item > button:hover {
  color: #F88602;
}

.dropdown-toggle {
  /* display: block; */
  padding: 10px;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 999;
  white-space: normal;
  padding: 15px;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Show dropdown-menu only when hovering over .dropdown-toggle */
.dropdown-toggle:hover .dropdown-menu {
  display: flex !important;
}

.menu-item:hover .dropdown-menu {
  display: flex;
  flex-wrap: nowrap; /* ensure columns stay side by side */
}

.column {
  display: flex;
  flex-direction: column;
  min-width: 150px; /* optional to keep columns aligned */
}

.two-columns {
  display: flex;
  gap: 20px;
  padding: 15px;
}

.column a {
  display: block;
  padding: 5px 0;
  color: black;
  text-decoration: none;
}

.dropdown-menu .column {
  display: flex;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}


.vertical-menu {
  display: flex;
  flex-direction: column;
  min-width: 150px; /* adjust as needed */
}

.vertical-menu a {
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.vertical-menu a:hover {
  background-color: #f0f0f0;
}

.navbar-right {
  padding: 0;
}
/* Contact button */
.contact-btn {
  background: #F88602;
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
}

.get-started-btn {
  padding: 10px 60px 10px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-style: normal;
  /* font-weight: 400; */
  font-size: 16px;
  line-height: 15px;
  color: #000000;
  background-color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;  
}

.get-contact-btn {
  padding: 12px 60px 10px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-style: normal;
  /* font-weight: 400; */
  font-size: 16px;
  line-height: 15px;
  /* color: #000000; */
  color: #ffffff;
  background-color: transparent;
  position: relative;
}

.get-started-btn .get-started-text {
  font-style: normal;
  /* font-weight: 400; */
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  color: #000000;
}

.get-started-icon {
  margin-left: 30px;
  padding: 10px 8px;
  border-radius: 25px;
  background-color: #F88701;
  position: absolute;
  height: 42px;
  width: 42px;
  display: inline-flex;
  justify-content: right;
  align-items: center;
  right: 0;
  top: 0;
  z-index: -1;
}

.get-started-btn:hover .get-started-icon {
  width: 100%;
  color: #ffffff;
  border-radius: 25px;
  justify-content: right;
  background-color: #F88701;
}

.get-contact-btn:hover .get-started-icon {
  width: 100%;
  color: #ffffff;
  border-radius: 25px;
  justify-content: right;
  background-color: #F88701;
}

.get-contact-btn:hover .contact-text {
  color: #ffffff;
}

.get-started-btn:hover .get-started-text {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
  }

  .navbar-center {
    max-width: 100%;
  }

  .menu {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .navbar-center {
    width: 100%;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.video-section {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  z-index: 0;
}

/* Make background images more visible and bigger */
.video-section::before,
.video-section::after {
  content: "";
  position: absolute;
  padding: 20px;
  top: 0;
  width: 500px; /* Increase width */
  height: 80%;
  background-repeat: no-repeat;
  background-size: cover; /* Make them fill the area */
  background-position: top;
  opacity: 1; /* Increase opacity */
  pointer-events: none;
  z-index: 0;
}

.video-section::before {
  left: 0;
  background-image: url("../images/home-left-bg.png"); /* Your left background */
}

.video-section::after {
  right: 0;
  background-image: url("../images/home-right-bg.png"); /* Your right background */
}

/* header inside video-section */
.video-header {
  text-align: center;
  padding: 60px 20px 30px;
  position: relative;
  z-index: 1; /* stay above background */
}

.video-header a {
  margin: 0;
}

.video-header h1 {
  font-size: 64px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0%;
}

.video-header h6 {
  margin: 0 auto 30px;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 0%;
  max-width: 920px;
  padding-top: 3vh;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px; /* Increased spacing between items */
  flex-wrap: wrap;
  margin-top: 40px; /* Optional: space above features */
  margin-bottom: 60px; /* More space below */
}

.feature {
  display: flex;
  align-items: center;
  gap: 20px; /* More gap between icon and text */
  font-size: 20;
  font-weight: 600;
  padding-left: 40px; /* Vertical padding for more spacing */
}

.feature span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;      /* Increased size */
  height: 20px;
  background: orange;
  border-radius: 50%;
  position: relative;
  font-size: 14px;  /* Adjusted font size */
  color: white;     /* Move color here for ::after */
}

.feature span::after {
  content: "✓";
  position: static;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #F88602;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: darkorange;
}

/* video container styling with yellow border and rounded corners */
.video-container {
  max-width: 80%;
  margin: 40px auto;
  border: 6px solid #FFE89E; /* yellow border */
  border-radius: 20px;
  border-width: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1; /* above background */
}

/* make video fill the container */
.video-container video {
  width: 100%;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-header h1 {
    font-size: 32px;
  }
  .video-header h6 {
    font-size: 18px;
  }
  .video-section::before,
  .video-section::after {
    width: 250px;
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  .video-header h1 {
    font-size: 26px;
  }
  .video-header h6 {
    font-size: 16px;
  }
  .features {
    gap: 12px;
  }
  .feature {
    font-size: 0.95rem;
  }
}

.accelerators-section {
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.accelerators-section h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
}

.accelerators-section .subheading {
  font-size: 24px;
  color: #525252;
  margin: 0 auto 50px;
  font-weight: 500;
}

.accelerators {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Cards layout */
.accelerator-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Make grid items stretch to equal height */
}

.accelerator-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  text-align: center;
  height: 100%; /* full height for grid item */
}

/* Icon stays fixed size and above */
.accelerator-card .icon img {
  height: 80px;
  width: auto;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;

  filter: invert(42%) sepia(78%) saturate(746%) hue-rotate(-5deg) brightness(103%) contrast(101%);
}

/* Content fills the remaining space */
.accelerator-card .content {
  background: linear-gradient(135deg, #fff176 50%, #ffee58 50%);
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  flex-grow: 1; /* fill vertical space */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* center content vertically */
}


.accelerator-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #262626;
}

.accelerator-card p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 18px;
  margin-bottom: 10px;
  padding-top: 0;
  color: #525252;
}


.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, #fff176 50%, #ffee58 50%);
  border-radius: 80px 30px 80px 30px; /* TL, TR, BR, BL */
  padding: 30px 20px;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 60px;
  font-weight: 00;
  margin: 0 0 8px;
  color: #262626;
}

.stat p {
  font-size: 18px;
  margin: 0;
  font-weight: 100;
  color: #525252
  
}

/* Responsive: 2 columns on small screens */
@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
}


/* Container section */
.ai-section {
  position: relative;
  background: #000;
  border-radius: 60px;
  padding: 60px 20px;
  overflow: hidden;
  text-align: center;
}

/* Wavy background overlay */
.wave-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/ai-background.png") no-repeat center/cover;
  opacity: 1;
  z-index: 0;
}

/* Content wrapper to keep text above background */
.content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.content-wrapper h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.content-wrapper-subheading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200;
  font-style: normal;        /* 'Regular' corresponds to normal */
  font-size: 20px;
  line-height: 119%;         /* 119% of the font size */
  letter-spacing: 0;
  text-align: center;
  padding-top: 20px;
  margin: 0;          /* reset default margins */
  padding: 20px 0 0 0;
  color: #FFFFFF;
}

/* Subtitle */
.content-wrapper h3 {
  font-size: 33;
  color: #ccc;
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* Grid layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
  gap: 32px; /* Equal spacing between cards */
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto; /* Center the grid */
  align-items: stretch;
  justify-items: center;
  margin-top: 5vh;
  background-color: #000;
}

.card {
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 55px;
  border-bottom-left-radius: 55px;
  overflow: hidden;
  width: 100%;
  max-width: 440px; /* slightly wider card */
  min-height: 320px;
  background-color: #000;
}

.card:hover {
  transform: translateY(-4px);
}

.image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-text {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.card-text h3 {
  font-size: 1.2rem;
  color: #222;
  line-height: 1.3;
  margin: 0 0 12px 0;  /* consistent space below h3 */
  font-weight: 600;
}

.card-text p {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.5;
  margin: 0;
  margin-top: 10px;
  font-weight: 400;
  flex-grow: 1;  /* allows p to stretch and push content evenly if needed */
}

@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}




/* Call to action button */
.cta-button {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 32px;
  margin-top: 10vh;
  margin-bottom: 10vh;
  border-radius: 9999px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ff7000;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .image-container img {
    height: 140px;
  }
}

.outcomes-section {
  position: relative;
  background: #fff;
  padding: 80px 20px; /* increased top/bottom padding */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px; /* slightly wider */
  background: url('/assets/images/outcome-bg.png') no-repeat left center;
  background-size: contain; /* better scaling */
  opacity: 1; /* slightly more subtle */
  z-index: 0;
}

.content-container {
  max-width: 1100px; /* wider container */
  width: 100%;
  z-index: 1;
  text-align: center;
  padding: 0 15px;
}

.content-container h2 {
  font-size: 32px; /* bigger heading */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-container p {
  font-size: 18px; /* larger paragraph */
  color: #333;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.outcome-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px; /* increased space between cards */
}

.outcome-card {
  flex: 0 1 240px; /* slightly wider cards */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px; /* increased padding */
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
}

.outcome-card img {
  width: 72px; /* increased image size */
  height: 72px;
  margin-bottom: 60px; /* more spacing below image */
  object-fit: contain;
}

.outcome-card h3 {
  font-size: 20px; /* bigger title */
  font-weight: 700;
  margin: 0 0 12px 0;
}

.outcome-card p {
  font-size: 16px;
  margin: 0;
  max-width: 220px;
  line-height: 1.4;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .outcome-cards {
    gap: 35px;
  }

  .outcome-card {
    flex: 0 1 45%; /* two per row */
  }

  .outcome-card img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .outcome-cards {
    gap: 25px;
  }

  .outcome-card {
    flex: 0 1 100%; /* full width on small screens */
  }

  .content-container h2 {
    font-size: 26px;
  }

  .content-container p {
    font-size: 16px;
  }
}




.partners-section {
  position: relative;
  background: #000;
  border-radius: 60px;
  padding: 60px 20px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.partners-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-section h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  color:#FFFFFF;
}

.partners-section p {
  font-size: 22px;
  font-weight: 400;
  color: white;
}


.logos-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.logo-card {
  width: 200px;
  height: 100px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

/* Optional: Add a nice hover effect */
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Optional: For single logo row center alignment */
.single-logo {
  justify-content: center;
}

.partner-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0; /* Vertical spacing for the image */
}

.partner-image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.project-cta {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional: darkens video for better readability */
  z-index: -1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.cta-content h2 {
  font-size: 50px;
  margin-bottom: 16px;
  color:#FFFFFF;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 24px;
}


.cta-button {
  background-color: #ff8906;
  color: #fff;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background-color: #e77800;
}



.footer-container {
  background-color: #F6F6F6;
  padding-top: 30px;
}

/* Custom Footer */
.custom-footer {
  background: white;
  border-radius: 50px;
  padding: 40px;
  max-width: 95%;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: sans-serif;
}

/* Top Section */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 40px 30px 40px;
  margin-bottom: 0;
  background-color: #ffffff;
}

.footer-top p,
.footer-top h4,
.footer-top div {
  margin-bottom: 0;
}

/* Brand & Socials */
.footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 20px;
  margin-top: 12px;
  color:  #C7CCD3;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.02em;
  padding-bottom: 20px;
}

.footer-socials a {
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
  padding-top: 8px;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(1.5);
  transition: 0.3s;
}

.footer-socials a:hover img {
  transform: scale(1.1);
  filter: none;
}

/* Services Links */
.footer-services {
  display: flex;
  flex: 3 1 600px;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 60px;
}

.service-column {
  flex: 1 1 150px;
}

.service-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: black;
  padding-bottom: 5px;
  font-weight: 600;
}

.service-column a {
  font-family: 'Mona Sans Light';
  display: block;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.01em; /* 2% of current font size */
  color: #000000;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s;
}


.service-column a:hover {
  color: black;
  text-decoration: underline;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 !important;
  padding: 0;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px;
  border-top: 1px solid #eee;
  border-radius: 30px;
  gap: 30px;
}

.footer-left {
  flex: 1;
  min-width: 200px;
}

.footer-left p {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.02em; /* 2% of current font size */
  color: #C7CCD3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  min-width: 100px;
}

.contact-info,
.address-info {
  min-width: 200px;
}

.contact-info h4 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6; 
  letter-spacing: 0.02em;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info p,
.address-info p {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 300; /* Regular */
  font-size: 16px;
  line-height: 1.6; /* 160% */
  letter-spacing: 0.02em; /* ~2% of font-size */
  color: #121212;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s;
}

/* Address Line Icons */
.address-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  padding-top: 15px;
}

.address-line .icon {
  width: 20px;
  height: 20px;
}

.address-line span {
  font-size: 12px;
  font-weight: 400;
  color: #323232;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-footer {
    padding: 24px;
    border-radius: 30px;
  }

  .footer-top {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer-services {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }

  .service-column {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 150px;
  }

  .footer-socials a img {
    width: 20px;
    height: 20px;
  }

  .footer-right {
    min-width: unset;
  }

  .contact-info,
  .address-info {
    min-width: unset;
    width: 100%;
  }
}

.footer-brand {
  text-align: left;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start; /* Force left alignment */
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Optional: makes them rounded */
  transition: transform 0.2s;
}

.footer-social-icons a:hover {
  transform: scale(1.1); /* Hover effect */
}

.footer-social-icons i,
.footer-social-icons .social-img {
  font-size: 28px;
  height: 28px;
  width: 28px;
  object-fit: contain;
}