:root {
    --primary-color: #D6AB60;
    --secondary-color: #000000;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #111111;
    --transition: all 0.4s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Top Header */
.top-header {
    background-color: #000;
    color: #fff;
    height: 45px;
    font-size: 14px;
    border-bottom: 1px solid #333;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--primary-color);
}

.top-left i {
    font-size: 16px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 8px 15px !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-brochure {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.btn-brochure:hover {
    background-color: #c4994f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 171, 96, 0.4);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 90vh;
    min-height: 500px;
    background-color: #fff;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Animated Zoom Out Effect */
.carousel-item.active .banner-bg {
    transform: scale(1.15);
    /* Start zoomed in, will zoom out via animation */
    animation: zoomOutEffect 8s forwards;
}

@keyframes zoomOutEffect {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.0);
    }
}

.carousel-caption {
    z-index: 2;
    height: 100%;
    left: 10%;
    right: 10%;
}

.caption-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.caption-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Fade Up Animation for text */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.carousel-item.active .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.6s;
}

/* About Section */
.section-title h3 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.about-desc {
    font-size: 1.1rem;
    color: #666;
}

.counter-val {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
}

.about-img-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.zoom-img {
    transition: transform 5s infinite alternate ease-in-out;
}



@keyframes zoomInOutPulse {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}

.zoom-img {
    animation: zoomInOutPulse 5s infinite alternate ease-in-out;
}

/* Services Section */
.bg-light-alt {
    background-color: #fcf8f0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--primary-color);
}

.service-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-item {
        height: 70vh;
    }

    .caption-content h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-btn {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .top-header {
        display: none;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .counter-row .col-4 {
        margin-bottom: 20px;
    }
}

/* Work Process Section */
.work-process .section-title h2 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.subtitle-wrapper .line {
    width: 50px;
    height: 1px;
    background: var(--primary-color);
}

.process-card {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    transition: var(--transition);
}

.process-card:hover .process-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.process-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-frame {
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: var(--transition);
}

.process-card:hover .process-frame {
    border-color: var(--primary-color);
}

.process-frame h4 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-frame p {
    font-size: 15px;
    line-height: 1.8;
}

.btn-view-more {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-view-more:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Latest Projects Section */
.latest-projects {
    background-color: #fff;
}

.project-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Fixed height for consistency */
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 25px;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(214, 171, 96, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.play-icon:hover {
    background: #fff;
    transform: scale(1.15);
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding-bottom: 100px !important;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.15;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
    font-style: italic;
}

.client-info h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.client-info .location {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Customize Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

#testimonialCarousel .carousel-control-prev {
    left: -25px;
}

#testimonialCarousel .carousel-control-next {
    right: -25px;
}

@media (max-width: 1200px) {

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        display: none;
    }
}

#testimonialCarousel .carousel-indicators {
    bottom: -60px;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    margin: 0 8px;
    opacity: 0.2;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
}

/* Client Logos Section */
.logo-section {
    background-color: #ffffff;
}

.client-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .client-logo {
        max-height: 50px;
    }
}

/* Footer Section */
.footer-section {
    background-image: url('../img/footer-scaled.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Deep dark overlay */
    z-index: 1;
}

.footer-section .relative {
    position: relative;
    z-index: 2;
}

.footer-section a {
    text-decoration: none !important;
}

.footer-logo {
    height: 70px;
    width: auto;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #1a1e26;
    /* Darker bottom bar */
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.visit-info p {
    line-height: 1.7;
}

@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links li a {
        justify-content: center;
    }
}

.page-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-banner .banner-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.dashed-border-yellow {
    border: 3px dashed #ffca2c;
    border-radius: 10px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
}

.z-2 {
    z-index: 2;
}

.color-primary {
    color: var(--primary-color);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 0;
}

.mv-card {
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.progress {
    background-color: #eee;
    overflow: visible;
}

.progress-bar {
    border-radius: 5px;
    position: relative;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.excellence-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 767px) {
    .page-banner {
        height: 250px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Process Chart Section */
.process-chart-section {
    background-color: #fff;
}

.process-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
}

.circular-progress {
    position: relative;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(var(--primary-color) var(--progress), #f0f0f0 0deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.circular-progress::before {
    content: "";
    position: absolute;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background-color: #fff;
}

.progress-value {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.process-box h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}