
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: url('img/var.png');
background-size: cover;     /* makes the image fill the area */
background-position: center; /* centers the image */
background-repeat: no-repeat; /* prevents repeating */

}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
        color: #0d47a1;

}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: #0d47a1;) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
    /* Banner Container Ribbon Shape */
    #miniBanner {
        max-height: 300px;
        overflow: hidden;
        position: relative;
        clip-path: polygon(
            0% 0%, 0% 0%, 95% 0%, 100% 0%,
            100% 95%, 95% 100%, 5% 100%, 0% 95%
        );
    }

    /* Banner Images */
    #miniBanner img {
        height: 320px;
        object-fit: cover;
        filter: blur(1.3px);
        transition: transform 1s ease-in-out;
    }

    .carousel-item.active img {
        animation: zoomOut 2s forwards;
    }

    @keyframes zoomOut {
        0% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    /* TEXT OVERLAY */
    .banner-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        padding: 0 20px;
        width: 80%;
        z-index: 5;
    }

    .banner-text h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #fff;
        text-shadow: 0px 3px 6px rgba(0,0,0,0.5);
    }

    .banner-text p {
        font-size: 18px;
        line-height: 1.5;
        color: #ffffff;
        text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    }
/*** Navbar End ***/
.carousel-box {
    border: 9px solid #ffff; 
    border-radius: 15px;       
    overflow: hidden;
	    .carousel-box {
        border: 1px solid #0d47a1;
        border-radius: 1px;
        overflow: hidden;
    }
    }
    
    .carousel-caption {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
	.carousel-item {
    position: relative;
    width: 100%;
    height: 600px; /* set desired height of the carousel */
    overflow: hidden; /* ensures video doesn’t spill out */
}

.carousel-item video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;       /* makes the video fill vertically */
    min-width: 100%;    /* ensures horizontal fill */
    min-height: 100%;   /* ensures vertical fill */
    transform: translate(-50%, -50%) scale(1.05); /* center and slightly zoom */
    object-fit: cover;   /* ensures proper cropping and fitting */
}

    
    /* ------------------------- */
    /* BLUE–WHITE GRADIENT TEXT  */
    /* ------------------------- */
   /* Gradient text fixed: make it pure white and improve font */
.gradient-text {
    font-family: 'Poppins', 'Arial', sans-serif; /* modern, clean font */
    font-weight: 600;
    font-size: 1.3rem;
    color: #fff; /* solid white */
    display: inline-block;
    text-align: left;
    margin-left: 5px; /* spacing after the dash */
	 font-style: italic;
}

/* Dash styling */
.gradient-text::before {
    content: "—"; /* em dash */
    color: #ffff; /* navy blue */
    font-weight: 700;
    margin-right: 8px;
}


  
    /* Fix second line centering */
    .hero-text2 {
        margin-top: 20px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
    }

    .hero-text2 span, 
    .hero-text2 a {
        display: inline-block;
        text-align: center;
    }

    .hero-text2 .line2 {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

/* Hero Text1 Styling */
.hero-text1 span {
    font-size: 2rem;          /* increase size */
    font-weight: 700;          /* bold */
    color: #fff;               /* white */
    text-transform: uppercase;
    display: block;
    text-align: center;        /* center horizontally */
    letter-spacing: 2px;
    margin-bottom: 15px;       /* spacing below */
}

/* Construction text (centered) */
.construction-text {
    position: relative;
    display: block;
    margin: 20px auto;         /* centers horizontally */
    text-align: center;
}

.construction-text h2 {
    position: relative;        /* keep in flow */
    display: inline-block;     /* allows centering */
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;               /* solid white */
    animation: animate 4s ease-in-out infinite; /* optional ink animation */
}

/* Optional: ink-animated-text already styled in your CSS */


    /* ------------------------------------ */
    /* BELOW THIS NOTHING IS CHANGED EXCEPT COLOR */
    /* ------------------------------------ */

    .ink-animated-text {
        position: relative;
        display: inline-block;
        margin: 20px 0;
    }
    
    .ink-animated-text h1 {
        font-size: 5rem;
        font-weight: 900;
        text-transform: uppercase;
        margin: 0;
        line-height: 1;
        position: relative;
    }
    
    .ink-text-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .ink-text-layer:nth-child(1) {
        color: white;
        -webkit-text-stroke: 2px #fff;
        z-index: 2;
    }

    /* gradient animation color */
    .ink-text-layer:nth-child(2) {
        background: linear-gradient(to right, #1e90ff, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: animateInk 4s ease-in-out infinite;
        z-index: 1;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    
    @keyframes animateInk {
        0%, 100% {
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
        }
        50% {
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
        }
    }

}
/*** Single Page Hero Header Start ***/

/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Carousel End ***/


/*** About Start ***/
/* (Keep existing rules that are still relevant, like .about .about-item-content-img) */

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    /* You might need to add a fixed height here if the w-100 on the image isn't enough to maintain size, 
       but typically the content in the other col-xl-6 will determine the height. */
    /* Example to force a square shape, adjust as needed: */
    /* aspect-ratio: 1 / 1; 
       height: auto; */
}

/* Remove or comment out the styling for the old collage elements */
/* .about .about-item-image .img-1 { ... }
.about .about-item-image .img-2 { ... }
.about .about-item-image .about-item-image-content { ... } 
*/

/* Apply border and positioning to the new single image */
.about .about-item-image .single-image-replacement {
    position: relative; /* Needed to appear above the ::before pseudo-element */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border: 4px solid var(--bs-primary); /* Example border style */
    z-index: 5; /* Ensure it's above everything else in the container */
}

/* Keep the ::before element for the background dotted border/box effect */
.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 2;
}

/* ----------------------------------------- 
   | Custom Card Styles (Provided by User) |
   -----------------------------------------
*/
/* --- Global Wrapper for the 3 Cards --- */
.cards-wrapper {
    display: flex;
    gap: 50px; /* Space between the cards */
    justify-content: center; /* Center the cards within the wrapper */
    align-items: flex-end; /* Aligns the base of the leaf shapes */
    padding: 50px 0; /* Add some padding above/below the card section */
}

/* --- Reusable Card Styles (.design-card) --- */
.design-card {
    position: relative;
    width: 380px; /* <-- ADJUSTED: Increased Card Width (Longer) */
    height: 320px; /* <-- ADJUSTED: Reduced Card Height (Shorter) */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
}

/* Animation for cards */
.design-card.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.design-card.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.design-card.wow.fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effects */
.design-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.design-card:hover .diamond {
    animation: diamondPulse 1.5s infinite;
    background-color: rgba(255, 255, 255, 1);
}

.design-card:hover .diamond-content {
    color: #0d47a1;
    animation: numberRotate 1s ease;
}

.design-card:hover .petal {
    animation: petalBreath 3s infinite;
}

.design-card:hover .petal-left {
    background-color: #F5E9DC;
}

.design-card:hover .petal-right {
    background-color: #F0E1D1;
}

.design-card:hover .text-content h1 {
    color: #0d47a1;
    animation: textGlow 2s infinite;
}

.design-card:hover .text-content p {
    color: #555;
}

/* Special hover for middle card */
.middle-card-lg:hover {
    transform: translateY(-20px);
}

/* --- Diamond Animation --- */
@keyframes diamondPulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }
    50% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
        box-shadow: 0 0 20px rgba(13, 71, 161, 0.2);
    }
}

@keyframes numberRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- Petal Animation --- */
@keyframes petalBreath {
    0%, 100% {
        transform: rotate(var(--initial-rotate, 0deg)) scale(1);
    }
    50% {
        transform: rotate(var(--initial-rotate, 0deg)) scale(1.05);
    }
}

/* Apply initial rotation values */
.petal-left {
    --initial-rotate: -5deg;
}

.petal-right {
    --initial-rotate: 15deg;
}

/* --- Text Animation --- */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(13, 71, 161, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(13, 71, 161, 0.5);
    }
}

/* --- Modifier Class for the LARGER Middle Card --- */
.middle-card-lg {
    width: 350px; /* <-- ADJUSTED: Increased Larger Middle Card Width (Longer) */
    height: 370px; /* <-- ADJUSTED: Reduced Larger Middle Card Height (Shorter) */
    margin-bottom: -25px; /* Pushes the middle card down slightly for a better visual anchor */
}

/* --- Diamond Shape (Top) --- */
.diamond-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: -10px; 
    z-index: 3;
}

.diamond {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    /* Envelope pattern */
    background-image: radial-gradient(circle at center, #eee 1px, transparent 0),
                      linear-gradient(45deg, rgba(200, 200, 200, 0.4) 50%, transparent 50%),
                      linear-gradient(-45deg, rgba(200, 200, 200, 0.4) 50%, transparent 50%);
    background-size: 5px 5px, 100% 100%, 100% 100%;
}

.diamond-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #aaa;
    font-size: 20px; 
    font-weight: bold;
    z-index: 4;
    transition: all 0.5s ease;
}

/* --- Leaf/Petal Shape (Bottom) --- */
.leaf-shape-container {
    position: absolute;
    top: 90px; 
    width: 100%;
    height: 280px; /* ADJUSTED: Reduced Leaf Container Height */
    z-index: 1;
    overflow: hidden;
}

/* Adjusting sizes for the larger middle card */
.middle-card-lg .leaf-shape-container {
    height: 330px; /* ADJUSTED: Reduced Larger leaf container height */
}

.petal {
    position: absolute;
    background-color: #EFE4D9;
    transition: all 0.5s ease;
}
 
.petal-left {
    width: 250px;
    height: 400px;
    left: -125px; 
    top: -75px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-5deg);
}

.petal-right {
    width: 200px;
    height: 280px;
    right: -100px; 
    bottom: -50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(15deg);
    opacity: 0.9;
}
 
/* Scaling the petals for the LARGER middle card */
.middle-card-lg .petal-left {
    width: 270px;
    height: 450px;
    left: -150px;
}
.middle-card-lg .petal-right {
    width: 250px;
    height: 350px;
    right: -120px;
}

/* --- Text Content --- */
.text-content {
    position: absolute;
    top: 130px; /* ADJUSTED: Moved up slightly */
    z-index: 2;
    width: 85%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}
/* Adjusting text for the larger middle card */
.middle-card-lg .text-content {
    top: 150px; 
}

.text-content h2 {
    font-size: 18px; 
    font-weight: normal;
    color: #333;
    margin: 0 0 5px 0;
}

.text-content h1 {
    font-size: 24px; 
    font-weight: bold;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.2;
    transition: all 0.5s ease;
}

.text-content p {
    font-size: 14px; 
    color: #777;
    margin: 0 0 20px 0;
    text-align: center; 
    padding-left: 0;
    transition: all 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cards-wrapper {
        gap: 30px;
    }
    
    .design-card, .middle-card-lg {
        width: 320px !important;
    }
}

@media (max-width: 992px) {
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .middle-card-lg {
        margin-bottom: 0;
        order: -1; /* Makes middle card appear first on mobile */
    }
    
    .design-card, .middle-card-lg {
        width: 380px !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .design-card, .middle-card-lg {
        width: 320px !important;
    }
}
/* The .read-more styles are kept but the element is removed from HTML */
.read-more {
    font-size: 15px; 
    font-weight: bold;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    display: block; 
    margin-top: 15px;
}
.read-more span {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 3px;
    font-weight: lighter;
}
      
        /* --- Carousel and Card Container --- */
        .carousel-view {
            overflow: hidden;
            width: 100%;
        }

        .cards-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .review-card-wrapper {
            flex: 0 0 50%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .review-card {
            background-color: #fcfcfc !important; 
            border-radius: 8px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0f0;
            padding: 30px;
        }
        
        .review-text {
            font-style: normal;
            color: #555;
            line-height: 1.5;
            margin-bottom: 1.5rem !important;
            min-height: 5em; 
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* --- Review Divider Line --- */
        .review-divider {
            border: 0;
            height: 1px;
            background-color: #ff5722;
            opacity: 1;
            margin: 1rem 0;
        }

        /* --- Client Details --- */
        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem !important;
            border: 2px solid #f0f0f0;
        }

        .client-name {
            color: #0d1a49; 
            font-weight: 600;
            font-size: 1.1rem;
        }

        .client-profession {
            color: #777;
            font-size: 0.85rem;
        }

        /* --- Rating Stars --- */
        .rating-stars {
            font-size: 1rem;
            line-height: 1;
            margin-top: 5px;
        }
        .star {
            color: #ff5722; 
        }
        .star.empty {
            color: #ccc; 
        }

        /* --- Large Quote Icon --- */
        .quote-icon {
            font-size: 3rem;
            color: #0d1a49; 
            opacity: 1;
            line-height: 0.8;
            font-weight: 900;
        }
/* Ensure testimonial title is centered like other sections */
.testimonial-section .container {
    text-align: center;
}

/* Center the carousel container */
.carousel-view {
    margin: 0 auto;
}

/* If you still see alignment issues, add this: */
.testimonial-section .text-center {
    text-align: center !important;
}

/* Center the pagination dots */
#paginationDots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
        /* --- Pagination Boxes (Orange/Blue) --- */
        .pagination-box {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 3px; 
            margin: 0 4px;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .active-dot {
            background-color: #ff5722;
            transform: scale(1.2);
        }
        .inactive-dot {
            background-color: #0d1a49;
            opacity: 0.5;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .review-card-wrapper {
                flex: 0 0 100%;
            }
            .nav-arrows {
                position: relative;
                justify-content: center;
                margin-top: 20px;
                right: auto;
            }
            .header-with-nav {
                text-align: center;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .display-4 {
                font-size: 2rem;
            }
            .review-card {
                padding: 20px;
            }
        }
/* (Keep other rules like .about .about-item-image-effect) */
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
    position: relative;
    transition: 0.5s;
}
.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
} 

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}  
/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-light);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}
/*** Services End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}
.footer-bg-image {
    /* Try navigating up one folder in case your CSS is in a subfolder */
    background-image: url('../img/footer.webp'); 
    
    /* ... rest of the styles ... */
}
/* Ensure text remains visible */
.footer-bg-image p,
.footer-bg-image a {
    color: #ffffff !important; 
}
.footer-credit {
    font-size: 12px;  /* Smaller text */
    margin: 0;
}

.footer-trapezium {
    background: #E65C00;        /* Blue background */
    clip-path: polygon(0 0, 100% 0, 85% 90%, 30% 90%); /* Trapezium */
    color: white;
}
/* Custom CSS for the new footer links */
.footer-links a {
    /* Set a smooth transition for hover effects */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    /* Change color on hover (e.g., to the primary color) */
    color: var(--bs-primary) !important; 
    /* Or a specific color: color: #00bcd4 !important; */
}
/* Custom centering for the back-to-top button */
.footer-center-item {
    /* Auto margins push the element as far away from its neighbors as possible,
       and because the surrounding space is now equal, the element is centered. */
    margin-right: auto !important; 
    margin-left: auto !important;
}

/*** Contact End--primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28; ***/
