/* Global reset and font settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --gradient: linear-gradient(45deg, #00ffd5, #a800ce, #00fffb, #686de0);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --border: 1px solid rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden; /* Disable horizontal scrollbar */
}
/* Main layout wrapper for global consistency */
.layout-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Optional utility class to center any content */
.centered {
  margin-left: auto;
  margin-right: auto;
}

/* Body base styles (already in place) */
body {
  background: #000000;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Ensure the font is loaded */
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    background: #000000; /* Solid black background */
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: #000000; /* Still solid black on scroll */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 2.3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
    color: #fffbfb;
    margin-right: 20px;
    margin-left: -60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    margin-right: 10px;
}

/* Main navigation links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 1.2rem;
    margin-left: auto; /* This pushes the links to the right */
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.2rem; 
    letter-spacing: 0.4px; 
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgb(0, 0, 0);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 8s linear infinite;
}
/* Custom style for the 'Vertex' link */
.vertex-link {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem; /* Adjust size as needed */
    color: #00e7fc; /* Default text color */
    text-decoration: none;
    margin-left: 40px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease; /* Smooth transition for text color */
    margin-right: -60px;
}
.vertex-link .big-x {
    font-size: 5rem; /* Makes the X bigger */
    vertical-align: middle;
    line-height: 1;
    margin-top: 10px; /* Space between text and X */
    font-family: "Monoton", sans-serif;
    color: #ffffff;
}

/* Hover effect specifically for the 'Vertex' link */
.vertex-link:hover {
    color: transparent; /* Make text transparent so the gradient is visible */
    background: linear-gradient(45deg, #a200ff, #00f2ff, #32cd32); /* Gradient effect */
    background-size: 200% 200%; /* For animation effect */
    -webkit-background-clip: text; /* Makes the background apply to text */
    background-clip: text; /* Standard property for compatibility */
    animation: gradient 1.5s ease-in-out infinite; /* Apply the gradient animation with infinite loop */
}

/* Keyframes for the gradient movement (applies only to 'Vertex') */
@keyframes gradient {
    0% {
        background-position: 200% 0; /* Start the gradient from the right */
    }
    50% {
        background-position: -200% 0; /* Move the gradient to the left */
    }
    100% {
        background-position: 200% 0; /* End the gradient back at the right */
    }
}

/* Mobile view styling */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh; /* Full height of the viewport */
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        z-index: 1000; /* Ensure it appears above other content */
    }

    .nav-links.active {
        right: 0; /* Slide the menu in */
    }

    .mobile-nav-toggle {
        display: block;
    }

/* Mobile view adjustments */
    .vertex-link {

        display: none;
    }

    .vertex-link .big-x {
        display: none;
    }
/* Desktop styling */
.logo {
    font-size: 2.1rem;         /* Font size for desktop */
    margin-left: -3mm;
    display: flex;
    margin-top: 10px;

}
.logo-img {

    display: none;
}

}

.mobile-nav-toggle {
    display: none; /* Hidden by default — shown in media query */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-top:20px
  }
  
  .mobile-nav-toggle .bar {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  

/* Active state for mobile menu toggle */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translate(-50%, 5px) rotate(45deg);
    width: 24px;
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translate(-50%, -5px) rotate(-45deg);
    width: 24px;
}
@media (max-width: 768px) {
    .mobile-nav-toggle {
      display: flex;
    }
  }
/* Hide the link by default */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .mobile-mobile-link {
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
    }

    .mentry-text {
        color: #00fffb;
        font-size: 2.5rem;
        font-family: "Monoton", sans-serif;
    }

    .big-x {
        color: #ffffff;
        font-size: 4.5rem;
        font-family: "Monoton", sans-serif;
        margin-left: 5px; /* Adjust if needed */
        line-height: 1;
    }

    .mobile-mobile-link:hover {
        text-decoration: underline;
    }
}


  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(4px);
  }

  .overlay.active {
      opacity: 1;
      visibility: visible;
  }

/* Full-width image styles */
.full-width-image {
  width: 100%;
  height: 12cm; /* Set the container height */
  overflow: hidden;
  position: relative;
  margin-top: 80px; /* Add top margin to push it below the navbar */
}

.full-width-image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -35%;
  left: 0;
  object-fit: cover;
}

.image-text {
  position: absolute;
  top: 10%; /* Moved up from 20% to 10% */
  left: 10%;
  transform: translateY(-50%);
  color: rgb(0, 0, 0);
  text-align: left;
  z-index: 1;
}

.image-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.image-text p {
  font-size: 1.3rem;
  opacity: 0.8;
}
.content {
  background-color: #000000; /* Dark background for contrast */
  color: rgb(255, 255, 255);
  padding: 40px 5%;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 30px;
}

.content p {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.9;
}
.section-heading {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient); /* Use the same gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 8s linear infinite; /* Add gradient animation */
  background-size: 300%;
  text-align: center;
  margin-bottom: 20px;
}

/* Gradient animation for the text */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.section-heading2 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient); /* Use the same gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 8s linear infinite; /* Add gradient animation */
  background-size: 300%;
  text-align: center;
  margin-bottom: 20px;
}

/* Gradient animation for the text */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 columns across */
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Each card */
.card {
  height: 300px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Hover effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.6);
  top: 0;
  left: 0;
  z-index: 0;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.card:hover img {
  filter: blur(0) brightness(0.7);
  transform: scale(1.05);
}

/* Content inside the card */
.card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Gradient animation for text */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Gradient animation for headings */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mission-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 180px; /* Increase the margin-top to push the section further down */
  padding-bottom: 20cm; /* Add height only at the bottom */
}


/* Text overlay on the image */
.image-text {
  position: absolute;
  top: 40%; /* Move the text to the center of the image */
  left: 10%; /* Adjusted to move text to the left */
  transform: translateY(-50%); /* Keep it vertically centered */
  color: white;
  text-align: left; /* Align the text to the left */
  z-index: 1;
}

/* Mission heading */
.image-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #00ffd5, #a800ce, #00fffb, #686de0); /* Gradient colors */
  background-size: 200% 200%;
  color: transparent;
  -webkit-background-clip: text; /* Ensures the gradient is applied only to the text */
  background-clip: text; /* Standard property for compatibility */
  animation: gradient 3s ease infinite; /* Apply gradient animation */
}

/* Vision heading */
.vision-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 2rem; /* Added margin to move it down a bit */
  background: linear-gradient((45deg, #00ffd5, #a800ce, #00fffb, #686de0)); /* Gradient colors */
  background-size: 200% 200%;
  color: transparent;
  animation: gradient 3s ease infinite; /* Apply gradient animation */
}

/* Mission and Vision Paragraphs */
.image-text p {
  font-size: 1.3rem;
  opacity: 0.8;
  margin-top: 1rem; /* Space between heading and text */
  line-height: 1.6; /* Adjust line-height for readability */
}


.video-cards-section {
  padding: 40px 5%;
  background-color: #000000;  /* Background color for contrast */
}

/* Title for the video cards section */
.video-cards-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gradient);
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

/* Common card width for all rows */
.video-card {
  flex: 0 0 calc(28% - 20px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(249, 249, 249, 0.6);
  margin: 10px 0;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.centered-row {
  justify-content: center;
  column-gap: 130px; /* Increased space between the two bottom cards */
}


/* Top row: normal spacing */
.top-row {
  justify-content: space-between;
}

/* Bottom row: center 2 cards */
.centered-row {
  justify-content: center;
}

.video-container img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.video-container {
  width: 100%;
  height: 400px; /* Ensures consistent height for all images */
  overflow: hidden;
}

/* Card Text */
.video-card-text {
  font-size: 1rem;
  color: #333;
  margin-top: 30px;
  line-height: 1.5;
  text-align: center;
}

/* Hover Effect for Cards */
.video-card:hover {
  transform: translateY(-5px);  /* Slight lift effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: glow 2s linear infinite;
}



@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(162, 0, 255, 0.484), 0 0 20px rgba(212, 0, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(136, 0, 255, 0.534), 0 0 30px rgba(153, 0, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(140, 0, 255, 0.41), 0 0 20px rgba(140, 0, 255, 0.4);
  }
}
.footer {
  position: fixed;
  bottom: -100px;  /* Initially hidden below the viewport */
  left: 0;
  width: 100%;
  background-color: #fffefe;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 20px;
  transition: bottom 0.3s ease;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* Center the content horizontally */
  gap: 30px;  /* Space between items */
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

.footer-content a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  text-decoration: underline;  /* Underline links on hover */
}

/* Make footer visible when scrolled to the bottom */
.footer.show {
  bottom: 0;  /* Bring the footer into view */
}
.bottom-black-box {
  width: 100%;
  height: 400px;
  background-color: #000;
  display: flex;
  justify-content: space-between; /* Ensures content on both sides */
  align-items: center;
  padding: 40px 50px;
  box-sizing: border-box;
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

/* Left-side content (title, subheading, description) */
.footer-info {
  color: white;
  max-width: 600px;
  flex-grow: 1; /* Ensures the left content takes up remaining space */
}

/* Title */
.footer-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Subheading */
.footer-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #dcdcdc; /* Light color for subheading */
}

/* Description */
.footer-info p {
  font-size: 16px;
  line-height: 1.5;
  color: #dcdcdc;
  max-width: 500px;
}

/* Centered button section */
.button-section {
  display: flex;
  justify-content: center;
  gap: 40px; /* Adjust space between buttons */
  align-items: center;
  flex-grow: 1; /* Allow the buttons section to grow in available space */
}

.button-item h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.button-item .button {
  padding: 10px 50px;
  background-color: #ffffff; /* Button color */
  color: rgb(0, 0, 0); /* Default text color */
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #000000; /* Initial border color */
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added border-color transition */
  display: inline-block;
}

.button-item .button:hover {
  background-color: #000000; /* Darker shade for hover */
  color: #ffffff; /* Change text color to white on hover */
  border-color: #ffffff; /* Change border color to white on hover */
}



/* Social icons (right side) */
.social-menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 20px;
  margin-left: -40px; /* Move the icons more to the left */
}

.social-menu ul li {
  list-style: none;
}

.social-menu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: white;
  transition: 0.5s;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  text-decoration: none;
}

.social-menu ul li a i {
  font-size: 28px;
  color: #000000;
  transition: 0.5s;
}

.social-menu ul li a:hover {
  transform: translateY(-10px);
}

.social-menu ul li a:hover i {
  color: #ffffff;
}

/* Hover background colors */

.social-menu ul li:nth-child(1) a:hover { background-color: #e4405f; } /* Instagram */
.social-menu ul li:nth-child(2) a:hover { background-color: #0077B5; } /* LinkedIn */
.social-menu ul li:nth-child(3) a:hover { background-color: #25D366; } /* WhatsApp */
.social-menu ul li:nth-child(4) a:hover {
  background: linear-gradient(to bottom, #A020F0, #ffffff); /* Purple to white */
  color: #000; /* Optional: make icon color contrast better */
}



.about-contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-left: 0px; /* Moved more to the right */
}

.about-info, .contact-info {
  flex: 1;
  min-width: 260px;
  font-size: 1.3rem; /* Make text a bit larger */
}

.about-info h3,
.contact-info h3 {
  font-size: 1.5rem; /* Slightly larger section titles */
  margin-bottom: 10px; /* Space below the title */
  margin-right: 30px;
}

.about-info p,
.contact-info p {
  margin-bottom: 20px; /* Space between paragraphs */
  line-height: 1.6; /* Increase line height for readability */
  font-size: 1.1rem; /* Make text a bit larger */
  color: #dcdcdc; /* Light color for text */
}

  /* Mobile-specific adjustments for screens ≤ 768px */
  @media (max-width: 768px) {
    .full-width-image {
      height: 10cm; /* Make the image container taller on mobile */
    }
  
    .full-width-image img {
      height: 100%;  /* Full height of the container */
      top: 0;
    }
  
    .image-text {
      top: 50%; /* Lower the text to make it fit better */
      left: 5%;  /* Make the text a bit more centered */
      width: 90%;  /* Increase width for better text alignment */
    }
  
    .image-text h1 {
      font-size: 2.2rem; /* Smaller heading font size on mobile */
    }
  
    .image-text p {
      font-size: 1rem; /* Smaller text for mobile */
    }
  }
/* Small Mobile (≤ 480px) */
@media (max-width: 768px) {

  .content {
    padding: 15px 5%;
    margin-top: -5px;
  }

  .section-heading {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .content p {
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .section-heading2 {
    font-size: 2.2rem;
    margin-top: 90px;
  }

  .card-container {
    grid-template-columns: repeat(2, 1fr); /* Two cards side-by-side */
    gap: 10px; /* Reduced spacing */
    max-width: 90%; /* Reduce the width of the container */
    margin: 0 auto; /* Center the container */
    padding: 0 10px; /* Optional: Adjust padding for better alignment */
    clear: both; /* Ensure the section clears any floated content */
    position: relative; /* Ensure it's not overlapping */
    height: 360px;
  }

  .card {
    height: 140px;
    border-radius: 8px;
    max-width: 100%; /* Allow full width inside grid column */
    margin: 0; /* Remove centering */
  }

  .card-content {
    padding: 8px;
  }

  .card-content h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .card-content p {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .card img {
    filter: blur(2px) brightness(0.5);
  }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .image-text {
    top: 48%; /* Adjust the vertical position to move the text down */
  }

  .image-text h2 {
    font-size: 2.5rem; /* Smaller font size for heading on mobile */
  }

  .image-text .vision-heading {
    font-size: 1rem; /* Smaller font size for vision heading */
  }

  .image-text p {
    font-size: 1rem; /* Smaller font size for paragraph text */
  }
  
}
/* Mobile-specific adjustments */
@media (max-width: 768px) {
  /* Adjust the overall video-cards-section */
  .video-cards-section {
    padding: 10px 5%; /* Add padding for spacing */
    margin-bottom: 30px; /* Space below the section */
  }

  /* Make the services-cards use flex and wrap for mobile */
  .services-cards {
    display: flex;
    flex-direction: column; /* Stack the cards vertically */
    gap: 20px;
    width: 100%;
  }

  /* Adjust card width and padding for mobile (stacked layout) */
  .video-card {
    width: 100%; /* Cards take full width */
    padding: 15px;
    margin-bottom: 15px; /* Space between cards */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(249, 249, 249, 0.6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Video container style */
  .video-container {
    height: 300px; /* Adjust the image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-container img {
    width: 100%;
    object-fit: cover; /* Ensure images fill the container without stretching */
  }

  .video-card-text {
    font-size: 1rem;  /* Smaller text for mobile */
    margin-top: 15px; /* Reduce margin */
    text-align: center; /* Center-align text */
  }

  /* Hover Effect for Cards */
  .video-card:hover {
    transform: translateY(-5px);  /* Slight lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: glow 2s linear infinite;
  }
}



@media (max-width: 768px) {
  .footer {
    position: relative; /* Makes the footer part of normal flow */
    bottom: 0; /* Overrides the hidden effect */
    margin-top: 20px; /* Spacing from social icons */
    background-color: #f5f5f5; /* Slight background for visibility */
    padding: 20px 10px;
    text-align: center;
    z-index: 1; /* Ensure it's above background */
  }

  .footer-content {
    flex-direction: column; /* Stack links vertically */
    align-items: center;
    gap: 10px;
  }

  .footer-content p {
    font-size: 13px;
  }
}

  @media (max-width: 768px) {
    .bottom-black-box {
      flex-direction: column;
      height: auto;
      padding: 30px 20px;
      align-items: flex-start;
    }
  
    .about-contact-wrapper {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-info {
      width: 100%;
    }
  
    .button-section {
      width: 100%;
      margin-top: 20px; /* Space between button section and other content */
      display: flex;
      flex-direction: column; /* Stack items vertically */
      justify-content: flex-start;
      gap: 20px;
      align-items: flex-start;
    }
  
    .button-item .button {
      padding: 8px 20px;
      font-size: 14px;
      margin-top: 10px;
    }
  
    /* Move social menu up */
    .social-menu {
      display: flex;
      justify-content: flex-start;
      gap: 15px;
      margin-top: 60px; /* Move social menu up */
    }
  
    .social-menu ul {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      gap: 15px;
      margin-left: 0;
    }
  
    .social-menu ul li a {
      width: 45px;
      height: 45px;
    }
  
    .social-menu ul li a i {
      font-size: 20px;
    }
  
    /* Put "Get In Touch" button below the social menu */
    .button-section .button-item {
      order: 2; /* Ensure button is below social menu */
      margin-top: 60; /* Reset margin-top for button */
    }
  }