:root {
    --primary: #0077b6;
    /* Fresh Ocean Blue */
    --secondary: #023e8a;
    /* Deep Trust Blue */
    --accent: #00b4d8;
    /* Bright Cyan */
    --eco: #4ade80;
    /* Eco-friendly Green */
    --safety: #facc15;
    /* Safety Yellow */
    --dark: #03045e;
    --light: #f0f9ff;
    --gray: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
    background-image: radial-gradient(#e0f2fe 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

        /* Logo size control */
        .logo {
            width: 70px;      /* SMALL LOGO SIZE */
            height: auto;
        }

        /* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fix section hidden under fixed navbar */
section {
  scroll-margin-top: 90px; /* adjust if navbar height different */
}

/* NAvbar Chargbt */
.logo{
    height:40px;
    width:auto;
    object-fit:contain;
}

.navbar{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand{
    gap:8px;
}
/* Navbar Customization
.hero{
    position: relative;
    overflow: hidden;
}

.hero::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image: url("../assets/img/staff.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 2;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
} */

.hero{
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
} 

.hero{
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image: url("../assets/img/staff.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 2;
}

@media (max-width:768px){

.hero{
min-height:60vh;
padding:60px 0;
}

.hero::before{
background-position:center top;
}

}
.hero::before{
background:
linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)),
url("../assets/img/staff.jpg");
background-size: cover;
background-position: center;
}

/* clean code ChatGBT */
.stat-card{
bottom:-30px;
left:-30px;
max-width:250px;
}

@media (max-width:768px){

.stat-card{
position:relative;
bottom:auto;
left:auto;
margin-top:20px;
}

}
/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
/* Rating section */
.client-avatars{
display:flex;
align-items:center;
}

.client-avatars img{
width:45px;
height:45px;
border-radius:50%;
border:2px solid #fff;
margin-left:-12px;
object-fit:cover;
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

.client-avatars img:first-child{
margin-left:0;
}

.review-text{
font-size:14px;
}
/* wave chatGBT */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.shape-fill {
    fill: #ffffff;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

/* Service Cards Enhanced */
.service-card {
    border: none;
    border-radius: 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.15);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

/* Section Dividers */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light);
    color: var(--secondary);
}

/* WhatsApp Float */
/* .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    color: white;
} */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
text-align:center;
font-size:30px;
line-height:60px;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:1000;
}

.whatsapp-float:hover{
background:#20b954;
color:white;
}

/* Stats Counter */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;


}

/* Testimonials Enhanced */
.testimonial-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    position: relative;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding: 80px 0 40px;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--secondary);
    padding-left: 0;
}

/* Responsiveness */
.grayscale {
    filter: grayscale(100%);
    transition: var(--transition);
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
}

.hover-bg-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Glass Card Variation */
.glass-card-dark {
    background: rgba(3, 4, 94, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 120px 0 80px;
    }
}

/* spacing revmoving */
section{
padding:60px 0;
}

.section-padding{
padding:60px 0;
}

.hero{
padding-top:120px;
padding-bottom:80px;
}

/* section  */
.process-icon{
width:45px;
height:45px;
background:#0d6efd;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:bold;
}

.process-badge{
position:absolute;
bottom:-20px;
left:-20px;
background:white;
padding:15px 20px;
border-radius:12px;
}

/* clinet 500 */
.stats-section{
position:relative;
}

.stat-box{
padding:20px;
border-radius:10px;
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-5px);
background:rgba(255,255,255,0.1);
}

.stat-icon{
font-size:32px;
opacity:0.9;
}