* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body {
    overflow-x: hidden;
}
.banner {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(DSC04526.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner img {
    margin: 5px 10px;
    width: 250px;
    cursor: pointer;
}
.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    top: 175%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    animation: bounce 3s infinite;
}
.scroll-down-arrow a {
    text-decoration: none;
    color: inherit;
}
.scroll-down-arrow:hover {
    color: #006B80;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);}
    40% {
        transform: translateX(-50%) translateY(-10px);}
    60% {
        transform: translateX(-50%) translateY(-5px);}
}
.navbar {
    position: absolute;
    top: 10px;
    right: 0;
    padding: 20px;
}
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.navbar ul li a::after {
    content: "";
    height: 3px;
    width: 0;
    background: #006B80;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
}
.navbar ul li a:hover::after {
    width: 100%;
}
.content {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.content h1 {
    font-size: 50px;
    margin-top: 80px;
}
.content p {
    margin: 10px 0 40px;
    font-size: 25px;
    color: #fff;
}
button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 1px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #006B80;
    background: transparent;
    color: #fff;
    font-size: larger;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
span {
    background: #006B80;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span {
    width: 100%;
}
button:hover {
    border: 2px solid #006B80;
}
nav .fa {
    display: none;
}

@media (max-width: 750px) {
    .content h1 {
        font-size: 34px;
    }
    .navbar {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        position: fixed;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100%;
        background: #006B80;
        z-index: 2;
    }
    .navbar.active {
        opacity: 1;
        pointer-events: auto;
        right: 0;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 32px;
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 35px;
    }
    .navbar ul {
        padding: 10px;
    }
    .navbar ul li {
        display: block;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/*----------------Services----------------*/
.services {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 75px;
}
h1 {
    font-size: 40px;
    font-weight: 600;
}
p {
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Added for responsiveness */
}
.service-col {
    flex-basis: 31%;
    background: rgba(0,107,128, 0.2); 
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3 {
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    margin: 10px 0;
}
.service-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0, 0.2);
}
@media (max-width: 750px) {
    .row {
        flex-direction: column;
    }
}

/*----------------About----------------*/
.About {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.About p {
    width: 100%;
    padding-top: 30px;
    font-size: 18px;
}

/*----------------Testimonials----------------*/
.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}
.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: rgba(0,107,128, 0.2);
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    transition: 0.5s;
}
.testimonial-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p {
    padding: 0;
}
.testimonial-col h3 {
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa {
    color: #F7B704;
}
.testimonial-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0, 0.2);
}
@media (max-width: 750px) {
    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*----------------Lead Generation----------------*/
.lead-form {
 width: 75%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.lead-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.lead-form h2 {
text-align: center;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.lead-form button {
  padding: 12px;
  margin: auto;
  margin-top: 20px;
  width: 100%;
  background-color: #006B80;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

.lead-form button:hover {
  background-color: #004d66;
  
}
.lead-form button {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.lead-form button:hover::after {
  opacity: 0;
}

/* ✅ Ready state hover */
.lead-form button.ready:hover {
  background-color: #004d66;
}

.lead-form button.ready:hover::after {
  content: "✅";
  opacity: 1;
}

/* ❌ Not ready state hover */
.lead-form button:not(.ready):hover::after {
  content: "❌";
  opacity: 1;
}

.lead-form button::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  color: white;
  font-size: 1.2rem;
}



/*----------------call to action----------------*/
.cta {
    margin: 50px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(ourTeam.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding-left: 10%;
    padding-right: 10%;
}
@media (max-width: 750px) {
    .cta h1 {
        font-size: 32px;
    }
}

/*----------------Footer----------------*/
.footer {
    width: 100%;
    text-align: center;
    background-color: rgba(0,107,128, 0.2);
}
.icons .fa {
    font-size: large;
    color: #006B80;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.footer p {
    font-size: 7px;
}

/*------------------------------------------------Services Page------------------------------------------------*/
/* Add this rule to target the services page specifically */
.services-page .service-col h3:hover,
.services-page .service-col p:hover {
    box-shadow: none;
}
.services-page .service-col:hover img {
    box-shadow: 0 0 20px 0px rgba(0,0,0, 0.2);
}
.services-page .service-col:hover {
    box-shadow: none;
}
.services-page .service-col{
        flex-basis: 48%;
        background: rgba(0,107,128, 0.2); 
        border-radius: 10px;
        margin-bottom: -30%;
        box-sizing: border-box;
        transition: 0.5s;
    background: none;
}
@media (max-width: 750px) {
.services-page .service-col{
        margin-bottom: 5%;
}
}
/*----------------Header----------------*/
.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.65)), url(DSC04660.jpg);
    background-position: center;
    background-size: cover;
}
.sub-header h1 {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 50px;
    margin-top: 80px;
}
.sub-header img {
    margin: 5px 10px;
    width: 250px;
    cursor: pointer;
}
/*----------------Services Content----------------*/
.our-services {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}
.our-services-col {
    flex-basis: 48%;
    padding: 30px;
    transition: 0.5s;
}
.our-services-col h1 {
    padding-top: 35px;
    padding-left: 0;
    padding-right: 0;
}
.our-services-col h4 {
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    margin: 10px 0;
}
.our-services-col p {
    padding: 15px 0;
    padding-left: 0;
    padding-right: 0;
}
.large-text {
    font-size: 24px;
  }
.blue-btn {
    width: 200px;
    padding: 15px 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    margin: 20px auto;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #006B80;
    background: #006B80;
    color: #fff;
    font-size: larger;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.5s;
    display: flex;
    justify-content: center;
}
.blue-btn span {
    background: #006B80;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
.blue-btn:hover span {
    width: 100%;
}
.blue-btn:hover {
    border: 2px solid #006B80;
    background: rgba(0,107,128, 0.5);
}
.media-container{
    width: 100%;
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 10px;
    transition: box-shadow 0.5s ease-in-out;
}
.service-media {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}
/*------------------------------------------------Gallery Page------------------------------------------------*/
.g-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(IMG_4732.jpg);
    background-position: center;
    background-size: cover;
}
.g-header h1 {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 50px;
    margin-top: 80px;
}
.g-header img {
    margin: 5px 10px;
    width: 250px;
    cursor: pointer;
}

/*----------------Gallery----------------*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 20px;
}
.image-container {
    display: flex;
    flex-basis: 33.33%;
}
.image-container img {
    width: 100%;
    margin: 15px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

.aspect-ratio img,
.aspect-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-item {
    flex-basis: calc(25% - 20px);
    margin-bottom: 7px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.gallery-item img:hover,
.gallery-item video:hover {
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

@media (max-width: 750px) {
    .gallery-item {
        flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}
