/* ================= GLOBAL ================= */

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 90px;   /* Navbar space */
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background: rgba(0,0,0,0.95);
}

.nav-link {
    transition: 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff7a00 !important;
}

/* ================= HOME HERO ================= */

.hero-unique {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* ================= INNER PAGE HERO (ABOUT, SERVICES, PROJECTS) ================= */

.inner-hero {
    height: 60vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

/* ================= TEXT ================= */

.hero-content h1,
.inner-hero-content h1 {
    font-size: 55px;
    font-weight: bold;
}

.hero-content p,
.inner-hero-content p {
    font-size: 18px;
}

/* ================= SERVICES CARDS ================= */

.service-card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
    color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #ff7a00;
}

/* ================= CORE STRENGTH BOX ================= */

.core-box {
    background: #1c1c1c;
    color: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.core-box:hover {
    background: #ff7a00;
    transform: translateY(-8px);
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .hero-content h1,
    .inner-hero-content h1 {
        font-size: 32px;
    }
}
/* ================= PROJECT ENHANCEMENTS ================= */

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    transition: 0.4s;
    cursor: pointer;
}

.carousel-item img:hover {
    transform: scale(1.05);
}

.carousel-indicators [data-bs-target] {
    background-color: #ff7a00;
}

/* Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Simple Scroll Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
/* SCROLL PROGRESS BAR */
#progress-bar{
position:fixed;
top:0;
left:0;
height:4px;
background:#ff7a00;
width:0%;
z-index:9999;
}
/* REMOVE WHITE BACKGROUND */
body {
    background-color: #1a1818;
    color: white;
}
.bg-light {
    background-color: #111 !important;
}
/* GLOBAL BACKGROUND LOGO */

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: url('../images/logo.jpeg') no-repeat center;
    background-size: contain;
    opacity: 0.05;  /* transparency */
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(4px);
}
.service-card,
.core-box,
.project-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}
