* {
    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;
}
/* 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;
    }
}


  .tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
  }
  
  /* Section styles (No glass effect) */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 30px;
  }
/* Increase font size of service list items */
#serviceList li {
    font-size: 1.3rem; /* Adjust the value as needed */
  }
  
  .section {
    margin: 60px 0;
    padding: 0 20px;
  }

  h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 4rem;
    text-align: left; /* Align the heading to the left */
    margin-left: 30px; /* Add left margin to create space from the left edge */
    background: var(--gradient); /* Use a gradient background */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* Standard support for background clipping */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    animation: gradient 8s linear infinite; /* Gradient animation */
    background-size: 300%; /* Makes the gradient more dynamic */
  }
  
  /* Gradient animation for the text */
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  
  
  p, li {
    color: #dddddd;
    line-height: 1.7;
    font-size: 1.1rem;
  }
  
  ul {
    list-style: square;
    padding-left: 20px;
    margin-top: 15px;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1.2rem;
    color: #000000;
    background:rgb(255, 255, 255);  /* Gradient background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;  /* Space between text and button */
  }
  
  .cta-button:hover {
    background: linear-gradient(45deg, #060606, #040303); /* Lighter gradient for hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    color: #ffffff;
  }
  
  .cta-button:focus {
    outline: none;
  }
  
  .cta-button:active {
    transform: scale(1); /* Reset scale when clicked */
  }
  /* Center the heading and make it smaller */
/* Gradient animation for the heading */
.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%; }
  }
  
  .image-row {
    display: flex;
    flex-wrap: wrap;
    width: 99vw;
    margin: 0;
    padding: 0;
  }
  
  .image-card {
    width: calc(100% / 3); /* Default for the second row: 1/3 of the row */
    height: 9.5cm;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative; /* For positioning text and image */
    transition: filter 0.3s ease; /* Transition for blur */
  }
  
  .image-card.half-width {
    width: 50%; /* First row images take half width */
  }
  
  .card-content {
    position: relative;
    height: 100%;
    overflow: hidden; /* Ensures images stay within bounds */
  }
  
  .card-text {
    position: absolute;
    font-size: 2rem;
    bottom: 0;
    width: 100%;
    height: 100%; /* Set the height of the text box */
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: white;
    transform: translateY(100%); /* Start below the card */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for text */
    opacity: 0; /* Initially hidden text */
  }
  
  .card-text h3, .card-text p {
    margin: 0;
  }
  
  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  
  .image-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
  }
  
  /* Hover effect for card */
  .image-card:hover .card-text {
    transform: translateY(50%); /* Move text up to halfway */
    opacity: 1; /* Make text 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;
  }
  
  /* Text overlay on the image */
  .image-text {
    position: absolute;
    top: 50%;
    left: 10%; /* Adjusted to move text to the left */
    transform: translateY(-50%); /* Keep it vertically centered */
    color: rgb(255, 255, 255);
    text-align: left; /* Align the text to the 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;
    color: #ffffff;
  }
  .message-us-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: black; /* Set default background color */
  }
  
  .message-us-btn:hover {
    background-color: #00bed3;
    transform: translateY(-3px);
  }
  
  .message-us-btn:active {
    transform: translateY(1px);
  }
  
.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 */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align items to the left */
    justify-content: flex-start; /* Ensure text is aligned at the top */
}

/* Footer heading styles */
.footer-info h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #ffffff; /* Ensure the heading text is white */
    background: none; /* No background */
    -webkit-background-clip: unset; /* Reset background clipping */
    background-clip: unset; /* Reset background clipping */
    -webkit-text-fill-color: initial; /* Reset text fill color */
    animation: none; /* No animation */
    text-align: left; /* Align the heading to the left */
    margin-left: 0; /* Remove left margin if needed */
}

/* Subheading */
.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #dcdcdc; /* Light color for subheading */
    text-align: left; /* Align the subheading to the left */
    margin-left: 0; /* Ensure there's no extra margin on the left */
}

/* Description */
.footer-info p {
    font-size: 16px;
    line-height: 1.5;
    color: #dcdcdc;
    max-width: 500px;
    text-align: left; /* Align the description text to the left */
    margin-left: 0; /* Make sure the paragraph starts from the left */
}

/* Ensure the footer container itself is aligned with other text elements */
.footer-info {
    padding-left: 20px; /* If you want a consistent gap from the left */
    padding-right: 20px; /* Optional: if you need some space on the right */
    box-sizing: border-box; /* Include padding in total width */
}


/* 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: 250px;
    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 */
  }

  .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 */
}
/* Basic styles for the section */
.process-section {
    text-align: center;
    padding: 40px 20px;
}

/* Main heading styles */
.process-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;  /* Reduced margin between heading and subheading */
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    justify-content: center; /* Center the heading */
    align-items: center;
    text-align: center; /* Ensures text is centered */
}

/* Subheading styles */
.process-subheading {
    font-size: 1.5rem;
    margin-bottom: 40px;  /* Space between subheading and process steps */
    color: white; /* White color for the subheading */
    font-weight: 300; /* Lighter font-weight */
    text-align: center; /* Center the subheading */
    max-width: 600px; /* Optional: limit width for a more uniform look */
    margin-left: auto;
    margin-right: auto; /* Center the subheading horizontally */
}

/* Container for the process steps */
.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Each step in the process */
.process-step {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    width: 250px; /* Fixed width for equal-sized cards */
    height: 300px; /* Fixed height for equal-sized cards */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures that the content is spaced nicely */
}

.process-icon {
    font-size: 3rem;
    color: #2980b9;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #34495e;
}

.process-step p {
    font-size: 1rem;
    color: #7f8c8d;
    flex-grow: 1; /* Ensures text takes the remaining space in the card */
}

/* Arrows between steps */
.process-arrow {
    font-size: 2rem;
    color: #34495e;
    display: block; /* Ensures the arrows are centered */
    align-self: center; /* Align arrows in the center */
}

  /* Mobile-specific adjustments for screens ≤ 768px */
  @media (max-width: 768px) {
    .full-width-image {
      height: 12cm; /* 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 */
    }
  
    .message-us-btn {
      padding: 0.6rem 1.8rem;  /* Smaller button padding */
      font-size: 1.1rem;  /* Smaller button text */
      margin-top: 15px;  /* Adjust margin for mobile */
    }
  }
  /* Even smaller fonts on mobile */
@media (max-width: 768px) {
    #approach h2 {
        font-size: 3rem;
    }

    #approach p {
        font-size: 1rem;
    }
}
/* Responsive for mobile */
@media (max-width: 768px) {
    .image-card,
    .image-card.half-width {
      width: 100%;
      height: 300px; /* Fixed height for all cards */
      position: relative;
    }
  
    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures the image fills the box evenly */
    }
  
    .card-text {
      font-size: 0.9rem;
      padding: 10px;
    }
  
    .card-text h3 {
      font-size: 1.1rem;
    }
    .section-heading {
        font-size: 3rem; /* Smaller heading for mobile */
        text-align: center; /* Optional: keep it centered */
        margin-bottom: 1rem;
      }
  }
  /* Responsive Styles for Mobile */
@media (max-width: 768px) {
    /* Section padding */
    .section,
    #services .container,
    .process-section {
      padding: 20px 15px;
      margin: 40px 0;
    }
  
    /* General heading size */
    h2,
    .process-heading {
      font-size: 3rem;
      margin-left: 0;
      text-align: center;
    }
  
    /* Service list font size */
    #serviceList li {
      font-size: 1rem;
      line-height: 1.5;
    }
  
}
/* Mobile-specific adjustments for screens ≤768px */
@media (max-width: 768px) {
    .process-container {
        display: grid; /* Use grid layout */
        grid-template-columns: repeat(2, 1fr); /* Create 2 equal-width columns */
        gap: 10px; /* Space between rows and columns */
    }

    .process-step {
        width: 100%; /* Ensure each card takes full width in its grid cell */
        height: 237px; /* Square-shaped cards with fixed height */
        padding: 10px; /* Reduce padding to make the cards smaller */
        box-sizing: border-box; /* Ensure padding doesn't affect width/height */
    }

    .process-heading {
        font-size: 1.8rem; /* Smaller heading font size on mobile */
    }

    .process-subheading {
        font-size: 1.2rem; /* Smaller subheading font size on mobile */
    }

    .process-icon {
        font-size: 2rem; /* Smaller icons on mobile */
    }

    .process-step h3 {
        font-size: 1.1rem; /* Smaller heading font size on mobile */
    }

    .process-step p {
        font-size: 1rem; /* Smaller text on mobile */
    }

    /* Hide arrows on mobile */
    .process-arrow {
        display: none; /* Hide the arrows for mobile screens */
    }

    /* Center the 5th card (Optimization and Support) at the bottom */
    .process-step:nth-child(5) {
        /* Center it horizontally in its grid cell */
        grid-column: 1 / span 2; /* Make it span across both columns */
        margin: 0 auto; /* Center it horizontally */
         width: 100%; /* Ensure each card takes full width in its grid cell */
        height: 237px;
    }
}
@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 */
    }
  }
  @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;
    }
  }