*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
overflow-x:hidden;
}

/*****************
HEADER
*****************/

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
transition:.4s;
padding:18px 0;
}

header.sticky{
background:#01273d;
box-shadow:0 8px 25px rgba(0,0,0,.15);
padding:12px 0;
}

.container{
width:90%;
max-width:1280px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:34px;
font-weight:800;
color:#fff;
text-decoration:none;
}

.logo span{
color:#22d3ee;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#22d3ee;
}

.header-btn{
background:#22d3ee;
color:#fff;
padding:13px 30px;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.header-btn:hover{
background:#06b6d4;
}

.menu-toggle{
display:none;
font-size:30px;
color:#fff;
cursor:pointer;
}

/*****************
HERO
*****************/

.hero{

height:100vh;

background:
linear-gradient(rgba(0,33,52,.75),rgba(0,79,110,.65)),
url("https://images.unsplash.com/photo-1520301255226-bf5f144451c1?q=80&w=1920&auto=format&fit=crop");

background-size:cover;
background-position:center;

display:flex;
align-items:center;

}

.hero-content{

width:90%;
max-width:1280px;
margin:auto;
color:#fff;

}

.tag{

display:inline-block;
padding:10px 24px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(10px);
border-radius:40px;
margin-bottom:25px;
font-size:14px;
margin-top: 90px;

}

.hero h1{

font-size:70px;
line-height:1.1;
max-width:700px;
margin-bottom:25px;

}

.hero h1 span{
color:#22d3ee;
}

.hero p{

font-size:18px;
line-height:1.8;
max-width:620px;
margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:20px;
flex-wrap:wrap;

}

.btn{

display:inline-block;
padding:15px 35px;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.4s;

}

.btn-primary{

background:#22d3ee;
color:#fff;

}

.btn-primary:hover{

background:#06b6d4;

}

.btn-outline{

border:2px solid #fff;
color:#fff;

}

.btn-outline:hover{

background:#fff;
color:#0f172a;

}

/*****************
RESPONSIVE
*****************/

@media(max-width:991px){

.hero h1{

font-size:50px;

}

nav ul{

gap:20px;

}

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

nav{

position:absolute;
top:100%;
left:0;
width:100%;
background:#01273d;

max-height:0;
overflow:hidden;
transition:.4s;

}

nav.active{

max-height:500px;

}

nav ul{

flex-direction:column;
padding:25px;

}

.header-btn{

display:none;

}

.hero{

padding-top:80px;
height:auto;
padding-bottom:80px;

}

.hero-content{
text-align:center;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:16px;
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}
}

@media(max-width:480px){

.logo{
font-size:28px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:15px;
}

.btn{
width:100%;
text-align:center;
}

.hero-buttons{
flex-direction:column;
}

}

/*==============================
ABOUT SECTION
==============================*/

.aqs-about-section{
    width:100%;
    padding:100px 20px;
    position:relative;
}

.aqs-about-container{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/*==============================
LEFT IMAGE
==============================*/

.aqs-about-left{
    position:relative;
}

.aqs-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:35px;
}

.aqs-main-image{
    width:100%;
    display:block;
    border-radius:35px;
    transition:.6s ease;
}

.aqs-image-wrapper:hover .aqs-main-image{
    transform:scale(1.08);
}

/*==============================
TESTIMONIAL CARD
==============================*/

.aqs-testimonial-box{
    position:absolute;
    left:-20px;
    bottom:-45px;
    width:390px;
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.4s ease;
    z-index:2;
    display: none;
}

.aqs-testimonial-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(0,0,0,.18);
}

.aqs-testimonial-icon{
    font-size:90px;
    line-height:1;
    color:#71d4e8;
    margin-bottom:15px;
}

.aqs-testimonial-text{
    font-size:20px;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
}

.aqs-testimonial-name{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.aqs-testimonial-designation{
    font-size:17px;
    color:#555;
}

/*==============================
RIGHT CONTENT
==============================*/

.aqs-about-right{
    animation:aqsFadeUp 1s ease;
}

.aqs-about-subtitle{
    display:inline-block;
    color:#00A8D8;
    text-transform:uppercase;
    letter-spacing:6px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.aqs-about-title{
    font-size:32px;
    line-height:1.05;
    font-weight:800;
    color:#222;
    margin-bottom:35px;
}

.aqs-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;

}

.aqs-about-column{
    width:100%;
}

.aqs-about-description{
    font-size:21px;
    line-height:1.8;
    color:#555;
}

.aqs-button-wrapper{
    margin-top:45px;
}

.aqs-primary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 48px;
    text-decoration:none;
    color:#fff;
    font-size:21px;
    font-weight:600;
    border-radius:60px;
    background:linear-gradient(90deg,#00b7ff,#68b127);
    transition:.4s ease;
}

.aqs-primary-button:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/*==============================
ANIMATION
==============================*/

@keyframes aqsFadeUp{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.aqs-about-left{

    animation:aqsFadeUp .9s ease;

}

.aqs-about-right{

    animation:aqsFadeUp 1.2s ease;

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.aqs-about-container{
grid-template-columns:1fr;
gap:60px;
}

.aqs-about-title{
font-size:32px;
}

.aqs-testimonial-box{
position:relative;
left:0;
bottom:0;
margin-top:-80px;
width:90%;
}

}

/*==============================
MOBILE
==============================*/

@media(max-width:767px){
.aqs-about-section{
padding:70px 18px;

}

.aqs-about-title{
font-size:36px;
}

.aqs-about-grid{
grid-template-columns:1fr;
gap:25px;
}

.aqs-about-description{
font-size:17px;
}

.aqs-testimonial-box{
width:100%;
padding:30px;
margin-top:20px;
}

.aqs-testimonial-icon{
font-size:70px;
}

.aqs-testimonial-text{
font-size:18px;
}

.aqs-primary-button{
width:100%;
font-size:18px;
padding:16px;
}

}

/*==============================
SMALL MOBILE
==============================*/

@media(max-width:480px){

.aqs-about-title{
font-size:30px;
}

.aqs-about-subtitle{
font-size:13px;
letter-spacing:4px;
}

.aqs-testimonial-name{
font-size:16px;
}

.aqs-testimonial-designation{
font-size:15px;
}

}



/*=========================
Counter Section
=========================*/

.aqua-counter-section{
    width:100%;
    padding:90px 20px;
    background:url("../image/water-bg.png") center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* White wave */

.aqua-counter-section::before{
    content:"";
    position:absolute;
    top:-25px;
    left:0;
    width:100%;
    height:70px;
    background:#fff;
    border-bottom-left-radius:60% 100%;
    border-bottom-right-radius:60% 100%;
}

.aqua-counter-container{
    max-width:1300px;
    margin:auto;
}

.aqua-counter-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.aqua-counter-box{
    flex:1;
    min-width:220px;
    text-align:center;
}

.aqua-counter-number{
    font-family:'Oswald',sans-serif;
    font-size:110px;
    line-height:1;
    color:#fff;
    font-weight:700;
}

.aqua-counter-title{
    font-size:18px;
    color:#111;
    margin-top:-8px;
    font-weight:500;
}

/*====================
Responsive
====================*/

@media(max-width:992px){

.aqua-counter-number{
    font-size:80px;
}

}

@media(max-width:768px){

.aqua-counter-row{
    gap:45px;
}

.aqua-counter-box{
    flex:0 0 calc(50% - 30px);
}

.aqua-counter-number{
    font-size:70px;
}

.aqua-counter-title{
    font-size:17px;
}

}

@media(max-width:480px){

.aqua-counter-box{
    flex:100%;
}

.aqua-counter-section{
    padding:70px 20px;
}

.aqua-counter-number{
    font-size:60px;
}

.aqua-counter-title{
    font-size:16px;
}

}



.work-section{
    padding:90px 20px;
}

.work-container{
    max-width:1320px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.work-gallery{
    flex:1;
}

.gallery-top{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.gallery-small{
    width:34%;
}

.gallery-large{
    width:66%;
}

.gallery-small img,
.gallery-large img,
.gallery-bottom img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:35px;
    display:block;
    transition:.4s;
}

.gallery-small{
    height:310px;
}

.gallery-large{
    height:310px;
}

.gallery-bottom{
    height:310px;
}

.gallery-small img:hover,
.gallery-large img:hover,
.gallery-bottom img:hover{
    transform:scale(1.05);
}

.work-content{
    flex:1;
}

.work-subtitle{
    color:#0b9ed7;
    font-size:14px;
    letter-spacing:5px;
    text-transform:uppercase;
    display:block;
    margin-bottom:20px;
}

.work-title{
    font-family:'Barlow Condensed',sans-serif;
    font-size:32px;
    line-height:0.95;
    margin-bottom:30px;
    font-weight:700;
}

.work-description{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:45px;
}

.work-item{
    display:flex;
    gap:25px;
    margin-bottom:35px;
}

.work-number{
    min-width:58px;
    font-family:'Barlow Condensed',sans-serif;
    font-size:72px;
    color:#7c9c00;
    font-weight:700;
    line-height:1;
}

.work-text h4{
    font-family:'Barlow Condensed',sans-serif;
    font-size:26px;
    margin-bottom:10px;
    color:#111;
}

.work-text p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.discover-btn{
    display:inline-block;
    margin-top:10px;
    background:#0b9ed7;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.discover-btn:hover{
    background:#077ba6;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:1100px){

.work-container{
    flex-direction:column;
}

.work-title{
    font-size:58px;
}

}

@media(max-width:768px){

.work-section{
    padding:60px 18px;
}

.gallery-top{
    flex-direction:column;
}

.gallery-small,
.gallery-large{
    width:100%;
    height:260px;
}

.gallery-bottom{
    height:250px;
}

.work-title{
    font-size:46px;
}

.work-description{
    font-size:15px;
}

.work-item{
    gap:15px;
}

.work-number{
    font-size:55px;
}

.work-text h4{
    font-size:22px;
}

}

@media(max-width:480px){

.work-title{
    font-size:38px;
}

.work-subtitle{
    letter-spacing:3px;
}

.work-number{
    font-size:46px;
}

.discover-btn{
    width:100%;
    text-align:center;
}

}


/*=========================
      VIDEO GALLERY
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.video-gallery-section{
    padding:90px 20px;
    background:#f8fbfd;
}

.video-gallery-container{
    max-width:1300px;
    margin:auto;
}

.video-gallery-header{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
}

.video-gallery-subtitle{
    display:inline-block;
    color:#00a2d8;
    font-size:15px;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:15px;
}

.video-gallery-title{
    font-size:48px;
    color:#222;
    margin-bottom:20px;
    line-height:1.2;
    font-weight:700;
}

.video-gallery-text{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.video-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.video-gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.video-gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.video-gallery-frame{
    position:relative;
    width:100%;
    padding-top:56.25%;
    overflow:hidden;
    background:#000;
}

.video-gallery-frame video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-gallery-content{
    padding:22px;
}

.video-gallery-content h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
}

.video-gallery-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

/* Scrollbar for controls (optional) */
video::-webkit-media-controls{
    opacity:.95;
}

/*=========================
      LARGE TABLET
=========================*/

@media(max-width:1024px){

.video-gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.video-gallery-title{
    font-size:40px;
}

}

/*=========================
        TABLET
=========================*/

@media(max-width:768px){

.video-gallery-section{
    padding:70px 15px;
}

.video-gallery-title{
    font-size:34px;
}

.video-gallery-grid{
    grid-template-columns:1fr;
}

.video-gallery-content h3{
    font-size:20px;
}

.video-gallery-content{
    padding:20px;
}

}

/*=========================
        MOBILE
=========================*/

@media(max-width:480px){

.video-gallery-section{
    padding:60px 15px;
}

.video-gallery-title{
    font-size:28px;
}

.video-gallery-subtitle{
    font-size:13px;
    letter-spacing:3px;
}

.video-gallery-content h3{
    font-size:18px;
}

.video-gallery-content p{
    font-size:14px;
}

}















/*==============================
            FOOTER
===============================*/

.fish-footer{
    background:#06233d;
    color:#fff;
    padding:80px 20px 20px;
}

.fish-footer-container{
    max-width:1300px;
    margin:auto;
}

.fish-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:50px;
    margin-bottom:50px;
}

.fish-footer-logo{
    font-size:34px;
    margin-bottom:20px;
    font-weight:700;
}

.fish-footer-logo span{
    color:#00c7ff;
}

.fish-footer-box p{
    color:#c7d6e3;
    line-height:1.8;
    margin-bottom:25px;
}

.fish-footer-box h3{
    font-size:22px;
    margin-bottom:22px;
    position:relative;
}

.fish-footer-box h3::after{
    content:"";
    width:45px;
    height:3px;
    background:#00c7ff;
    position:absolute;
    left:0;
    bottom:-10px;
}

.fish-footer-box ul{
    list-style:none;
}

.fish-footer-box ul li{
    margin-bottom:15px;
}

.fish-footer-box ul li a{
    color:#d4e3ef;
    text-decoration:none;
    transition:.3s;
}

.fish-footer-box ul li a:hover{
    color:#00c7ff;
    padding-left:8px;
}

.fish-contact-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:18px;
    color:#d4e3ef;
}

.fish-contact-item i{
    color:#00c7ff;
    font-size:18px;
    margin-top:4px;
    min-width:18px;
}

.fish-contact-item a{
    color:#d4e3ef;
    text-decoration:none;
}

.fish-contact-item a:hover{
    color:#00c7ff;
}

.fish-footer-social{
    display:flex;
    gap:12px;
}

.fish-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.fish-footer-social a:hover{
    background:#00c7ff;
    transform:translateY(-5px);
}

.fish-footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.fish-footer-bottom p{
    color:#c7d6e3;
    font-size:15px;
}

/*==============================
        TABLET
===============================*/

@media(max-width:991px){

.fish-footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/*==============================
        MOBILE
===============================*/

@media(max-width:768px){

.fish-footer{
    padding:60px 15px 20px;
}

.fish-footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.fish-footer-bottom{
    flex-direction:column;
    text-align:center;
}

.fish-footer-logo{
    font-size:30px;
}

}












.btn-primary{
display:inline-block;
/* margin:100px; */
padding:14px 35px;
background:#0077ff;
color:#fff;
text-decoration:none;
border-radius:40px;
font-size:18px;
}

.popup{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
display:flex;
justify-content:center;
align-items:center;
visibility:hidden;
opacity:0;
transition:.3s;
}

.popup.active{
visibility:visible;
opacity:1;
}

.popup-box{
width:420px;
background:#fff;
padding:30px;
border-radius:10px;
position:relative;
}

.close{
position:absolute;
right:20px;
top:15px;
font-size:28px;
cursor:pointer;
}

.popup h2{
margin-bottom:20px;
}

.form-group{
margin-bottom:15px;
}

.form-group input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
}

.submit-btn{
width:100%;
padding:13px;
background:#0077ff;
color:#fff;
border:none;
font-size:16px;
border-radius:6px;
cursor:pointer;
}

.success{
background:#d4edda;
color:#155724;
padding:12px;
margin:20px;
border-radius:5px;
}

.error{
background:#f8d7da;
color:#721c24;
padding:12px;
margin:20px;
border-radius:5px;
}








.contact-float{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
    display:flex;
    flex-direction:column-reverse;
    align-items:flex-end;
    gap:15px;
}

/* Main Button */

.main-button{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#0066ff,#00b7ff);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:28px;
    box-shadow:0 15px 35px rgba(0,102,255,.4);
    animation:pulse 2s infinite;
    transition:.4s;
}

.main-button:hover{
    transform:rotate(135deg);
}

/* Contact Buttons */

.float-item{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    text-decoration:none;
    color:#fff;
    opacity:0;
    transform:translateY(20px);
    transition:.45s;
    pointer-events:none;
}

.contact-float:hover .float-item{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.float-item span{
    margin-right:12px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    color:#222;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    font-family:sans-serif;
    white-space:nowrap;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.float-item i{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    transition:.4s;
}

.call i{
    background:#0b74ff;
}

.whatsapp i{
    background:#25D366;
}

.enquiry i{
    background:#ff5a00;
}

.float-item:hover i{
    transform:rotate(360deg) scale(1.12);
}

.float-item:hover span{
    transform:translateX(-5px);
}

/* Pulse */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(0,102,255,.45);
}

70%{
box-shadow:0 0 0 22px rgba(0,102,255,0);
}

100%{
box-shadow:0 0 0 0 rgba(0,102,255,0);
}

}

/* Mobile */

@media(max-width:768px){

.contact-float{
right:15px;
bottom:15px;
}

.main-button{
width:60px;
height:60px;
font-size:24px;
}

.float-item i{
width:52px;
height:52px;
font-size:20px;
}

.float-item span{
font-size:14px;
padding:8px 14px;
}

}




