body {
    font-family: 'Arial', sans-serif;
}

#banner {
    background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.4)),url('./images/thinks.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 2s ease-in-out;
}
.navbar{
    background-color:#000000 !important;
    position:fixed;
    width:100% !important;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width:768px) {
    #banner h1{
        font-size: 38px;
        font-weight:bold;
    }
}
@media screen and (max-width:480px) {
    #banner h1{
        font-size: 38px;
        font-weight:bold;
    }
}
.service-box {
    /* padding: 20px; */
    border: 1px solid #ddd;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    #banner {
        height: 50vh;
    }
    .service-box {
        margin-bottom: 20px;
    }
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

h2 {
    color: #343a40;
    font-weight: bold;
    margin-bottom: 30px;
}

#about p {
    color: #6c757d;
    font-size: 1.1em;
    line-height: 1.6;
}

#about ul {
    list-style-type: none;
    padding: 0;
}

#about ul li {
    background: #e9ecef;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#about ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    #about ul {
        padding-left: 15px;
        padding-right: 15px;
    }
}



#experience p {
    color: #6c757d;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#experience ul {
    list-style-type: none;
    padding: 0;
}

#experience ul li {
    background: #e9ecef;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#experience ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    #experience ul {
        padding-left: 15px;
        padding-right: 15px;
    }
}

#contact {
    background-color: #f7f7f7;
    padding: 3rem 0;
}

#contact h2 {
    color: #ff6f61;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#contact p {
    color: #6c757d;
    font-size: 1.1em;
    margin: 15px 0;
}

#contact p:hover {
    color: #ff6f61;
    transition: color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-light {
    background-color: #f7f7f7 !important;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 3rem 0;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-links {
    margin-top: 10px;
    margin-bottom:2rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    margin: 0 15px;
    transition: color 0.3s, border-bottom 0.3s;
}

.footer-link:hover {
    color: #ff6f61;
    border-bottom: 2px solid #ff6f61;
}

.footer-link:first-child {
    margin-left: 0;
}

.footer-link:last-child {
    margin-right: 0;
}



#call-button {
    position: fixed;
    bottom: 0; /* Position at the bottom */
    left: 0;
    width: 100%;
    height: 60px; /* Adjust height as needed */
    background-color: black; /* Background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it appears above other content */
}

.full-width-button {
    color: white; /* Text color */
    font-size: 18px; /* Font size */
    text-decoration: none;
    text-align: center;
    line-height: 60px; /* Align text vertically */
    display: block;
    width: 100%;
}
  
  .full-width-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shiningWave 3s linear infinite;
    z-index: 0;
  }
  
  .full-width-button span {
    position: relative;
    z-index: 2;
  }
  
  @keyframes shiningWave {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  