﻿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;
    }
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

/* ================= LOGO ================= */
.logo-img {
    height: 75px;
    width: auto;
    transition: 0.3s;
}

.logo-img:hover {
    transform: scale(1.03);
}

/* MAIN NAV LINKS */
.custom-navbar .nav-link {
    color: #4b5563 !important;
    font-size: 17px;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: 0.3s;
}

/* HOVER */
.custom-navbar .nav-link:hover {
    color: #f59e0b !important;
}

/* ACTIVE MENU */
/* ACTIVE MENU */
.custom-navbar .nav-link.active {
    color: #f59e0b !important;
    font-weight: 700;
}

/* ACTIVE UNDERLINE */
.custom-navbar .nav-link.active::after {
    width: 100%;
    background: #f59e0b;
}

/* UNDERLINE EFFECT */
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: 0.3s;
}

/* HOVER UNDERLINE */
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}
/* DROPDOWN */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 15px;
    transition: 0.3s;
    background: #fff;
}

/* SHOW ON HOVER */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/* DROPDOWN ITEMS */
.dropdown-item {
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
    transition: 0.3s;
}

/* HOVER */
.dropdown-item:hover {
    background: #f8fafc;
    color: #f59e0b;
    padding-left: 24px;
}

.hero-content{
    padding-left:40px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
    position: relative;
    background: url('../images/breadcrumb.jpg') center center/cover no-repeat;
    padding: 120px 0;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 44, 0.75);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #f59e0b;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: #fff;
}

.section-subtitle {
    color: #f59e0b;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b1c2c;
    line-height: 1.3;
}

.about-text {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
}

/* FEATURES */
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0b1c2c;
}

.about-feature i {
    color: #f59e0b;
    font-size: 18px;
}

/* BUTTON */
.about-btn {
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
}

/* IMAGE */
.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ================= WHY SECTION ================= */
.why-about-section {
    background: #f8fafc;
}

.why-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 18px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1c2c;
}

.why-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ================= MOBILE ================= */
@media(max-width:991px){

    .section-title{
        font-size:32px;
    }

    .about-text{
        font-size:16px;
    }

}

  .pricing-section{
    padding:80px 0;
    background:#f5f7fb;
}

.pricing-section .section-title h2{
    font-size:54px;
    font-weight:800;
    color:#071c36;
    margin-bottom:60px;
}

.pricing-section .pricing-card{
    border-radius:28px;
    padding:50px 35px;
    text-align:center;
    transition:0.4s;
    height:100%;
}

.pricing-section .pricing-card.dark{
    background:#031a33;
    color:#fff;
}

.pricing-section .pricing-card.blue{
    background:linear-gradient(180deg,#3157d5,#2950d0);
    color:#fff;
    transform:scale(1.04);
}

.pricing-section .price{
    font-size:60px;
    font-weight:800;
    color:#f5a400;
    margin-bottom:10px;
}

.pricing-section .plan-name{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.pricing-section .subtitle{
    margin-bottom:25px;
    opacity:0.9;
}

.pricing-section .pricing-features{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.pricing-section .pricing-features li{
    margin-bottom:15px;
    font-size:18px;
}

.pricing-section .pricing-btn{
    display:inline-block;
    padding:15px 40px;
    border-radius:50px;
    background:#fff;
    color:#071c36 !important;
    text-decoration:none !important;
    font-weight:700;
    font-size:18px;
    transition:0.3s;
}

.pricing-section .popular-btn{
    background:#f5a400;
    color:#000 !important;
}

.pricing-section .pricing-btn:hover{
    transform:translateY(-3px);
}

.clients-section{
    background:#fff;
    overflow:hidden;
}

.clients-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.slide-track{
    display:flex;
    width:calc(250px * 10);
    animation:scroll 25s linear infinite;
}

.slide-track img{
    width:180px;
    height:90px;
    object-fit:contain;
    margin:0 40px;
    filter:grayscale(100%);
    opacity:0.8;
    transition:0.3s;
}

.slide-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 5));
    }

}


.testimonial-section{
    background:#2842a0;
    padding:90px 0;
}

.testimonial-section .section-title h2{
    color:#fff;
    font-size:54px;
    font-weight:800;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:45px 35px;
    position:relative;
    text-align:center;
    transition:0.3s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.quote-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    color:#fff;
    font-size:42px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px auto;
}

.quote-icon.yellow{
    background:#f4b400;
}

.quote-icon.blue{
    background:#3157d5;
}

.quote-icon.orange{
    background:#ff8800;
}

.testimonial-text{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-card h4{
    font-size:30px;
    font-weight:700;
    color:#071c36;
}

.stars{
    color:#f4b400;
    font-size:24px;
    margin-top:10px;
}

