body {
    font-family: sans-serif !important;
    box-sizing: border-box !important;
    background-color: black !important;
    color: white !important;
    overflow-x: hidden; 
}

/* -----------header-------------- */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav{
    font-size: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid white;
    background-color: rgb(0, 0, 0);
    overflow-x: hidden; 
}

.navbar-toggler{
    color: white !important;
    visibility: visible !important;
}


.businesslogo {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fallInPlace 1.5s ease-in-out;
    max-width: 70vh;
}

.businessName {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fallInPlace 1.5s ease-in-out;
    max-width: 70vh;
} 

.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-animate {
    opacity: 1;
    transform: translateY(0);
}

.banner .scroll-fade-in,
.aboutUs_row .scroll-fade-in,
.ourTeam_div .scroll-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.container-fluid {
    display: flex;
    justify-content: space-between;
}

.navbar-collapse{
    justify-content: right;
}
.nav-item{
    padding: 0 10px;
}

/* -------------footer------------- */
footer {
    background-color: black;
    color: white;
    padding: 10px;
    justify-content: center;
}

.footer_form {
    display: flex !important;
}

.form_outer_div {
    margin: 50px auto 100px !important;
    width: 75% !important;
}

.form_outer_div h1 {
    text-align: center !important;
    font-weight: 700 !important;
}

.form_inner_div {
    display: flex !important;
    flex-direction: column !important;
    row-gap: 30px !important;
}

footer input {
    background-color: black !important;
    color: white !important;
    border: 1px solid white !important;
    width: 100% !important;
    height: 50px !important;
}

footer form .submit_btn {
    background-color: white !important;
    color: black !important;
    width: 160px !important;
    height: 50px !important;
}

@media screen and (max-width: 380px) {
    /* ------------footer---------------- */
    footer input {
        height: 30px !important;
    }

    footer form .submit_btn {
        width: 100px !important;
        height: 30px !important;
    }
}

/* -------------banner section-------------- */
.banner {
    background-color: black !important;
    color: white !important;
    padding: 100px 15% 70px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow-x: hidden; 
}

.down_arrow {
    text-align: center !important;
    padding: 10px !important;
}

.down_arrow a {
    text-decoration: none !important;
    color: white !important;
}

.banner_heading_img {
    display: flex;
    overflow-x: hidden; 
}

.banner_heading_img .heading {
    width: 100%;
    margin-right: 0px;
    overflow-x: hidden; 
}

.banner_heading_img .heading h1 {
    font-size: 70px;
    animation: fadeIn 2s ease-in-out 1;
    overflow-x: hidden; 
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    /* Place text over the logo image */
    .businessName {
      position: absolute;
      top: 70%; /* Adjust the top position as needed */
      left: 30%; /* Adjust the left position as needed */
      margin-right: 20px;
      z-index: 1; /* Ensure the text is above the image */
      text-align: center;
      font-size: 24px; /* Adjust the font size as needed */
    }
  
    /* Adjust the logo image size */
    .banner_heading_img .banner_img img {
      width: 100%; /* Ensure the image takes the full width */
      margin: 0 auto; /* Center the image */
      display: block;
      position: center;
      bottom: 0px;
      z-index: 0; /* Ensure the image stays below the text */
    }
  }
  

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.banner_heading_img .banner_img {
    position: relative;
    overflow-x: hidden; 
}

.banner_heading_img .banner_img img {
    width: 100%;
    margin: 0px;
    position: relative;
    bottom: 0px;
    overflow-x: hidden; 
}
/* -----------------About Us Section-------------- */
.aboutUs_row{
    display: flex;
    margin: 100px 100px;
    justify-content: space-between;
    align-items: center;
}
.aboutUs_pic{
    width: 30%;
}
.aboutUs_pic img{
    width: 100%;
}
.aboutUs_text h1{
    color: white;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 50px;
}
.aboutUs_text p{
    font-size: 20px;
}
.aboutUs_text{
    width: 60%;
    margin-left: 50px;
}
@media screen and (min-width:1290px) and (max-width:1350px){
    /* ------------About Us Section---------------- */
    .aboutUs_row{
        align-items: center;
    }
}
@media screen and (min-width:1110px) and (max-width:1290px){
    /* ------------About Us Section---------------- */
    .aboutUs_row{
        margin: 100px 70px;
    }
    .aboutUs_text h1{
        margin-bottom: 30px;
    }
    .aboutUs_row{
        align-items: center;
    }
}
@media screen and (min-width:960px) and (max-width:1110px){
    /* ------------About Us Section---------------- */
    .aboutUs_row{
        margin: 100px 70px;
    }
    .aboutUs_text h1{
        margin-bottom: 20px;
    }
    .aboutUs_row{
        align-items: center;
    }
}
@media screen and (min-width:767px) and (max-width:960px){
    /* ------------About Us Section---------------- */
    .aboutUs_pic{
        width: 40%;
        padding: 0 30px 0 0;
    }
    .aboutUs_row{
        margin: 80px 50px;
    }
    .aboutUs_text h1{
        margin-bottom: 20px;
    }
    .aboutUs_row{
        align-items: center;
    }
    .aboutUs_text p{
        font-size: 25px;
    }
}
@media screen  and (max-width:767px){
    /* ------------About Us Section---------------- */
    .aboutUs_row{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .aboutUs_row{
        display: block;
        text-align: center;
        margin: 50px auto;
    }
    .aboutUs_text h1{
        margin-bottom: auto;
    }
    .aboutUs_text{
        width: 100%;
        margin-left: 0px;
    }
    .aboutUs_text p{
        font-size: 25px;
    }
}
@media screen  and (min-width:600px) and (max-width:767px){
    .aboutUs_text h1{
        padding-bottom: 15px;
    }
    .aboutUs_text p{
        padding: 0 70px;
    }
    .aboutUs_pic{
        margin: 0 auto;
        padding: 20px;
        width: 50%;
    }
    .aboutUs_text p{
        font-size: 25px;
    }
}
@media screen and (min-width:460px) and (max-width:600px){
     /* ------------About Us Section---------------- */
    .aboutUs_text h1{
        padding-bottom: 10px;
    }
    .aboutUs_text p{
        padding: 0 70px;
    }
    .aboutUs_pic{
        margin: 0 auto;
        padding: 20px;
        width: 60%;
    }
    .aboutUs_text p{
        font-size: 25px;
    }
}
@media screen  and (max-width:460px){
    /* ------------About Us Section---------------- */
   .aboutUs_text h1{
       padding-bottom: 10px;
   }
   .aboutUs_text p{
       padding: 0 50px;
   }
   .aboutUs_pic{
       margin: 0 auto;
       padding: 20px;
       width: 80%;
   }

   .aboutUs_text p{
    font-size: 25px;
}
}
/* --------------Our Team Section----------------- */
/* --------------Our Team Section----------------- */
.ourTeam_div {
    margin: 100px 0; /* Change this to adjust vertical spacing */
    color: black;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap;
    align-items: center; 
}

.cards_div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 90%;
    margin-bottom: 20px;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .cards_div {
      margin-left: 0; /* Remove the left margin for mobile screens */
    }
  }
  .scroll-animate {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* Individual team card styles (no changes necessary) */
.team {
    width: 80%;
    min-width: 400px;
    margin-right: 20px;
    margin-left: 20px;
    padding: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: black;
}
.gallery_section{
    width: 100%;
    min-height: 300px;
    min-width: 400px;
    justify-self: center;
    margin: 0 80px 20px 0;
    padding: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: black;
}
.ourTeam_div>h1{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 30px;
}
.team:hover {
    background-color: rgb(195, 219, 246);
    color: rgb(0, 0, 0);
    border-radius: 25px;
    transition-delay: 0.3s;
}
.team h1{
    font-weight: bold;
    font-size: 40px;
    line-height: 61px;
}
.team p{
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
}
@media screen and (min-width:1290px) and (max-width:1410px){
    /* --------------Our Team Section----------------- */
    .ourTeam_div>h1, .aboutUs_text h1{
        font-size: 50px;
    }
    .team_div .team h1{
       font-size: 25px;
    }
    .team_div .team p, .aboutUs_text p{
        font-size: 18px;
    }
}
@media screen and (min-width:1110px) and (max-width:1290px){
    /* --------------Our Team Section----------------- */
    .ourTeam_div>h1, .aboutUs_text h1{
        font-size: 40px;
    }
    .team_div .team h1{
       font-size: 22px;
    }
    .team_div .team p, .aboutUs_text p{
        font-size: 17px;
    }
}
@media screen and (min-width:960px) and (max-width:1110px){
    /* --------------Our Team Section----------------- */
    .ourTeam_div{
        margin: 100px 70px;
    }
    .ourTeam_div>h1, .aboutUs_text h1{
        font-size: 35px;
    }
    .team_div .team h1{
       font-size: 20px;
    }
    .team_div .team p, .aboutUs_text p{
        font-size: 15px;
    }
}
@media screen and (min-width:768px) and (max-width:960px){
    /* --------------Our Team Section----------------- */
    .ourTeam_div{
        margin: 50px 50px;
        
    }
    .scroll-animate {
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }
    .ourTeam_div>h1, .aboutUs_text h1{
        font-size: 30px;
    }
    .team_div .team h1{
       font-size: 18px;
    }
    .team_div .team p, .aboutUs_text p{
        font-size: 15px;
    }
}
@media screen and (max-width:768px){
    /* --------------Our Team Section----------------- */
    .ourTeam_div{
        margin: 50px 50px;
    }
    .scroll-animate {
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }
    .ourTeam_div>h1, .aboutUs_text h1{
        font-size: 26px;
    }
    .team_div .team h1{
       font-size: 17px;
    }
    .team_div .team p, .aboutUs_text p{
        font-size: 14px;
    }
}

/* Add these styles to your existing CSS */
.view-gallery-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 50px; /* Makes it pill-shaped */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
    cursor: pointer;
  }
  
  .view-gallery-button:hover {
    background-color: white;
    color: black;
  }
  
  .view-gallery-button:active {
    transform: scale(0.95);
  }
  .underdog-sphere-image {
    display: block;
    margin: 20px auto; /* Adjust margin for positioning */
    max-width: 50%; /* Set the maximum width to 10% of the window width */
    width: 20vh; /* Adjust the width as needed */
  }
  h3 {
    white-space: normal; /* This allows text to wrap */
    line-height: 1.2; /* Adjust this value to control line spacing */
  }
  
  .team-img-container {
    width: 100%;
    position: relative;
    padding-top: 10%; /* 1:1 Aspect Ratio (change this as needed) */
    overflow: hidden;
}
/* Landing Page */
.landing-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Ensure it's on top of other content */
  }
  
  .welcome-text {
    font-size: 40px;
    animation: fadeIn 2s ease-in-out 1;
  }
  
  .blue-bar {
    width: 70vh;
    height: 5px;
    background-color: rgb(30, 176, 255);
    opacity: 50%;
    box-shadow: 0 0 10px 5px rgba(30, 176, 255, 0.479); 
  }

/* Fix the menu bar at the top */
#menu-bar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #101010; /* Change the background color as needed */
    z-index: 1000;
  }
  
  /* Style the ticker */
  #ticker.fixed-top {
    position: fixed;
    top: 50px; /* Adjust this value as needed to position the ticker below the menu bar */
    left: 0;
    width: 100%;
    background-color: #555; /* Change the background color as needed */
    color: #fff; /* Change the text color as needed */
    padding: 10px;
    z-index: 1000;
    text-align: center;
  }
  
  /* Additional styles for the ticker text (optional) */
  #ticker.fixed-top span {
    font-weight: bold;
    font-size: 18px;
  }
  
  /* Style the ticker container */
  #ticker.fixed-top {
    position: fixed;
    top: 50px; /* Adjust this value as needed to position the ticker below the menu bar */
    left: 0;
    width: 100%;
    background-color: #0c0c0c; /* Change the background color as needed */
    padding: 5px 0;
    z-index: 1000;
    overflow: hidden;
  }
  
.ticker-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollText 20s linear infinite;
    font-family: 'VT323', monospace; /* Use the VT323 font for a ticker tape look */
    font-size: 26px;
    color: #d4ff00; /* Blue text color */
    text-shadow: 0 0 10px #d9ff00; /* Glowing drop shadow effect */
  }
  
  @media screen and (max-width: 768px) {
    /* Adjust the positioning for the ticker tape */
    #ticker.fixed-top {
      top: 27px; /* Example adjustment for positioning */
    }
  }
  /* Keyframes for the scrolling animation */
  @keyframes scrollText {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }  
  
  /* Apply the animation to the ticker text */
  .ticker-text span {
    animation: scrollText 20s linear infinite; /* Adjust the speed as needed */
  }
  
  #socials {
    text-align: center; /* Center the icons horizontally */
  }
/* Default styles for social links */
.social-links {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 70px; /* Adjust icon size as needed */
    height: 70px; /* Adjust icon size as needed */
    margin: 0 20px; /* Adjust margin between icons */
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .social-icon:hover {
    transform: scale(1.2); /* Scale up the icon on hover */
  }
  
  /* Media query for mobile devices */
  @media screen and (max-width: 768px) {
    .social-links {
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 10px;
    }
  
    .social-icon {
      width: 40px; /* Adjusted size for mobile */
      height: 40px; /* Adjusted size for mobile */
      margin: 10px; /* Adjusted margin for mobile */
    }
  }
  
  
