@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
    --brand: #ff4d29;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: #ee6600;
}

section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.text-brand {
    color: #ee6600 !important;
}


.animated-imgs {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-imgs:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-slider .owl-prev,
.hero-slider .owl-next{
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.12s ease;
    margin-top: -30px !important;
}

/* Text Animation */
.animated-text {
    animation: slideIn 2s ease-in-out forwards;
    opacity: 0; /* Initially hidden */
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animated-img {
    animation: float 3s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


.aboutclass{
    font-size: 20px;
}

.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: #ee6600 !important; 
}

.owl-dot.active span{
    background-color: #ee6600 !important;
}


.hero-slider .slide {
    position: relative;
    height: 120vh; /* Full viewport height */
    width: 100%; /* Full viewport width */
}

.hero-slider .slide img,
.hero-slider .slide .video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover; /* Maintain aspect ratio and cover the element */
    z-index: -1; /* Behind the content */
}


.video-section .item{
    opacity:0.4;
    transition:.4s ease all;
    margin:20px 20px;
    transform:scale(.8);
  }
  
  @media(max-width:1000px){
    .video-section .item{margin:0; transform:scale(.9)}
  }
  
  .video-section .active .item{
    opacity:1;
    transform:scale(1);
  } 
  

  
  .video-section .owl-item {
      -webkit-backface-visibility: hidden;
      -webkit-transform: translateZ(0) scale(1.0, 1.0);
  }
  
  .video-section video{
    max-width:100%;
    height:auto;
  }

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
}


 
.video-section .item video,
.video-section .item img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}


@media (max-width: 768px) {
    .video-section .item video,
    .video-section .item img {
        width: auto;
        height: 40vh; 
        object-fit: cover;
    }

}



.logo-img {
    width: 80px;
    height: auto;
  }
  


/* navbar */
.top-nav {
    background-color: #ee6600;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.navbar {
    box-shadow: var(--shadow);
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: #ee6600;
}
.conditions-section{
    margin: 20px 0;
}
.conditions-section a{
   color: #fff;
   margin: 0 10px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
    color: #ee6600;
}

.navbar .navbar-nav .nav-link.active {
    color: #ee6600;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: #ee6600;
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: #ee6600;
    background-color: #ee6600;
    color: #fff;
}

.btn-brand:hover {
    background-color: #ee6600;
    border-color: #ee6600;
    color: #fff;
}

.intro {margin-bottom: 36px;
text-align: center;}

.intro p {
    max-width: 500px;
}
.intro h6{
    color: #ee6600;
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-box {
    align-items: center;
    display: flex;
}

.info-box img {
    width: 90px;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.gallery-item {
    display: none; /* Hide all items by default */
}

.gallery-item.visible {
    display: block; /* Show only visible items */
}


.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    cursor: pointer;
    animation: bounce 3s infinite;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
}


#milestone {
    background: linear-gradient(#ee6700a3, #ee670092), url(../img/Bodynetic\ \(2\).svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#milestone h1,
#milestone p {
    color: #fff;
}

.service {
    padding: 32px;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
}

.service img {
    width: 90px;
}


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: #ee6600;
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.project h2,
.project h6 {
    color: #fff;
}

.team-member {
    text-align: center;
}

.team-member .image{
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 216, 208, 0.582);
    opacity: 0;
    transition: all 0.4s ease;
}


.TANK_COVER{
    border: 1px solid;
    transition: all 0.4s ease;
    border-radius: 25px;
    display: inline-block;
    padding: 5px  50px;
}
.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

#reviews {

    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: #ee6600;
}

.review .stars {
    color: #ee6600;
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}


.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ee6600;
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: #ee6600;
    text-decoration: underline;
}



.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ee6600;
}


.blog-post img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post img:hover {
    transform: scale(1.05); /* Zoom in effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);

    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FF9A00;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
    color: black;
    border-color: var(--light);
    background-color: #FF9A00;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FF9A00;
}

.logo {
    width: 55px;
    /* Set the desired width */
    height: auto;
    /* Maintain aspect ratio */

}

.logo-footer {
    width: 200px;
    height: auto;
}


.btn-link {
    text-decoration: none; /* Remove underline */
}

.btn-link:hover {
    text-decoration: none; /* Ensure no underline on hover */
}


/* Default styling for larger screens */
#whatisfrp .info-box {
    text-align: left;
}

#whatisfrp .img-fluid {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    #whatisfrp .row {
        flex-direction: column;
    }

    #whatisfrp .col-12 {
        order: 1; /* Ensure heading comes first on mobile */
    }

    #whatisfrp .col-lg-5 {
        margin-bottom: 20px; /* Add margin below image on mobile */
    }
    
    #whatisfrp .order-lg-1 {
        order: 2; /* Ensure image comes second on mobile */
    }

    #whatisfrp .order-lg-2 {
        order: 3; /* Ensure paragraph comes last on mobile */
    }
}
