@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Aladin&family=Allura&family=Alumni+Sans+Pinstripe:ital@0;1&family=Cinzel:wght@400..900&family=Euphoria+Script&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
ul{
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
}
a{
    text-decoration: none;
}
.majestic{
    color: #f05a28;
    text-decoration: underline;
    font-family: 'Aladin', cursive;
    font-weight: lighter;
}
nav {
    box-shadow: 1px 6px 21px -5px rgba(66, 68, 90, 1);
    padding: 1rem 2rem;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
  }

  .logo {
    font-size: 1.2rem;
    font-weight: bolder;
    color: #F7B733;
    font-family: 'Aladin', cursive;
    text-decoration: none;
  }
.logo:hover{
    color: #f05a28;
    transform: scale(1.3);
}
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  .nav-links a {
    position: relative;
    display: inline-block;
    color: transparent; /* hide original text */
    text-decoration: none;
    font-size: 1rem;
    padding: 0 15px;
    perspective: 500px;
    font-family: 'Aclonica', cursive;
    overflow: hidden;
  }
  
  /* Flip layers */
  .nav-links a::before,
  .nav-links a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    transform-origin: bottom;
    backface-visibility: hidden;
    text-align: center;
  }
  
  /* Normal state */
  .nav-links a::before {
    transform: rotateX(0deg);
    color: #FFEDDA;
  }
  
  /* Flip face */
  .nav-links a::after {
    transform: rotateX(-90deg);
    color: #f05a28;
  }
  
  /* Hover flip */
  .nav-links a:hover::before {
    transform: rotateX(90deg);
  }
  
  .nav-links a:hover::after {
    transform: rotateX(0deg);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #007074;
    transition: all 0.3s ease;
  }

  /* Hamburger Animation */
  .hamburger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.toggle div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #5B2333;
      flex-direction: column;
      align-items: center;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
    }
  
    .nav-links.open {
      min-height: 80vh;
    }
    .nav-links a{
        font-size: 2rem;
        padding: 10px;
        margin-top: 1.5rem;
    }
    .hamburger {
      display: flex;
    }
  }
.banner{
    width: 100%;
    min-height: 100vh;
    background-image: url('./images/bg35.jpg');
    background-size: cover;
    background-position: center;
    position: relative; /* Ensure proper positioning */
    overflow: hidden; /* Prevents anything from overflowing the container */
}
.banner h1 {
    width: 90%;
    font-size: 4rem;
    margin: 0 auto;
    color: #FC4A1A;
    /*text-shadow: 0 0 10px #F7B733, 0 0 20px #F7B733, 0 0 30px rgba(250, 201, 41, 0.8);
    */font-family: "Aclonica", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.track-in-animation {
	-webkit-animation: track-in-animation 3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: track-in-animation 3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-3-31 12:33:39
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation track-in-animation
 * ----------------------------------------
 */
 @-webkit-keyframes track-in-animation {
    0% {
      letter-spacing: 1em;
      -webkit-transform: translateZ(400px);
              transform: translateZ(400px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes track-in-animation {
    0% {
      letter-spacing: 1em;
      -webkit-transform: translateZ(400px);
              transform: translateZ(400px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }

.container{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 3rem;
}
.container p {
    width: 60%;
    margin: 0 auto;
    color: #FFEDDA;
    padding: 10px;
    font-size: 2rem;
    margin-top: 20px;
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: bold;
    background: #222;
}

.buttons {
    width: 60%;
    margin: 20px auto;
    display: flex;
    justify-content: center; /* Default: buttons side by side */
    gap: 10px;
    font-size: 1rem;
}
.bottom-margin{
    margin: 4rem auto;

}
.btn{
    display: inline-block;  
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.4s ease;
    min-width: 150px;
    text-align: center;
}
/***.glass{
    background: rgba(255, 255, 255, 0.2); /* Transparent background without affecting text 
    border-radius: 15px; 
    padding: 20px; 
    backdrop-filter: blur(8px) saturate(100%) contrast(100%);
    -webkit-backdrop-filter: blur(8px) saturate(100%) contrast(100%);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border 
    color: white;
}**/
/* Adjusting for the buttons */
.buttons a:nth-child(1) {
    color: #fff;
    text-align: center;
    background: #638C6D;
    border-radius: 5px;
    min-width: 150px;
    padding: 10px 20px;
}

.buttons a:nth-child(2) {
    color: #fff;
    text-align: center;
    background: #638C6D;
    border-radius: 5px;
    min-width: 150px;
    padding: 10px;
}

.buttons a:hover {
    transform: translateY(5px);
    background: rgb(0,48,73);
background: linear-gradient(-220deg, rgba(0,48,73,1) 23%, rgba(252,74,26,1) 73%);

}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    z-index: 1000;
}

.modal-content {
    background: #222;
    padding: 15px;
    border-radius: 8px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .nav-bar {
        width: 100%;
        padding: 0 20px;
    }

    .nav-bar__contact {
        width: 50%;
        padding: 5px;
    }
    .banner h1 {
        font-size: 3rem;
    }

    .banner p {
        font-size: 1.2rem;
    }

    .buttons {
        width: 80%;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;  /* Center buttons */
    }

    .buttons a {
        width: 120px;
        padding: 10px;
        margin: 5px 0; /* Add spacing between buttons */
    }
}

@media (max-width: 480px) {
    .nav-bar__menu ul {
        flex-direction: column;
    }
    .banner h1 {
        font-size: 2.5rem;
        margin: 3rem auto;
    }
    .container p {
        width: 100%;
        border-radius: 20px;
        background: #222;
        color: #FFEDDA;
        margin: 2rem auto;
        font-size: 1.5rem;
    }
    .buttons {
        display: flex;
        flex-direction: row;
        width: 80%;
        padding: 10px;
    }
    .buttons a {
        min-width: 100px;
        padding: 10px;
    }
}

/**New Section Start**/
.content{
    width: 100%;
    min-height: 100vh;
    background: #fff;
    margin: 0 auto;
    background-image: url('./images/bg1.jpg');
    background-size: cover;
    background-position: center;
}
.content-card{
    display: flex;
    justify-content: space-between;
}
.content-card__text{
    width: 100%;
    margin-top: 10rem;
    margin-left: 50px;
}
.content-card__text h2{
    width: 90%;
    font-size: 2.8rem;
    margin-left: 2rem;
    color: #003049;
    font-family: 'aladin', cursive;
}
.company{
    font-family: 'Allura', cursive;
    font-size: 2.5rem;  
    color: #FC4A1A;
}
.content-card__text p{
    width: 90%;
    font-size: 2.4rem;
    color: #5B2333;
    margin-top: 20px;
    margin-left: 2.5rem;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bolder;
}
.content-card__image{
    width: 100%;
    margin: 40px;
    height: 80vh;
}
.content-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Mobile Mode */
@media (max-width: 768px) {
    .content-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .content-card__text h2 {
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .content-card__text p {
        font-size: 1rem;
        margin: 0 auto;
    }

    .content-card__image {
        margin: 20px auto;
        height: 60vh;
    }

    .content-card__image img {
        width: 100%;
    }

    /* Adding a Cool Effect */
    .content-card {
        position: relative;
        overflow: hidden;
    }

    .content-card::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        top: -20px;
        left: -20px;
        animation: floatingEffect 5s infinite alternate ease-in-out;
    }

    @keyframes floatingEffect {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(20px);
        }
    }
}
.info{
    width: 100%;
    min-height: 100vh;
    text-align: center;
}
.info h1{
    width: 80%;
    margin: 0 auto;
    font-size: 3.5rem;
    color: #638C6D;
    font-weight: bold;
    font-family: "Aclonica", sans-serif;
}
.card-two h4{
    font-size: 3rem;
    color: #FC4A1A;
    font-family: 'Allura', cursive;
}
.info p{
    width: 90%;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #4f5f76;
    margin-top: 20px;
    font-family: 'Alumni Sans Pinstripe', cursive;
    font-weight: bold;
}
.card-two{
    width: 80%;
    margin: 50px auto;
}
.info-cards{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.small-info-cards{
    width: 30%;
}
.small-info-cards img{
    width: 80%;
    height: 50vh;
    object-fit: cover;
    box-shadow: 2px 10px 10px 0px rgba(0, 0, 0, 0.5);
}
.small-info-cards h2{
    font-size: 1.8rem;
    margin-top: 40px;
    color: #945034;
    font-weight: 700;
}
.small-info-cards p{
    font-size: 1.5rem;
    color: #001c2c;
    margin-top: 20px;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bold;
    text-align: center;
}


.another-content{
    width: 100%;
    min-height: 100vh;
}
.mid-card{
    display: flex;
    justify-content: center;
    margin-top: 112px;
}
.left-title h1{
    width: 70%;
    text-align: left;
    font-size: 2rem;
    margin-left: 80px;
    color: #FC4A1A;
    font-family: 'Aladin', cursive;
}
.right-card p{
    width: 70%;
    font-size: 1.6rem;
    color: #001c2c;
    margin-left: 80px;
    margin-top: 10px;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bolder;

}
.three-panel{
    width: 100%;
    min-height: 100vh;
    margin: 0 64px;
}

.skill-cards{
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.skill-card-panels{
    width: 25%;
    margin-left:48px;
}
.skill-card-panels i{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #C49B57;
}
.skill-card-panels h2{
    font-size: 1.4rem;
    color:#2C2C2C;
    font-weight: bold;
    margin-top: 20px;
}
.skill-card-panels p{
    font-size: 1.2rem;
    color: #4D4D4D;
    margin-top: 40px;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bold;
}
.skill-card-panels a{
    text-decoration: none;
    color: #FF6F00;
    margin-top: 20px;
}
.skill-card-panels a:hover{
    background: #5B2333;
    color: #F7F4F3;
    padding: 10px 20px;
}
.skill-card-panels a::after{
    content: ">";
    margin-left: 10px;
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .mid-card {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
    }
    .left-title h1 {
        font-size: 1.8rem;
        margin-left: 20px;
    }
    .right-card p {
        width: 90%;
        font-size: 1.3rem;
        margin-left: 20px;
    }
    .three-panel{
        margin: 0 32px;
    }
    .skill-cards {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #638C6D;
    }
    
    .skill-card-panels {
        width: 80%;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        background-color: rgba(128, 128, 128, 0.1); /* Gray with 10% opacity */
        background-clip: padding-box;
        backdrop-filter: blur(5px) saturate(100%) contrast(100%);
        margin: 1rem auto;
    }
    
    .skill-card-panels h2,
    .skill-card-panels p {
        width: 90%;
        margin: 20px auto;
        color: #FFEDDA;
    }
    
    .skill-card-panels i {
        display: none;
    }
    
    .skill-card-panels a {
        padding: 10px;
        color: #F7F4F3;
        border-radius: 10px 10px 0 0;
        background: #945034;
    }
    
}

/* Mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .left-title h1 {
        font-size: 1.5rem;
        margin: 0 auto;
        text-align: center;
    }
    .right-card p {
        font-size: 1.2rem;
        text-align: center;
        margin: 15px auto;
        width: 80%;
    }
    .three-panel {
        margin: 0 16px;
    }
    .skill-card-panels {
        width: 80%;
        text-align: center;
    }
    .skill-card-panels i {
        font-size: 1.8rem;
    }
    .skill-card-panels h2 {
        font-size: 1.2rem;
    }
    .skill-card-panels p {
        font-size: 1rem;
    }
}


/* Default styles remain unchanged */
.svg-background{
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='88' y1='88' x2='0' y2='0'%3E%3Cstop offset='0' stop-color='%23005092'/%3E%3Cstop offset='1' stop-color='%23007cc4'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='75' y1='76' x2='168' y2='160'%3E%3Cstop offset='0' stop-color='%23868686'/%3E%3Cstop offset='0.09' stop-color='%23ababab'/%3E%3Cstop offset='0.18' stop-color='%23c4c4c4'/%3E%3Cstop offset='0.31' stop-color='%23d7d7d7'/%3E%3Cstop offset='0.44' stop-color='%23e5e5e5'/%3E%3Cstop offset='0.59' stop-color='%23f1f1f1'/%3E%3Cstop offset='0.75' stop-color='%23f9f9f9'/%3E%3Cstop offset='1' stop-color='%23FFFFFF'/%3E%3C/linearGradient%3E%3Cfilter id='c' x='0' y='0' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='12' /%3E%3C/filter%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='0 174 0 0 174 0'/%3E%3Cpath fill='%23000' fill-opacity='.5' filter='url(%23c)' d='M121.8 174C59.2 153.1 0 174 0 174s63.5-73.8 87-94c24.4-20.9 87-80 87-80S107.9 104.4 121.8 174z'/%3E%3Cpath fill='url(%23b)' d='M142.7 142.7C59.2 142.7 0 174 0 174s42-66.3 74.9-99.3S174 0 174 0S142.7 62.6 142.7 142.7z'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top left;
}
.get-started {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.border-panel {
    width: 85%;
    margin-top: 10rem;
    height: 70.5vh;
    background: #fff;
    display: flex;
    justify-content: center;
    border: 2px solid #333;
}

.left-side-card {
    width: 50%;
    height: 50%;
    text-align: center;
}

.left-side-card h1 {
    font-size: 2rem;
    color: #003049;
    width: 80%;
    margin: 4rem auto 1rem;
    font-family: "Aladin";
    font-weight: 700;
}

.left-side-card p {
    font-size: 1.5rem;
    color: #333;
    width: 60%;
    margin: 10px auto;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bold;
}
.right-side-card {
    width: 50%;
    height: 70vh;
    overflow: hidden;
}

.right-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .border-panel {
        width: 90%;
        height: 85vh;
        flex-direction: column;
        align-items: center;
        margin-top: 5rem;
    }
    .left-side-card {
        width: 80%;
        text-align: center;
    }
    .left-side-card h1 {
        font-size: 2.5rem;
        width: 100%;
        margin: 3rem auto 1rem;
    }
    .left-side-card p {
        font-size: 1.3rem;
        width: 80%;
        margin: 10px auto;
    }
    .right-side-card{
        width: 90%;
    }
    .right-side-card img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .border-panel {
        width: 95%;
    }
    .left-side-card {
        width: 90%;
    }
    .left-side-card h1 {
        font-size: 2rem;
    }
    .left-side-card p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .border-panel {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        padding: 1rem;
    }
    .left-side-card {
        width: 100%;
    }
    .left-side-card h1 {
        font-size: 1.8rem;
        margin: 2rem auto 0.5rem;
    }
    .left-side-card p {
        font-size: 1rem;
        width: 90%;
    }
}

.get-started-2 {
    width: 100%;
    display: flex;
    justify-content: center;
}
.right-side-cards {
    width: 50%;
    height: 100%;
}
.right-side-cards img {
    width: 100%;
    height: 70vh;
    object-fit: cover; /* Ensures the image fills the div without distortion */
}
.border-panels{
    width: 85%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}
/* Signup Box Styling */
.signup-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: 3rem auto;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Input Field */
.signup-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'aclonica', cursive;
    color: #5B2333;
    outline: none;
    transition: border 0.3s ease-in-out;
}

.signup-box input:focus {
    border-color: black;
}

/* Signup Button */
.signup-box button {
    padding: 12px 20px;
    border: none;
    background: #F7B733;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Button Hover Effect */
.signup-box button:hover {
    background: #333;
}

/* Button Click Animation */
.signup-box button:active {
    transform: scale(0.95);
}
/* Popup Message Styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #001c2c; /* A darker background shade */
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.popup p {
    color: #FC4A1A; /* Text color */
}

/* Show Popup Animation */
.popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}



/* Button Hover Effect */
.signup-box button:hover {
    background: #FC4A1A;
}

/* Button Click Animation */
.signup-box button:active {
    transform: scale(0.95);
}

/* Icon Styling */
.signup-box button i {
    font-size: 1rem;
    animation: iconMove 0.6s infinite alternate ease-in-out;
}

/* Icon Animation */
@keyframes iconMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(4px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .right-side-card {
        width: 100%;
        height: auto;
    }
    .right-side-card img {
        height: auto;
        max-height: 50vh;
    }
    .border-panels {
        margin-top: 3rem;
    }
    .signup-box {
        max-width: 90%;
    }
    .buttons {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
        width: 80%; /* Adjust the width to be a bit smaller on mobile */
        margin: 0 auto;
    }

    .buttons a {
        width: 100%; /* Make buttons take full width */
        margin-bottom: 10px; /* Add space between buttons */
    }
}

@media (max-width: 480px) {
    .right-side-card img {
        height: auto;
        max-height: 40vh;
    }
    .signup-box {
        flex-direction: column;
        width: 100%;
    }
    .signup-box input,
    .signup-box button {
        width: 100%;
    }
    .popup {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-bar {
        width: 100%;
        padding: 10px;
    }
    .nav__contact {
        width: 50%;
        font-size: 16px;
    }
    .banner h1 {
        font-size: 3rem;
    }
    .buttons {
        width: 80%;
        flex-direction: column;
    }
    .buttons a {
        margin-bottom: 10px;
    }
    .content-card {
        flex-direction: column;
    }
    .content-card__image {
        width: 100%;
        margin: 20px 0;
    }
    .content-card__text {
        margin-top: 5rem;
        margin-left: 0;
    }
    .info-cards {
        flex-direction: column;
    }
    .small-info-cards {
        width: 100%;
        margin-bottom: 20px;
    }
    .skill-cards {
        flex-direction: column;
        margin-top: 20px;
    }
    .skill-card-panels {
        width: 100%;
        margin-left: 0;
    }
    .team-profile {
        width: 100%;
        margin-bottom: 20px;
    }
    .team-profile-pic {
        width: 80px;
        height: 80px;
    }
    .team-info {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .nav-bar__menu {
        width: 100%;
        justify-content: flex-start;
    }
    .banner h1 {
        font-size: 2.5rem;
    }
    .banner p {
        font-size: 1.2rem;
    }
    .buttons a {
        width: 100%;
    }
    .content-card {
        flex-direction: column;
    }
    .content-card__text {
        margin-left: 0;
        margin-top: 2rem;
    }
    .small-info-cards {
        width: 100%;
        margin: 10px 0;
    }
    .info-cards {
        flex-direction: column;
    }
    .skill-cards {
        flex-direction: column;
        justify-content: center;
    }
    .skill-card-panels {
        width: 100%;
        margin-left: 0;
    }
    .team-profile {
        width: 100%;
    }
    .team-profile-pic {
        width: 80px;
        height: 80px;
    }
    .team-title-info h2 {
        font-size: 2rem;
    }
    .team-title-info p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-bar__menu a {
        font-size: 16px;
        margin-right: 10px;
    }
    .banner h1 {
        font-size: 2rem;
    }
    .buttons {
        width: 50%;
        display: flex;
        flex-direction: row;
        padding: 0px;
    }
    .content-card__text h2 {
        font-size: 1.8rem;
    }
    .content-card__text p {
        font-size: 1rem;
    }
    .small-info-cards img {
        width: 100%;
        height: auto;
    }
    .info p {
        font-size: 1rem;
    }
    .team-profile-pic {
        width: 60px;
        height: 60px;
    }
    .team-profile {
        width: 100%;
        margin-bottom: 20px;
    }
    .signup-box {
        width: 90%;
    }
    .footer p {
        font-size: 1rem;
    }
}

footer {
    position: relative;
    width: 100%;
    background: #5B2333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px; /* Added padding for better spacing */
}

/* Social Links & Menu */
.social-links-footer, .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 15px; /* Ensures spacing between items */
}

.social-links-footer li, .menu li {
    list-style: none;
}

.social-links-footer a, .menu a {
    text-decoration: none;
    font-size: 1.8rem; /* Slightly smaller for responsiveness */
    color: #F7F4F3;
    margin: 0 8px;
    display: inline-block;
    transition: 0.3s;
}
.menu a{
    text-decoration: none;
    color: #F7F4F3;
    margin: 0 10px;
    font-size: 1.4rem;
    opacity: 0.7;
    display: inline-block;
}
.social-links-footer a:hover {
    color: #F7F4F3;
    transform: translateY(-5px); /* Keeps the slight bounce effect */
    text-shadow: 0 0 10px rgba(247, 244, 243, 0.8), 
                 0 0 20px rgba(247, 244, 243, 0.6), 
                 0 0 30px rgba(247, 244, 243, 0.4);
}
.menu a:hover {
    opacity: 1;
    transform: translateY(-5px); /* Keeps the slight bounce effect */
    text-shadow: 0 0 10px rgba(247, 244, 243, 0.8), 
                 0 0 20px rgba(247, 244, 243, 0.6), 
                 0 0 30px rgba(247, 244, 243, 0.4);
}

/* Footer Text */
footer p {
    color: #F7F4F3;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bolder;
    font-size: 1.3rem;
    margin: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
     .menu {
        flex-direction: column; /* Stack elements on smaller screens */
        gap: 20px;
    }
    .social-links-footer a, .menu a {
        font-size: 1.5rem;
        margin: 5px 0;
    }
    footer p {
        font-size: 1.2rem;
        margin: 15px;
    }
}

@media (max-width: 480px) {
     .menu a {
        font-size: 1.3rem;
    }
    footer p {
        font-size: 1rem;
    }
}
