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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0b0b0f;
color:#ffffff;
overflow-x:hidden;
}

a{
text-decoration:none;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)),
url(Assets/bg-drop.png);
background-size:cover;
background-position:center;
padding:40px 8%;
display:flex;
flex-direction:column;
justify-content:center;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:25px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
backdrop-filter:blur(0px);
background:rgba(10,10,10,0.25);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:3px;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
color:#fff;
font-size:15px;
font-weight:500;
position:relative;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#d9bf77;
transition:0.4s;
}

.nav-links a:hover::after,
.nav-links .active::after{
width:100%;
}

.btn,
.btn-outline{
padding:14px 28px;
border-radius:40px;
font-weight:600;
transition:0.4s;
display:inline-block;
}

.btn{
background:#d9bf77;
color:#111;
}

.btn:hover{
transform:translateY(-4px);
}

.btn-outline{
border:1px solid #fff;
color:#fff;
}

.hero-content{
max-width:750px;
margin-top:100px;
}

.hero-content span,
.section-title span,
.about-content span{
color:#d9bf77;
font-size:15px;
letter-spacing:2px;
text-transform:uppercase;
}

.hero-content h1{
font-size:78px;
line-height:1.1;
margin:20px 0;
}

.hero-content p{
font-size:18px;
line-height:1.8;
color:#d0d0d0;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:40px;
}

.services{
padding:120px 8%;
}

.section-title{
margin-bottom:70px;
}

.section-title h2{
font-size:54px;
margin-top:12px;
}

.service-grid,
.service-page-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#13131b;
padding:45px;
border-radius:24px;
border:1px solid rgba(255,255,255,0.05);
transition:0.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:#d9bf77;
}

.card h3{
font-size:28px;
margin-bottom:18px;
}

.card p{
color:#bcbcbc;
line-height:1.8;
}

.about{
padding:120px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
background:#101018;
}

.about-image{
height:650px;
border-radius:30px;
background:
url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1200&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.about-content h2{
font-size:56px;
line-height:1.2;
margin:20px 0;
}

.about-content p{
line-height:1.9;
color:#bdbdbd;
}

.about-features{
margin-top:40px;
display:grid;
gap:25px;
}

.feature{
background:#161621;
padding:25px;
border-radius:18px;
}

.cta{
padding:120px 8%;
text-align:center;
}

.cta h2{
font-size:60px;
margin-bottom:20px;
}

.cta p{
font-size: 25px;
margin-bottom:35px;
color:#c5c5c5;
}

footer{
padding:60px 8%;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content{
display:flex;
justify-content:space-between;
align-items:center;
}

.footer-links{
display:flex;
gap:25px;
}

.footer-links a{
color:#cfcfcf;
}

.copyright{
margin-top:35px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.08);
text-align:center;
color:#8f8f8f;
}

.sub-hero{
height:60vh;
background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1400&auto=format&fit=crop');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
}

.sub-hero-content h1{
font-size:72px;
}

.page-section{
padding:120px 8%;
}

.page-section h2{
font-size:52px;
margin-bottom:25px;
}

.page-section p{
max-width:900px;
line-height:2;
color:#bdbdbd;
}

.contact-section{
padding:120px 8%;
display:flex;
justify-content:center;
}

.contact-form{
width:100%;
max-width:700px;
display:flex;
flex-direction:column;
gap:20px;
background:#13131b;
padding:50px;
border-radius:30px;
}

.contact-form input,
.contact-form textarea{
padding:18px 20px;
background:#0e0e14;
border:none;
border-radius:14px;
color:#fff;
font-size:16px;
}

.contact-form textarea{
height:180px;
resize:none;
}

.contact-form button{
padding:18px;
background:#d9bf77;
border:none;
border-radius:14px;
font-size:16px;
font-weight:600;
cursor:pointer;
}

@media(max-width:991px){

.hero-content h1{
font-size:52px;
}

.service-grid,
.service-page-grid,
.about{
grid-template-columns:1fr;
}

.about-image{
height:450px;
}

.footer-content{
flex-direction:column;
gap:30px;
}

.navbar{
padding:20px;
flex-direction:column;
gap:20px;
}

.nav-links{
gap:18px;
flex-wrap:wrap;
justify-content:center;
}

.hero-content{
margin-top:180px;
}

}









.counter-section{
    width:100%;
    background:#1145d400;
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    padding:70px 5%;
    flex-wrap:wrap;
}

.counter-box{
    text-align:center;
    color:#fff;
    min-width:170px;
}

.counter-box h2{
    font-size:64px;
    font-weight:700;
    color:#d9d9d9;
    margin-bottom:15px;
    letter-spacing:2px;
}

.counter-box p{
    font-size:15px;
    letter-spacing:4px;
    color:#c5c5c5;
    text-transform:uppercase;
}

@media(max-width:480px){

    .counter-section{
        gap:25px;
    }

    .counter-box h2{
        font-size:32px;
    }

    .counter-box p{
        font-size:12px;
    }

    .profile_i{
        max-width: 100%;
        height: auto;
        display: block; /* Removes unwanted bottom whitespace/gap */
}

}








.profile_i{
  width: 100%;
  height: 500px;
  border-radius:15px;
  object-fit: cover;
  object-position: center;
}






/* Full-screen overlay container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0f19; /* Dark premium background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Makes sure it stays on top of everything */
    transition: opacity 2.5s ease, visibility 3.0s ease;
}

/* Container for the animated waves */
.wave-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-bottom: 20px;
}

/* Single wave bar styling */
.wave {
    width: 12px;
    height: 60px;
    background: linear-gradient(135deg, #00b4db, #0083b0); /* Clean ocean blue gradient */
    border-radius: 6px;
    animation: wave-motion 1.2s ease-in-out infinite;
}

/* Staggering the animation timing to look like a fluid wave */
.wave:nth-child(2) {
    animation-delay: 0.2s;
}
.wave:nth-child(3) {
    animation-delay: 0.4s;
}

/* Brand text styling */
.loader-text {
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    animation: pulse 1.2s ease-in-out infinite alternate;
}

/* Keyframe animations */
@keyframes wave-motion {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Responsive design for 480px mobile screens and down */
@media (max-width: 480px) {
    .wave-wrapper {
        height: 40px;
        gap: 6px;
    }
    .wave {
        width: 8px;
        height: 40px;
    }
    .loader-text {
        font-size: 20px;
        letter-spacing: 4px;
    }
    @keyframes wave-motion {
        0%, 100% { height: 15px; }
        50% { height: 40px; }
    }
}