body {
    font-family: 'georgia';
    background-color: #212529;
}

.hero-section {
    background: url('assets/banner.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    margin-top: 10px;
}

.btn-outline-light:hover {
    color: #000 !important;
}

/* navbar */

.navbar {
    background-color: transparent !important;
}

.logo-bright {
    filter: brightness(4.5);
    transition: 0.3s;
    animation: shine 2s infinite alternate;
}

.mainNavbar {
    transition: background-color 0.4s, padding 0.4s;
}

/* Navbar when scrolled */
.mainNavbar.scrolled {
    margin-top: 0;
    background-color: #333 !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link {
    color: #f8f9fa;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #cefb06;
    /* Accent color on hover */
}

/* Logo + text */
.navbar .navbar-brand img {
    max-height: 50px;
    transition: 0.3s;
}

.navbar .navbar-brand span {
    font-size: 1.25rem;
    color: #f8f9fa;
}

/* Call-to-action button */
.navbar .btn-outline-light {
    border-color: #f8f9fa;
    color: #f8f9fa;
    transition: 0.3s;
}

.navbar .btn-outline-light:hover {
    background-color: #cefb06;
    border-color: #cefb06;
    color: #111;
}

/* Cards Section */
.cards-section {
    position: absolute;
    bottom: 0;
    top: 80%;
    width: 100%;
}

.card-container {
    cursor: pointer;
    transition: flex 0.5s ease-in-out;
    overflow: hidden;
    height: 300px;
}

.card-container.active {
    flex: 2;
}

.card-content {
    position: relative;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease-in-out;
}

.card-container.active .card-img {
    filter: brightness(0.5);
}

.card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.card-text h6 {
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.8;
}

.card-text h4 {
    font-size: 22px;
    margin: 5px 0 10px;
}

.btn-warning {
    font-size: 14px;
    padding: 5px 15px;
}

/* about */
.about-section {
    background-color: #212529;
    color: #fff;
    margin-top: 10%;
}

.highlight-box {
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: inline-block;
    text-align: center;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0a040;
    margin-bottom: 0;
}

.highlight-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    color: #e0a040;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}


/* service */
.services-section {
    padding: 40px;
    background: #212529;
    position: relative;
    margin: 0 50px;
}

.section-heading {
    text-align: center;
    font-size: 2em;
    color: #fff;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    scrollbar-width: none;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    position: relative;
    flex: 0 0 auto;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}


.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-overlay h3 {
    margin: 0;
    font-size: 20px;
}

.explore-btn {
    margin-top: 5px;
    font-size: 14px;
    /* background: rgba(255, 255, 255, 0.2); */
    /* padding: 5px 10px; */
    border-radius: 4px;
}

.slider-btn {
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}


/* process */
.process-section {
    padding: 50px 20px;
    background: #212529;
    text-align: center;
}

.process-section .section-heading {
    font-size: 2em;
    margin-bottom: 40px;
    color: #fff;
}

.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    background: #333;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.process-step .icon {
    font-size: 40px;
    color: #cefb06;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.5s ease, color 0.3s ease;
}

.process-step:hover .icon {
    transform: rotate(15deg) scale(1.2);
    color: #ffde59;
    /* nice highlight on hover */
}

.process-step h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: #cefb06;
}

.process-step p {
    font-size: 0.95em;
    color: #fff;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.process-step:hover p {
    color: #e0e0e0;
}


/* Responsive */
@media(max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }
}


/* why */
.why-choose-us {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.background-image {
    background: url('assets/why.jpg') center/cover no-repeat;
    height: 100%;
    width: 70%;
    left: 5%;
    position: absolute;
}

.choose-box {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 50%;
    background: rgba(255, 255, 255, 0.92);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.choose-box h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #222;
}

.choose-box p {
    font-size: 0.8em;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.choose-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.choose-box ul li {
    font-size: 1em;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.choose-box ul li i {
    color: #cefb06;
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 3px;
}

.closing-line {
    font-weight: 600;
    color: #222;
}

/* Responsive */
@media(max-width: 992px) {
    .choose-box {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* call to action */
.cta-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 5%;
}

.cta-bg {
    background: url('assets/call.jpg') center/cover no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 10%;
    width: 70%;
    height: 90%;
    filter: brightness(0.6);
    /* darkens the background for readability */
    z-index: 1;
}

.cta-box {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.cta-box h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
}

.cta-box p {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.cta-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.cta-box ul li {
    font-size: 1em;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.cta-box ul li i {
    color: #cefb06;
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 3px;
}

.closing-line {
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.cta-box .btn {
    background-color: #cefb06;
    color: #222;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 25px;
    transition: 0.3s;
}

.cta-box .btn:hover {
    background-color: #b0e507;
    color: #111;
}

/* testimonial */
.testimonial-section {
    position: relative;
    width: 100%;
    padding: 80px 5%;
}

.testimonial-heading {
    color: #fff;
    text-align: center;
}

.testimonial-bg {
    background: url('assets/testimonial-bg.jpg') center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.3);
    z-index: 1;
}

.testimonial-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 30%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #f8f9fa;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #cefb06;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.testimonial-author {
    font-weight: 600;
    color: #cefb06;
}

@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-card {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex: 1 1 100%;
    }
}


.footer-section {
    background-color: #000;
    /* dark background */
    color: #fff;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #cefb06;
    /* accent color */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #cefb06;
}

.footer-section p {
    color: #fff;
}

.footer-section .btn-warning {
    background-color: #cefb06;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 20px;
    transition: 0.3s;
}

.footer-section .btn-warning:hover {
    background-color: #b0e507;
    color: #111;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: #222;
    color: #cefb06;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #cefb06;
    color: #111;
}

.breadcrumb-section {
    position: relative;
    overflow: hidden;
}

.breadcrumb-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
    /* overlay behind content */
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
    /* text above overlay */
}

.breadcrumb-section h2 {
    font-size: 2rem;
    color: #fff;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: #fff;
    transition: 0.3s;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #cefb06;
    text-decoration: underline;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #cefb06;
    font-weight: 600;
}

.about-cta {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin-top: 5%;
}

.about-cta .cta-bg {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 10%;
    width: 60%;
    height: 90%;
    z-index: 1;
}

.about-cta .cta-box {
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-cta .cta-box h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
}

.about-cta .cta-box p {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.about-cta .cta-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-cta .cta-box ul li {
    font-size: 1em;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.about-cta .cta-box ul li i {
    color: #cefb06;
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 3px;
}

.about-cta .cta-box .closing-line {
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.about-cta .cta-box .btn {
    background-color: #cefb06;
    color: #222;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 25px;
    transition: 0.3s;
}

.about-cta .cta-box .btn:hover {
    background-color: #b0e507;
    color: #111;
}

.services-section .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.home-service {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.home-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.home-service-img {
    height: 220px;
    border-bottom: 1px solid #eee;
    background-size: cover;
    background-position: center;
}

.home-service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-service-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.home-service-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    background-color: #cefb06;
    color: #222;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.home-service-btn:hover {
    background-color: #b0e507;
    color: #111;
}

.contact-section .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.contact-section textarea {
    resize: none;
}

.contact-section .btn {
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-section .btn:hover {
    background-color: #b0e507;
    color: #111;
}

/* internal services-card */
.service-box {
    background: #333;
    border: 1px solid #1e1e1e;
    transition: all 0.3s ease-in-out;
}

.service-box i {
    color: #FFD700;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.service-box h5 {
    color: #FFD700;
}

.service-box:hover {
    transform: translateY(-8px) scale(1.03);
    border: 1px solid #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.service-box:hover i {
    color: #fff176;
    transform: rotate(15deg) scale(1.2);
}

/* .blog-image{
    display: flex;
    position: relative;
    width: 100%;
    height: 500px;
} */