
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans', sans-serif;
}

html, body {
  scroll-behavior: smooth;
}
.quiz-h1,
#quizContainer,
.fade-up {
  opacity: 1 !important;
  transform: none !important;
}


@media (max-width: 1024px) {
  .nav-links .form-btn,
  .nav-links #profileBtn {
    background: none;
    border: none;
    color: white;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .nav-links .form-btn:hover,
  .nav-links #profileBtn:hover {
    color: #00e676;
  }
}


#profileBtn {
  background-color: transparent;
  color: white;
  border: none;
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* section navigation  */

.section-nav {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10000;
}

.section-dot {
  width: 14px;
  height: 14px;
  background-color: #666;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}

.section-dot:hover {
  background-color: #00e676;
}

.section-dot.active {
  background-color: #00e676;
  box-shadow: 0 0 10px #00e676;
}

.section-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  background: #1b1b1b;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.section-dot:hover::after {
  opacity: 1;
}


/* section navigation  */

/* woek with us  */

.work-submenu {
  position: relative;
}

.work-submenu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1b1b1b;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  border: 1px solid #333;
  z-index: 999;
}

.work-submenu .dropdown li a {
  display: block;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
}

.work-submenu .dropdown li a:hover {
  color: #00e676;
}

/* show on hover */
.work-submenu:hover .dropdown {
  display: block;
}
.work-submenu a{
  color: white;
  text-decoration: none;
}
.work-submenu a:hover{
  color: #00e676;
}

@media (min-width: 1025px) {  /* hover ke liye */
  .work-submenu:hover .dropdown {
    display: block;
  }
  .submenu-toggle {
    display: none;
  }
}


/* mobile style */
@media (max-width: 1024px) {
  .work-submenu .dropdown {
    position: static;
    border: none;
    background: #111;
  }
  .work-submenu.active .dropdown {
    display: block;
  }
  .submenu-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 5px;
  }
}
/* woek with us  */

.nav-links .submenu .column:first-child {
  border-left: none !important;
}



html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000000;
}
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.transparent {
  background-color: rgba(0, 0, 0, 0.0);
  backdrop-filter: blur(0);
}

#navbar.solid {
  background: #1b1b1b;
  backdrop-filter: blur(4px);
}

#navbar.solid .search-icon {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* logo  */
.bsa-initial {
display: flex;
align-items: center;
cursor: pointer;
width: 20%;
text-align: left;
}

.bsa-text {
display: inline-block;
overflow: hidden;
white-space: nowrap;
transition: width 0.5s ease;
width: 4.6ch; /* Adjusted for 'BSA.' */
font-size: 34px; /* Fit within 50px navbar */
font-weight: bold;
color: white;
}

.bsa-initial:hover .bsa-text {
width: 11ch; /* Adjusted for 'BSA. Global' */
}

.bsa-text::after {
content: ' Global';
opacity: 0;
transition: opacity 0.5s ease;
}

.bsa-initial:hover .bsa-text::after {
opacity: 1;
}

.dot {
font-size: 74px;
color: #00e676;
position: relative;
left: -23.8px;
margin-top: -29px;
transition: transform 0.5s ease, left 0.5s ease;
}

.bsa-initial:hover .dot {
transform: translateX(-40px); /* Adjusted for the expanded 'Global' */
left: 0;
}
/* logo  */



    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links li {
      position: relative;
      cursor: pointer;
      padding: 8px;
      text-transform: uppercase;
    }

    .nav-links li:hover {
      color: #00e676;
    }

    .submenu {
      position: fixed;
      top: 55px;
      left: 0;
      width: 100vw;
      background: #1b1b1b;
      display: none;
      justify-content: space-between;
      padding: 40px 60px;
      z-index: 999;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      color: white;
    }

    .submenu li a{
      color: white;
      text-decoration: none;
    }
    .nav-links li:hover > .submenu {
  display: flex;
}

    .column {
      flex: 1;
      padding: 0 30px;
      transition: box-shadow 0.3s ease;
    }

    .column:not(:last-child) {
      border-right: 1px solid #444;
    }

    .column h4 {
      margin-bottom: 16px;
      color: #00e676;
      font-size: 18px;
    }

    .column ul {
      list-style: none;
    }

    .column ul li a{
      margin: 8px 0;
      color: #ccc;
      cursor: pointer;
      transition: 0.3s;
    }

    .column ul li a:hover {
      color: #00e676;
    }

 .submenu-card {
  background: #1c1c1c;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}


.submenu-card:hover {
  transform: scale(1.02);
}

.submenu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.submenu-card .card-content {
  padding: 20px;
  text-align: center;
}

.submenu-card h1 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00e676;
}
#navbar:hover{
  background-color: #1b1b1b;
}

.submenu-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 16px;
}

.visit-btn {
  background: #00e676;
  border: none;
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.visit-btn:hover {
  background: #008535b7;
  transform: translateY(-2px);
}

     nav {
      background: #1b1b1b;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      /* position: fixed; */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    .nav-center {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0 auto;
    }

    .nav-center li {
      position: relative;
      cursor: pointer;
      padding: 8px;
      text-transform: uppercase;
    }

    .nav-center li:hover {
      color: #00e676;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-icon {
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.search-icon svg {
  pointer-events: none;
}

    .search-icon:hover {
      background: #c6007e22;
      box-shadow: 0 0 12px #00e676;
      transform: scale(1.08);
    }
    
    .search-icon:hover svg circle,
    .search-icon:hover svg line {
      stroke: #00e676;
    }

    .search-bar {
      position: fixed;
      top: 65px;
      left: 0;
      width: 100vw;
      background: #000000;
      backdrop-filter: blur(12px);
      display: none;
      flex-direction: column;
      padding: 30px 60px;
      border-top: 1px solid #333;
      z-index: 999;
      animation: fadeInDown 0.4s ease;
    }

    .search-bar.active {
      display: flex;
    }

    .search-bar {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-bar.active {
  opacity: 1;
  pointer-events: auto;
}

    .search-bar input {
      width: 60%;
      max-width: 600px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #00e676;
      color: white;
      font-size: 18px;
      border-radius: 50px;
      outline: none;
      margin: 0 auto 30px;
      box-shadow: 0 0 15px #00e676;
    }

    .search-bar input::placeholder {
      color: #ccc;
    }

    .search-columns {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      width: 100%;
    }

    .search-column {
      flex: 1;
      border-left: 1px solid #2a2a2a;
      padding: 0 30px;
    }

    .search-column:first-child {
      border-left: none;
    }

    .search-column strong {
      display: block;
      margin-bottom: 16px;
      font-size: 18px;
      color: #ccc;
    }

    .search-column p {
      font-size: 15px;
      color: #eee;
      margin: 8px 0;
      cursor: pointer;
      transition: color 0.2s;
    }

    .search-column p:hover {
      color: #00e676;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Make search bar responsive */

@media (max-width: 1024px) {
  .search-bar {
    padding: 20px 30px;
    top: 90px;
  }
  
  .search-bar input {
    width: 80%;
    font-size: 16px;
  }

  .search-columns {
    flex-direction: column;
    gap: 20px;
  }

  .search-column {
    border-left: none;
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
  }

  .search-column:first-child {
    border-top: none;
  }
}

@media (max-width: 600px) {
  .search-bar {
    padding: 20px 20px;
    top: 85px;
  }

  .search-bar input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
  }

  .search-column strong {
    font-size: 16px;
  }

  .search-column p {
    font-size: 14px;
  }
}

    
.custom-translate {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  min-height: 50px;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  color: #00e676;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  outline-offset: 2px;
}
#langDropdown {
  position: absolute;
  background: #1b1b1b;
  color: white;
  border: 1px solid #555;
  border-radius: 8px;
  width: 190px;
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  display: none;
  z-index: 9999;
}

#langDropdown.show {
  display: block;
}

#langDropdown li {
  padding: 10px;
  cursor: pointer;
}

#langDropdown li:hover {
  background: #ffffff;
  color: black;
}

#langDropdown li.search-li {
  position: sticky;
  top: 0;
  background: #111;
  z-index: 10000;
  padding: 5px 10px;
}

#langSearch {
  width: 100%;
  padding: 6px;
  background: #222;
  color: white;
  border: 1px solid #555;
  border-radius: 4px;
  outline: none;
}

#langSearch::placeholder {
  color: #ccc;
}

.dropdown-toggle:hover, .dropdown-toggle:focus {
  background-color: #000000;
}

.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dropdown-menu.show + .dropdown-toggle .arrow,
.dropdown-toggle[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
#langDropdown li.highlight {
  background-color: #00e676;
  color: white;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: black;
  border: 2px solid #00e676;
  border-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  z-index: 1000;
  list-style: none;
}

/* Show dropdown */
.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

/* Scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #000;
  border-radius: 8px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #00e676;
  border-radius: 8px;
  border: 1.5px solid #000;
}

.dropdown-menu li {
  padding: 12px 16px;
  color: #00e676;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu li:hover,
.dropdown-menu li:focus {
  background-color: #00e676;
  color: #000;
  outline: none;
}
/* ✅ Google Translate Floating Bar Hide */
.goog-te-banner-frame {
display: none !important;
}
iframe[style*="translate.google.com"] {
display: none !important;
}
iframe {
display: none !important;
visibility: hidden !important;
}
/* ✅ Google Translate Box bhi hide karo */
.goog-te-gadget {
display: none !important;
}

body{
  top: 0 !important;
}



    .hero-deloitte {
  width: 100%;
  height: 100vh;
  background: url('/girl\ green\ bd.png') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  color: white;
  overflow: hidden;
}

.hero-deloitte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.96), rgb(0, 0, 0), transparent);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  color: #eee;
}

.hero-text p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #00e676;
  padding: 12px 24px;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #008535b7;
}

@media (max-width: 768px) {
  .hero-deloitte {
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    
    /* 👇 This is the fix */
    background-position: right center;
  }

  .hero-deloitte::before {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  }

  .hero-text {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text .tagline {
    font-size: 16px;
  }
}


/* quiz */


   .container {
      display: flex;
      flex-direction: row; /* 👈 Default: row layout */
      height: 61vh;
      margin-top: 2vw;
      margin-bottom: 2vw;
    }
    

    .left, .right {
      flex: 1 1 50%;
      padding: 2rem;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .right {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .right img {
      max-width: 100%;
      height: 55vh;
      border-radius: 20px;
      object-fit: cover;
    }

    .quiz-heading {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #00e676;
      text-align: center;
    }

/* QUIZ OPTIONS FIXED UI */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.option {
  display: inline-block;
  background: #1b1b1b;       /* ✅ Matches dark theme */
  color: #fff;                   /* White text */
  font-size: 14px;
  border-radius: 30px;           /* ✅ Slim pill shape */
  padding: 6px 18px;             /* ✅ Slim height */
  width: auto;                   /* ✅ Auto width based on content */
  white-space: nowrap;           /* ✅ Prevent overflow */
  word-wrap: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option:hover {
  background: #00e676;  /* ✅ Green fill on hover */
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(6,146,62,0.3);
}

/* ✅ Responsive tweak */
@media (max-width: 768px) {
  .option {
    font-size: 13px;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .option {
    font-size: 12px;
    padding: 5px 12px;
  }
}


.quiz-h1{
  font-size: 3vw;
  text-align: center;
  color: white;
  
}
@media(max-width: 480px){
  .options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .quiz-h1{
    font-size: 3vw;
  }
  .quiz-h1{
    display: none;
  }
}
@media(max-width: 768px){
  .options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .quiz-h1{
    font-size: 3vw;
  }
  .quiz-h1{
    display: none;
  }
}
@media(max-width:768px){
  #quizContainer {
    height: auto !important;       /* force auto height */
    overflow: visible !important;  /* allow expanding */
  }
  .options {
    max-height: none !important;   /* remove any max-height */
    overflow: visible !important;
  }
}
@media(max-width:820px){
  #quizContainer {
    height: auto !important;       /* force auto height */
    overflow: visible !important;  /* allow expanding */
  }
  .options {
    max-height: none !important;   /* remove any max-height */
    overflow: visible !important;
  }
}
@media(max-width:1024px){
  #quizContainer {
    height: auto !important;       /* force auto height */
    overflow: visible !important;  /* allow expanding */
  }
  .options {
    max-height: none !important;   /* remove any max-height */
    overflow: visible !important;
  }
}


    .results {
      display: none;
      background: #000;
      color: #fff;
      padding: 2rem;
      height: 70vh;
      overflow-y: auto;
    }

    .results h2 {
      color: #00e676;
      margin-bottom: 1rem;
    }

    .results .cards-io {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 1rem;
      overflow-x: auto;
    }

    .results .card-io {
      background: #111;
      border: 1px solid #00e676;
      border-radius: 12px;
      padding: 1.5rem;
      width: 400px;
      height: 400px;
      flex: 0 0 400px;
      box-sizing: border-box;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .results .card-io h3 {
      color: #00e676;
      margin-bottom: 0.5rem;
    }

    .results .card-io p {
      flex-grow: 1;
      font-size: 0.95rem;
      color: #ddd;
    }

    .results .card-io a {
      display: inline-block;
      margin-top: 1rem;
      background: #00e676;
      color: #fff;
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      align-self: flex-start;
    }

    .results .card-io a:hover {
      background: #fff;
      color: #000;
    }

    .results .reset-btn {
      display: inline-block;
      margin-bottom: 1rem;
      background: white;
      color: black;
      padding: 0.6rem 1.5rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .results .reset-btn:hover {
      background: #00e676;
      color: black;
      transform: translateY(-2px);
    }

    .fade {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .fade.show {
      opacity: 1;
    }

    @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

  
/* tablet breakpoint */
@media (max-width:1024px){
  .container {
    flex-direction: column; /* stack left + right vertically */
  }
  .container .left,
  .container .right {
    width: 100%;
  }
}

/* mobile breakpoint */
@media (max-width:768px){
  .container {
    flex-direction: column;
  }
  .container .left,
  .container .right {
    width: 100%;
  }
  .container .right img {
    border-radius: 8px;
  }
}

@media(max-width:768px){
  .card-io {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

/* quiz */
/* Container wrapper to maintain height during transitions */

.filter-h1{
  color: white;
  font-size: 3vw;
  text-align: center;
}
.card-wrapper {
  position: relative;
  padding-bottom: 40px; /* prevents cards overlapping buttons */
  transition: padding 0.4s ease;
}

.card-wrapper {
  min-height: 600px; /* temporary fix */
}

/* Card container with smooth layout */
.card-container-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
  max-width: 1900px;
  transition: all 0.3s ease;
  padding: 0 50px;
}
.card-filterss {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-filterss:hover {
  transform: scale(1.02);
}

.card-filterss.show {
  display: block; /* ✅ only show when JS adds .show */
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.card-filterss img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Force image to fill card */
  display: block;
  transition: transform 0.5s ease;
}


/* Show when matched */
.card-filterss.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.overlay-filter {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(168, 216, 176, 0.185));
  backdrop-filter: blur(12px);
  transform: translateX(30%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  pointer-events: none;
  z-index: 2;
}
.card-filterss:hover .overlay-filter {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

.overlay-filter h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.overlay-filter p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 14px;
}

.overlay-filter a {
  background: #00e676;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.overlay-filter a:hover {
  background: #008535b7;
}

.filter-buttons {
  text-align: center;
  margin: 30px auto;
  flex-wrap: wrap;
}

.filter-buttons button {
  padding: 12px 24px;
  margin: 8px;
  border: none;
  background: #111;
  color: #eee;
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 0 0 #00e676;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: #1a001f;
  color: #fff;
  box-shadow: inset 300px 0 0 0 #00e676;
}


@media (max-width: 768px) {
  .card-container-1 {
    grid-template-columns: repeat(2, 1fr); /* ek row me 2 cards */
    gap: 16px;
    padding: 0 20px;
  }

  .card-filterss {
    height: auto; /* dynamic height */
  }
}
@media (max-width: 768px) {
  .overlay-filter {
    position: absolute;
    inset: 0; /* top right bottom left 0 */
    padding: 12px;
    background: rgba(0, 0, 0, 0.8); /* solid black with opacity for readability */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .card-filterss:hover .overlay-filter {
    transform: translateY(0%);
    opacity: 1;
  }

  .overlay-filter h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .overlay-filter p {
    font-size: 12px;
    margin-bottom: 8px;
    display: none;
  }

  .overlay-filter a {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .card-filterss {
    overflow: hidden; /* important for overlay clip */
    border-radius: 12px;
  }

  .overlay-filter {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
  }
  
  .card-filterss:hover .overlay-filter {
    transform: translateY(0%);
    opacity: 1;
  }
}



.three-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background: #000;
  padding: 60px 40px;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.info-section.reverse {
  flex-direction: row-reverse;
}

.info-img,
.info-content {
  flex: 1;
}

.info-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.15);
}



.info-content h2 {
  font-size: 50px;
  color: #00e676;
  margin-bottom: 16px;
}

.info-content p {
  color: #ccc;
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #00e676;
  border: 2px solid #00e676;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.info-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00e676;
  transition: left 0.4s ease;
  z-index: -1;
}

.info-btn:hover::before {
  left: 0;
}

.info-btn:hover {
  color: white;
  box-shadow: 0 0 12px #00e676, 0 0 20px #00e676 inset;
}

/* Responsive */
@media (max-width: 768px) {
  .info-section,
  .info-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .info-img,
  .info-content {
    width: 100%;
  }
}

@media (max-width:1024px) {
  .info-content h2{
    font-size: 30px;
  }
  .info-content p{
    font-size: 20px;
  }
  .info-content a{
    font-size: 15px;
  }
}

    .container-110 {
  position: relative;
  height: 280vh;
  background: #000;
}

.text-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6vw;
  text-align: center;
  color: #fff;
  z-index: 1; /* BEHIND the boxes */
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.box {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  padding: 20px;
  z-index: 5;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.box:hover {
  transform: scale(1.02);
}

.box-shape path,
.box-shape circle,
.box-shape rect {
  fill: none;       /* koi fill nahi */
  stroke: white;    /* white outline */
  stroke-width: 2;  /* thin outline */
}

/* keep shape on same layer but transition if needed */
.box-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* transition for heading + shape */
.box-heading {
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: transform 0.5s ease;
  z-index: 2;
}


/* content hidden initially at bottom */
.box-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.5s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 ye important */
}

.box-content p {
margin-top: 20px; 
}
.box:hover .box-heading {
  opacity: 0;
  z-index: 0; /* 👈 yeh important, peeche bhej dega */
}
.box-content h2 {
  margin-top: 20px;
  font-size: 1.4rem;
}
.box-content p {
  font-size: 1rem;
}
.box-content a {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
    align-self: flex-start; /* button left aligned */
  margin-top: auto; /* 👈 force it to stick to bottom of box-content */
}
.box-content a:hover {
  background: #00e676;
  color: #fff;
}

/* on hover — slide heading + shape up, content up */
.box:hover .box-heading {
  transform: translateY(-100%);
}
.box:hover .box-shape {
  transform: translateY(-100%);
}
.box:hover .box-content {
  transform: translateY(-100%);
}

.box-1 {
  top: 10vh;
  left: 6vw;
  background: linear-gradient(135deg, #000000, #7e8000);
}
.box-2 {
  top: 90vh;
  right: 6vw;
  background: linear-gradient(135deg, #000000, #0bb8b8);
}
.box-3 {
  top: 170vh;
  left: 6vw;
  background: linear-gradient(135deg, #000000, #5c1424);
}


/* tablet and below — same alignment, just shrink boxes */
@media(max-width:1024px){
  .box {
    width: 250px;
    height: 250px;
  }
  #text span{
    -webkit-text-stroke: 1px black;
  }
}

/* mobile — same alignment, smaller boxes */
@media(max-width:768px){
  .box {
    width: 200px;
    height: 200px;
  }
}


/* news slider  */

.news-updates {
  padding: 30px 20px;
  color: white;
  overflow: hidden;
}

.news-heading h2 {
  font-size: 3.8rem;
  margin-bottom: 50px;
  color: white;
  text-align: center;
}


.news-track {
  display: flex;
  gap: 60px;
  align-items: center;
  /* animation: scrollNews 5s linear infinite; */
}
.news-slider {
  overflow: hidden;
  position: relative;
  min-height: 60px;   /* 👈 minimum safe height */
  height: auto;       /* 👈 content ke hisaab se height adjust */
}

.news-item {
  font-size: clamp(14px, 2vw, 20px); /* 👈 responsive font */
  width: auto;                       /* auto width instead of 40% */
  flex: 0 0 auto;
}


.news-item a {
  color: white;
  text-decoration: none;
}

.news-item:hover {
  color: #00e676;
}

@keyframes scrollNews {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* pause on hover */
.news-slider:hover .news-track {
  animation-play-state: paused;
}

@media(max-width: 768px) {
  .news-heading h2 {
    font-size: 1.4rem;
  }
  .news-slider {
    min-height: 60px;
    height: auto;
  }
  .news-item {
    font-size: 14px;
    padding: 6px 10px;
    width: 80%;   /* 👈 ek line me aaram se fit hoga */
  }
}

@media (max-width:480px) {
  .news-item {
    font-size: 12px;
    width: 100%;   /* 👈 small screen full width */
  }
}

/* news slider  */


/* career card with image */

.container0 {
  display: flex;
  width: 100%;
  height: auto;
  background-color:#000000;
  padding: 100px 0;
}

.text-section-20 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.text-content {
  max-width: 600px;
}

.text-content-20 h1 {
  font-size: clamp(2.5vw,2rem,30px);
  font-weight: bold;
  line-height: 1.3;
  color: #00e676;
  margin-bottom: 50px;
}

.links a {
  display: block;
  font-size: 1.8vw;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}

.links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: #00e676; /* dark pink underline */
  transition: width 0.3s ease;
}

.links a:hover {
  color: #00e676;
}

.links a:hover::after {
  width: 19%;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.image-section img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


@media (max-width:768px) {
  .container0{
    display: flex;
    flex-direction: column;
    margin-top: -150px;
  }
  #section32{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .links a{
    font-size: 20px;
  }
  .image-section img{
    width: 90%;
    border: 1px solid white;
  }
}
@media (max-width:1024px) {
  .container0{
    display: flex;
    flex-direction: column;
  }
  #section32{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .links a{
    font-size: 20px;
  }
  .image-section img{
    width: 90%;
    border: 1px solid white;
  }
}
/* career card with image */

/* sucess story */
  :root {
    --bg-dark:#1b1b1b;
    --accent: #0fbf4d; /* green tone */
    --box-max: 880px;
    --transition: .6s cubic-bezier(.25,.8,.25,1);
  }

   .test-h1 {
    margin:0 0 clamp(1.2rem,2.5vw,2.5rem);
    font-size:clamp(1.9rem,5vw,3.2rem);
    line-height:1.1;
    text-align:center;
    background:linear-gradient(90deg,#39ff88,#10a84a 60%,#0b7533);
    -webkit-background-clip:text;
    color:transparent;
    font-weight:700;
    letter-spacing:.5px;
  }

  .testimonial-wrapper {
    width:100%;
    max-width:var(--box-max);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:clamp(1.2rem,2.5vw,2rem);
  }

  .testimonial-box {
    width:100%;
    background:var(--bg-dark);
    border:1px solid #262626;
    border-radius:18px;
    padding:clamp(1.2rem,2.2vw,2rem) clamp(1.2rem,2.2vw,2.2rem);
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px -8px #000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:310px;
  }

  /* Responsive height relax on small devices */
  @media (max-width: 640px) {
    .testimonial-box {
      height:280px;
    }
  }
  @media (max-width: 480px) {
    .testimonial-box {
      height:auto; /* allow growth if content wraps a lot */
      min-height:250px;
    }
  }

  blockquote {
    margin:0;
    font-size:clamp(.95rem,1.3vw + .6rem,1.25rem);
    line-height:1.55;
    font-weight:500;
    letter-spacing:.2px;
    position:relative;
    opacity:0;
    transform:translateY(40px);
    transition:var(--transition);
    color: white;
  }

  blockquote:before {
    content:"“";
    position:absolute;
    left:-.35em;
    top:-.15em;
    font-size:3.5rem;
    line-height:1;
    font-weight:700;
    color:rgba(255,255,255,.08);
    pointer-events:none;
  }

  .author {
    margin:clamp(.75rem,1.2vw,1rem) 0 0;
    font-size:clamp(.75rem,.55vw + .7rem,.9rem);
    font-weight:600;
    letter-spacing:1.5px;
    color:var(--accent);
    opacity:0;
    transform:translateY(40px);
    transition:var(--transition);
  }

  .show {
    opacity:1 !important;
    transform:translateY(0) !important;
  }

  .avatars {
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:clamp(.6rem,1.2vw,1.1rem);
    padding:0;
    list-style:none;
  }

  .avatars li {
    display:flex;
  }

  .avatars button {
    --size:clamp(60px,8vw,94px);
    width:var(--size);
    height:var(--size);
    border-radius:50%;
    padding:0;
    border:2px solid transparent;
    outline:none;
    cursor:pointer;
    position:relative;
    background:#111;
    overflow:hidden;
    transition:.35s ease;
  }

  .avatars button:focus-visible {
    box-shadow:0 0 0 3px #fff,0 0 0 5px var(--accent);
  }

  .avatars button.active {
    border-color:var(--accent);
    transform:translateY(-4px);
  }

.avatars img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Pehle cover tha */
  border-radius: 50%;
  background: #000; /* Black background to fill empty space */
  display: block;
}


  .avatars button.active img,
  .avatars button:hover img {
    filter:grayscale(0);
    transform:scale(1.04);
  }

  /* Subtle gradient ring behind active avatar */
  .avatars button.active:before {
    content:"";
    position:absolute;
    inset:-3px;
    border-radius:inherit;
    background:conic-gradient(from 0turn,var(--accent),#004f23 70%,var(--accent));
    z-index:-1;
    filter:blur(8px) opacity(.6);
    animation:spin 6s linear infinite;
  }

  @keyframes spin {
    to { transform:rotate(1turn); }
  }

  /* Motion reduce */
  @media (prefers-reduced-motion:reduce) {
    .testimonial-box,
    blockquote,
    .author,
    .avatars button,
    .avatars img {
      animation:none;
      transition:none;
    }
  }
  .testimonial-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* sucess story */


/* login */

.form-btn{
  border: none;
  background-color: transparent;
  color: white;
  font-size: 16px;
  font-family: 'Times New Roman', Times, serif;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}

.form-btn:hover{
  color: #00e676;
}
.modal-content img{
  padding: 0 85px;
  margin-bottom: -20px;
  margin-top: -20px;
}
.modal-content .btn{
  margin-bottom: 20px;
}
.modal-container .modal { 
  display: none; 
  position: fixed; 
  top: 25vw; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  background: white; 
  padding: 30px; 
  width: 350px; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  z-index: 1001; 
  text-align: left;
}
.modal-container .overlay { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1000; 
}
.modal-container .close { 
  float: right; 
  cursor: pointer; 
  font-size: 24px; 
  font-weight: bold; 
  color: #555; 
  transition: color 0.3s ease;
}

.modal-container .close:hover { color: red; }
.modal-container .form-container { display: none; }
.modal-container .form-container.active { display: block; }
.modal-container h2 { text-align: center; color: #333; }
.modal-container input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.modal-container button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  background: #00e676;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-container button:hover { background: #0056b3; }
.modal-container p {
  text-align: center;
  cursor: pointer;
  color: #00e676;
}
.modal-container p:hover { text-decoration: underline; }



button[onclick="openModal('login')"],
button[onclick="openModal('signup')"] {
    display: none; /* Hide buttons initially to prevent flicker */
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.modal-content {
  text-align: center;
}
.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
input {
  width: 90%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.btn {
  background: #26890d;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}
.btn:hover {
  background: #26890d9f;
}
.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
.hidden {
  display: none;
}
/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
  .modal-container .modal {
    top: 40vw;   /* Tablet ke liye thoda adjust */
    width: 50%;
  }
}

@media (max-width: 768px) {
  .modal-container .modal {
    top: 40vw;   /* Mobile landscape */
    width: 50%;
  }
}

@media (max-width: 480px) {
  .modal-container .modal {
    top: 80vw;   /* Small mobiles */
    width: 95%;
    padding: 20px;
  }
}

/* login */

/* res nav  */



@media (min-width: 768px) and (max-width: 1024px) {
  /* show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
  }
  
  .hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* nav links full-screen overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 80px;
    background: #111;
    transition: left 0.4s ease;
    overflow-y: auto;
    z-index: 10000;
  }
  .nav-links.show {
    left: 0;
  }

  /* menu list items styling */
  .nav-links li {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* hide translator on tablet */
  .custom-translate {
    display: none;
  }

  /* logo size fix */
  .bsa-initial {
    width: 205px;
    flex-shrink: 0;
  }

  /* submenu styling inside mobile/tablet */
  .nav-links .submenu {
    position: static;
    display: none;
    width: 100%;
    background: #222;
    flex-direction: column;
    padding: 10px 20px;
    box-shadow: none;
  }
  .nav-links li.active .submenu {
    display: flex;
  }

  /* submenu close button */
  .close-submenu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    margin: 10px 0;
    cursor: pointer;
    align-self: flex-end;
  }
}

@media (max-width: 1024px) {
  /* hamburger visible */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
  }
  .bsa-initial:hover .dot {
transform: translateX(-7px); /* Adjusted for the expanded 'Global' */
left: 0;
}
}
@media (max-width: 820px) {
  /* hamburger visible */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
  }
  .bsa-initial:hover .dot {
transform: translateX(-7px); /* Adjusted for the expanded 'Global' */
left: 0;
}
}
@media (max-width: 768px) {
  /* hamburger visible */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
  }
  .bsa-initial:hover .dot {
transform: translateX(-7px); /* Adjusted for the expanded 'Global' */
left: 0;
}
}
@media (max-width: 767px) {
  /* hamburger visible */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
  }
  .bsa-initial:hover .dot {
transform: translateX(-7px); /* Adjusted for the expanded 'Global' */
left: 0;
}
  .hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* nav-links as full screen */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    gap: 20px;
    transition: left 0.4s ease;
    overflow-y: auto;
    z-index: 10000;
  }
  .nav-links.show {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* hide translator on mobile */
  .custom-translate {
    display: none;
  }

  /* logo fix on mobile */
  .bsa-initial {
    width: 205px;
    flex-shrink: 0;
  }

  /* submenu styling for mobile */
  .nav-links .submenu {
    position: static;
    display: none;
    width: 100%;
    background: #222;
    flex-direction: column;
    padding: 10px 20px;
    box-shadow: none;
  }
  .nav-links li.active .submenu {
    display: flex;
  }

  /* submenu close button */
  .close-submenu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    margin: 10px 0;
    cursor: pointer;
    align-self: flex-end;
    display: block;
  }
}

@media (max-width: 1024px) {
  .close-submenu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    margin: 10px 0;
    align-self: flex-end;
    cursor: pointer;
  }
}
@media (max-width: 1024px) {
  .nav-links .submenu .column {
    border-left: none !important;
  }
}

/* res nav  */



    footer.footer {
      background-color: #1b1b1b;
      padding: 60px 10%;
    }

    .footer-brand {
      font-size: 36px;
      font-weight: 800;
     color: #00e676;
      margin-bottom: 40px;
      text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
    }

    .footer-column h3 {
      font-size: 22px;
      margin-bottom: 20px;
      color: #00e676;
      border-bottom: 1px solid white;
      padding-bottom: 8px;
    }

    .footer-column a {
      display: block;
      text-decoration: none;
      color: white;
      font-size: 15px;
      margin-bottom: 10px;
      transition: all 0.3s ease;
    }

    .footer-column a:hover {
      color: #00e676;
      transform: translateX(2px);
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background-color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      font-size: 18px;
      color: #00e676;
      transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.1);
      background-color: #00e676;
      color: #000;
    }

    .footer-bottom {
      text-align: center;
      padding: 20px 10%;
      font-size: 14px;
      color: white;
      background-color: #1b1b1b;
      border-top: 1px solid #444;
    }

    .footer-bottom a {
      text-decoration: none;
      color: white;
      margin: 0 6px;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .footer-bottom a:hover {
      color: #00e676;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 40px;
      }

      .footer-column h3 {
        font-size: 20px;
      }

      .footer-brand {
        font-size: 28px;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .footer-brand {
        font-size: 24px;
      }

      .footer-column h3 {
        font-size: 18px;
      }

      .footer-column a {
        font-size: 13px;
      }

      .social-icons a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 16px;
      }
    }

