﻿body {
    font-family: 'Segoe UI', sans-serif;
}



/* SERVICES */
.service-box {
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
}

/* PRICING */
.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* COLORS */
.bg-dark {
    background-color: #0b1c2c !important;
}

.btn-warning {
    background-color: #c89b3c;
    border: none;
}

/* NAVBAR */
.custom-navbar {
    background: transparent;
    transition: 0.3s;
}

.navbar.scrolled {
    background: #0b1c2c;
}



.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b1c2c 40%, rgba(11,28,44,0.3));
}





/* BUTTONS */
.btn-warning {
    background: #f59e0b;
    border: none;
    font-weight: 600;
}

/* AVAILABILITY BOX */
.availability-box {
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}







/* SECTION */
.services-section {
    background: #f5f7fb;
}

/* HEADINGS */
.section-tag {
    color: #f59e0b;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0b1c2c;
}

.section-subtitle {
    max-width: 600px;
    margin: auto;
    color: #6c757d;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.service-card img {
    height: 180px;
    object-fit: cover;
}

/* FOOTER */
.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.card-footer-custom .price {
    color: #f59e0b;
    font-weight: 600;
}

.card-footer-custom a {
    color: #1d4ed8;
    font-weight: 500;
    text-decoration: none;
}
/* WHY SECTION */
.why-section {
    background: #ffffff;
}

/* BOX */
.why-box {
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-box:hover {
    background: #f5f7fb;
    transform: translateY(-5px);
}

/* ICON */
.why-box .icon {
    width: 50px;
    height: 50px;
    background: #fef3c7;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 20px;
}

/* TEXT */
.why-box h5 {
    font-weight: 700;
    color: #0b1c2c;
}

.why-box p {
    color: #6c757d;
    font-size: 14px;
}

/* RIGHT IMAGE */
.why-image {
    height: 100%;
    background: url('../images/banner.jpeg') center/cover no-repeat;
    border-radius: 20px;
}

/* SECTION BACKGROUND */
.cta-section {
    background: #0b1c2c;
}

/* LEFT TEXT */
.cta-tag {
    color: #f59e0b;
    font-weight: 600;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
}

/* CONTACT INFO */
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-box i {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #f59e0b;
}

.info-box p {
    margin: 0;
}

/* FORM */
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

/* BUTTON */
.btn-warning {
    background: #f59e0b;
    border: none;
    font-weight: 600;
}

/* FOOTER */
.footer-section {
    background: #020617;
    padding: 50px 0;
}

/* LOGO */
.footer-logo {
    font-weight: 800;
    color: #ffffff;
}

.footer-logo span {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

/* TEXT */
.footer-text {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 10px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #f59e0b;
}

/* RIGHT */
.footer-copy {
    color: #94a3b8;
    font-size: 13px;
}

.footer-badge {
    color: #f59e0b;
    font-weight: 600;
    font-size: 13px;
}
/* PRICING SECTION */
.pricing-section {
    background: #f5f7fb;
}

/* CARD BASE */
.pricing-card {
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
}

/* DARK CARDS */
.pricing-card.dark {
    background: #0b1c2c;
    color: #fff;
}

/* FEATURED */
.pricing-card.featured {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    transform: scale(1.05);
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-10px);
}

/* PRICE */
.pricing-card h3 {
    font-size: 40px;
    font-weight: 800;
}

/* TEXT */
.small-text {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    margin: 10px 0;
}

/* BUTTON */
.pricing-card .btn {
    border-radius: 30px;
    padding: 10px 25px;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #1e3a8a;
    color: #fff;
}

/* TITLE */
.testimonial-title {
    font-size: 36px;
    font-weight: 800;
}

/* CARD */
.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 20px;
}

/* QUOTE ICON */
.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon.yellow {
    background: #facc15;
    color: #000;
}

.quote-icon.blue {
    background: #2563eb;
    color: #fff;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
}

/* NAME */
.testimonial-card h5 {
    margin-top: 15px;
    font-weight: 700;
    color: #0b1c2c;
}

/* STARS */
.stars {
    color: #f59e0b;
    font-size: 18px;
}

/* CAROUSEL BUTTONS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2563eb;
    border-radius: 50%;
    padding: 15px;
}

/* CLIENT SECTION */
.clients-section {
    background: #ffffff;
}

/* LOGOS */
.client-logo {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER EFFECT */
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.clients-slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

.slide-track img {
    width: 150px;
    margin: 0 20px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WRAPPER (controls overlap) */
.estimate-wrapper {
    position: relative;
    margin-top: -80px; /* THIS creates overlap */
    z-index: 10;
}

/* BOX */
.estimate-box {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* INPUTS */
.estimate-box .form-control {
    border-radius: 10px;
    padding: 12px;
    border: none;
}

/* BUTTON */
.btn-estimate {
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.btn-estimate:hover {
    background: #1d4ed8;
}

/* ABOUT SECTION */
.about-section {
    background: #ffffff;
}

/* TEXT */
.about-text {
    color: #6c757d;
    margin-bottom: 15px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* CUSTOM BULLET */
.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* IMAGE */
.about-image {
    height: 400px;
    background: url('../images/about.jpg') center/cover no-repeat;
    border-radius: 20px;
}

.about-image {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* IMAGE FULL DISPLAY */
.about-img-full {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* ensures full image visible */
    border-radius: 15px;
}

/* OPTIONAL: ADD LIGHT SHADOW */
.about-img-full {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* FULL IMAGE WITHOUT CROP */
.why-img-full {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* ensures full image visible */
    border-radius: 15px;
}

/* TOP BAR */
.top-bar {
    background: #0b1c2c;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

/* ICONS */
.top-bar i {
    color: #f59e0b;
    margin-right: 5px;
}

/* SOCIAL */
.social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f59e0b;
}

.top-bar .col-md-4 {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.top-bar .col-md-4:last-child {
    border-right: none;
}
@media (max-width: 768px) {
    .top-bar span {
        display: block;
        margin-bottom: 5px;
    }

    .social-icons {
        margin-top: 5px;
    }
}

/* NAVBAR DEFAULT (TRANSPARENT OVER HERO) */
.custom-navbar {
    background: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* ON SCROLL */
.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* TEXT COLOR CHANGE ON SCROLL */
.navbar.scrolled .nav-link {
    color: #0b1c2c !important;
}

.navbar.scrolled .navbar-brand {
    color: #0b1c2c !important;
}



/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b1c2c 40%, rgba(11,28,44,0.3));
}



/* TOP BAR stays dark */
.top-bar {
    background: #0b1c2c;
    color: #fff;
}

/* NAVBAR DIFFERENT COLOR */
.custom-navbar {
    background: rgba(255,255,255,0.95); /* light */
    backdrop-filter: blur(10px);
    margin-top: 40px; /* pushes below top bar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* NAV LINKS DARK */
.custom-navbar .nav-link {
    color: #0b1c2c !important;
}

.custom-navbar .navbar-brand {
    color: #0b1c2c !important;
}



.custom-navbar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-img {
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* ZOOM EFFECT */
.service-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.service-content {
    padding: 20px;
    text-align: left;
}

/* TITLE */
.service-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.service-content p {
    font-size: 14px;
    color: #6c757d;
}

/* FOOTER */
.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* PRICE */
.price {
    color: #f59e0b;
    font-weight: 700;
}

/* LINK */
.card-footer-custom a {
    text-decoration: none;
    font-weight: 600;
}

/* LOGO SIZE CONTROL */
.logo-img {
    height: 80px;
    width: auto;
}

/* SMALL SCREEN */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.logo-img {
    transition: 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}



.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b1c2c 40%, rgba(11,28,44,0.3));
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
}

/* SLIDER FIX */
.carousel-item {
    height: 75vh;
    min-height: 600px;
}

/* VERY IMPORTANT */
.hero-slide {
    height: 75vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* REMOVE THIS FROM YOUR FILE ❌ */
/*
.hero-slide {
    height: 500px;
    background-color: red;
}
*/

/* ================= OVERLAY ================= */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: linear-gradient(90deg, #0b1c2c 40%, rgba(11,28,44,0.3));*/
    background: linear-gradient(90deg, rgba(11,28,44,0.6), rgba(11,28,44,0.3));
}

/* ================= HERO CONTENT ================= */
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

/* ================= LOGO ================= */
.logo-img {
    height: 75px;
    width: auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero,
    .hero-slide,
    .carousel-item {
        height: 60vh;
    }

    .logo-img {
        height: 50px;
    }
}