
        /* ===================================================================== */
       
        /* ===================================================================== */
        body {
           font-family: "Cormorant", serif;
            overflow-x: hidden;
            background-color: #FFFFFF;
        }

        /* ===================================================================== */
        /*  ("Dream Design Build") || */
        /* ===================================================================== */

        /* ====================================================== */
/* HEADER KO POSITION KARNE KE LIYE NAYA CSS */
/* ====================================================== */

/* Bade Screens ke liye (Laptops/Desktops) */
.site-header {
    background-color: #2F3963;
    padding: 1rem;
    width: 100%;
    z-index: 100;
    position: relative; /* Default position is relative */
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap on small screens */
    gap: 1rem;      /* Add gap for spacing when wrapped */
}

.logo {
    height: 40px;
    width: auto;
}

.nav-items-right {
    /* On mobile, this will be centered if nav wraps */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.nav-btn {
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background-color: #b48b57;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 0.5rem; /* Use gap for spacing */
}

.social-icons a {
    color: #fff;
    font-size: 1.1rem;
    width: 38px;
    height: 38px;
    background-color: #b48b57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background-color: #a07847;
    transform: scale(1.1);
}

/* --- Hero Section (Mobile First) --- */
.hero-section {
    color: #FFFFFF;
    overflow: hidden;
}

/* Left & Right Columns on Mobile */
.hero-left-col, .hero-right-col {
    min-height: 50vh; /* Split viewport height on mobile */
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Right Column Content */
.hero-right-col {
    background-color: #2C3480;
    justify-content: space-around; /* Better for vertical spacing on mobile */
    gap: 2rem;
    /* Fluid Padding: clamp(MIN, PREFERRED, MAX) */
    padding: clamp(2rem, 8vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.hero-main-content {
    display: flex;
    align-items: flex-end;
}

.hero-title {
    
    /* SINGLE CLAMP for perfect fluid scaling. No media queries needed! */
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1.1;
/*    font-weight: 500;*/
}

.hero-title span {
    display: block;
}

/* Footer Section inside Hero */
.hero-footer {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
}

.hero-footer blockquote {
    max-width: 350px;
    border-left: 2px solid white;
    padding-left: 1rem;
    margin: 0;
    font-style: italic;
    border-right: none;
    text-align: left; /* Keep text inside quote aligned left */
}

.hero-footer .author {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    color: #BFA778;
    text-align: left;
}

.scroll-indicator {
    width: clamp(45px, 10vw, 55px);
    height: clamp(45px, 10vw, 55px);
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    cursor: pointer;
    flex-shrink: 0;
}


/* --- Center Play Button (Fluid) --- */
.circular-text-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Fluid Sizing for the button */
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A2A46;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.circular-text-btn .play-icon {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.circular-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    fill: white;
    /* Fluid font size for SVG text */
    font-size: clamp(0.4rem, 1.2vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Styles for Large Screens (Desktop View) --- */
@media (min-width: 992px) {
    /* Header on Desktop */
    .site-header {
        position: absolute; /* Overlay on top of the hero */
        background-color: transparent;
        padding: 1.5rem 2rem;
    }
    
    .hero-nav {
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .logo {
        height: 45px;
    }

    .nav-items-right {
        flex-direction: row;
        align-items: center;
        width: auto; /* Let it size to its content */
        gap: 1rem;
    }

    /* Hero Section on Desktop */
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-left-col {
        min-height: 100vh; /* Take full height */
    }

    .hero-right-col {
        min-height: 100vh;
        justify-content: space-between; /* Space out content vertically */
        gap: 0; /* Reset gap */
    }

    /* Footer on Desktop */
    .hero-footer {
        flex-direction: row; /* Side-by-side layout */
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }
}

        /* ===================================================================== */
        /* || section 2: "High-Quality Home Remodeling" || */
        /* ===================================================================== */
       .remodeling-section {
     padding: 5rem ;
}

/* Headings & Text (Mobile First) */
.sub-heading {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #BFA778;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.remodeling-heading {
    color: #3A4F6A;
    font-weight: 700;
    /* Fluid font-size for the main heading */
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    line-height: 1.1;
}

/* On mobile, all text is centered for a cleaner look */
.left-col {
    text-align: center;
}

.content-paragraph {
    color: #343a40;
    line-height: 1.7;
    /* Fluid font size for paragraph text */
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    /* Justified text can look bad on mobile, so we start with left */
    text-align: left;
}

.slider-controls {
    margin-top: 2rem;
    color: #3A4F6A;
    /* Center controls on mobile */
    justify-content: center;
}

.slider-nav {
    font-size: 1.5rem;
}

.slider-nav a {
    color: #3A4F6A;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.slider-nav a:hover {
    opacity: 0.7;
}

.slider-counter {
    font-size: 1.1rem;
    font-weight: 500;
}

.carousel-inner img {
    height: auto;
    object-fit: cover;
}

/* Image Hover Effect */
.carousel-item {
    overflow: hidden;
}
.carousel-item img {
    transition: transform 0.5s ease;
}
.carousel-item:hover img {
    transform: scale(1.05);
}


/* ===================================================================== */
/* || STYLES FOR LARGER SCREENS (DESKTOP) || */
/* ===================================================================== */

@media (min-width: 992px) {
    /* Revert text alignment for desktop */
    .left-col {
        text-align: left;
    }

    .content-paragraph {
        text-align: justify; /* Use justify alignment on wider screens */
    }

    .slider-controls {
        justify-content: flex-start; /* Align controls to the left */
    }

    /* This targets the utility class from your HTML to align text on large screens */
    .text-lg-end {
        text-align: end !important;
    }
}


/* ===================================================================== */
/* || OTHER STYLES FROM YOUR FILE (CLEANED UP) || */
/* ===================================================================== */

/* --- Floating Menu Button --- */
.floating-menu-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 1050;
    border: 1px solid #e0e0e0;
}
.floating-menu-btn .menu-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #3A4F6A;
    margin-top: 4px;
}
.hamburger-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #3A4F6A;
    margin: 2px 0;
}

/* --- Timeline Styling --- */
.timeline-container {
    position: relative;
}
.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1 1 auto;
}
.circle {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: black;
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 20px;
}
.step-item.active .circle {
    background-color: #e9b67a;
    border-color: #e9b67a;
    color: #1D2645;
}
.step-label {
    font-size: clamp(1rem, 3vw, 1.25rem); /* Fluid font size */
}
.timeline-line {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #fff 33%, rgba(255,255,255,0) 0%);
    background-size: 12px 3px;
    background-repeat: repeat-x;
    z-index: 1;
}
/* Timeline on Mobile */
@media (max-width: 767.98px) {
    .d-flex#work-steps {
        flex-direction: column;
        align-items: center;
    }
    .timeline-line {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: 3px;
        background-image: linear-gradient(to bottom, #fff 33%, rgba(255,255,255,0) 0%);
        background-size: 3px 12px;
        background-repeat: repeat-y;
    }
    .step-item {
        flex: unset;
        width: 100%;
        margin-bottom: 30px;
    }
}
/* Common container style */
.img-hover-zoom {
  overflow: hidden;
}

/* Smooth transition */
.img-hover-zoom img {
  transition: transform 0.5s ease !important;
}

/* Hover zoom-in (image thoda bada ho) */
.img-hover-zoom.zoom-in:hover img {
  transform: scale(1.05) !important;
}

/* Hover zoom-out (image thoda chhota ho) */
.img-hover-zoom.zoom-out:hover img {
  transform: scale(0.95) !important;
}

/* Ensure it works with AOS zoom-in */
[data-aos="zoom-in"].aos-animate:hover img {
  /* ye value wrapper class ke hisaab se change hogi */
}


.bg-deep-cobalt{
  background-color: #2C3480;
  color: white;
}
 .ideas-heading {
       
        font-weight: 700;
        font-size: 3rem;
        color: #13294B;
        line-height: 1.1;
    }
    .ideas-subheading {
        
        font-size: 0.9rem;
        font-style: italic;
        color: #B48B57;
    }
    .blog-card {
        position: relative;
        overflow: hidden;
    }
    .blog-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .blog-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
        color: #fff;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .blog-overlay h5 {
        
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .blog-overlay p {
       
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    .blog-overlay a {
        
        color: #fff;
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid #fff;
        padding-bottom: 2px;
        width: fit-content;
    }
    /* Responsive spacing */
    @media (max-width: 767.98px) {
        .ideas-heading {
            font-size: 2rem;
        }
    }
 .custom-heading {
       
        font-weight: 700;
        font-size: 3rem;
        color: #13294B;
        line-height: 1.1;
    }
    .sub-heading {
        font-size: 0.9rem;
        font-style: italic;
        color: #B48B57;
       
    }
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    .feature-icon {
        width: 100px;
        height:100px;
        background-color: #13294B;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .feature-icon img {
        width: 100%;
        /*height: 24px;
        object-fit: contain;
        filter: invert(1);*/
    }
    .feature-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #13294B;
        margin-bottom: 0.3rem;
    }
    .feature-text {
        font-size: 20px;
        color: #333;
        margin-bottom: 0;
    }
    @media (max-width: 767.98px) {
        .custom-heading {
            font-size: 2rem;
        }
        .feature-item {
            margin-bottom: 1.5rem;
        }
    }
    /*.display-1{
      color: #13294B!important;
    }*/
    .display-2{
      color: #13294B!important;
    }
    .fs-5{
/*      color: #BFA778;*/
      font-weight: 500;
    }
   
   .footer {
        background-color: #1e2952;
    }
    .footer p, .footer a {
        color: #fff;
        font-size: 0.9rem;
    }
    .footer-link {
        text-decoration: none;
        color: #fff;
    }
    .footer-link:hover {
        text-decoration: underline;
    }
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #b48b57;
        border-radius: 50%;
        color: #fff;
        margin-right: 6px;
        transition: 0.3s;
    }
    .social-icons a:hover {
        background-color: #a07847;
    }


/*.project page.*/

/
/* --- Main Container --- */
.main-container {
    max-width: 1200px; /* Bade screen par layout ko aek limit mein rakhta hai */
}

/* --- Header --- */
.main-heading {
   
    font-size: clamp(2.2rem, 5vw, 2.8rem); /* Screen ke hisaab se size badlega */
    letter-spacing: 0.25em; /* Aksharon ke beech zyada space */
    font-weight: 700;
}

/* --- Icon Categories Section --- */
.category-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1.5px solid white; /* Border thoda patla kiya */
}

.category-text {
    font-size: 0.6rem; /* Font size aur chota kiya */
    font-weight: 700;
    letter-spacing: 0.15em; /* Space badhaya */
    text-transform: uppercase;
    color: #cccccc; /* Rang thoda halka kiya */
}

/* --- Project Grid & Captions --- */
.project-card img {
    width: 100%;
    height: auto;
    display: block;
}

.caption p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.caption-type {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ddc181; /* Halka grey color */
    margin-bottom: 2px;
}

.caption-location {
    font-size: clamp(0.8rem, 2vw, 0.9rem); /* Responsive font size */
    font-weight: 700;
    letter-spacing: 0.08em; /* Thoda space */
    text-transform: uppercase;
    color: #f0f0f0; /* Poora white nahi */
}

/* --- Menu Circle Icon --- */
.menu-circle {
    position: absolute;
    top: 50%;
    right: -25px; 
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.menu-bar {
    width: 15px;
    height: 2px;
    background-color: #1A1A41;
}

/* --- Responsiveness Adjustments --- */
/* Medium (tablet) & Small (mobile) screens */
@media (max-width: 991.98px) {
    .menu-circle {
        right: 20px; 
        top: auto;
        bottom: 20px;
        transform: none; 
    }
}

/* Extra small (mobile) screens */
@media (max-width: 767.98px) {
    .main-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .main-heading {
        letter-spacing: 0.15em; /* Mobile par thoda kam space */
    }
}

/*....about..*/


.testimonials-section {
/*            background-color: #1a233d;*/
            color: #ffffff;
            padding: 6rem 0;
           
        }

        .testimonials-section .review-tag {
            font-size: 1rem;
            color: #a0a8b9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Renamed from main-heading to avoid conflicts */
        .testimonials-section .testimonial-main-heading {
            
/*            font-weight: 700;*/
            font-size: 4.5rem;
            margin-bottom: 4rem;
        }

        .testimonial-item {
            margin-bottom: 3rem;
        }

        .testimonial-item .profile {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-item .profile img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 1.5rem;
        }

        .testimonial-item .profile .name {
            font-weight: 500;
            font-size: 1.25rem;
            margin: 0;
        }

        .testimonial-item .profile .title {
            color: #6aefd9;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonial-item .text {
            color: #d1d5db;
            line-height: 1.8;
            font-size: 1.2rem;
            text-align: justify;
        }
        
        /* Video section styles */
        .video-thumbnail-wrapper {
            position: relative;
            cursor: pointer;
            display: inline-block; /* To make the wrapper fit the image */
        }

        .video-thumbnail-wrapper .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease;
            z-index: 10;
        }
        
        .video-thumbnail-wrapper:hover .play-button {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .video-thumbnail-wrapper .play-button::before {
            content: '';
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #ffffff;
            display: inline-block;
            margin-left: 5px; /* to center the triangle */
        }
        
        .video-caption {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Modal Customizations */
        .modal-dialog-centered {
            display: flex;
            align-items: center;
            min-height: calc(100% - 1rem);
        }
        .modal-content {
            background-color: transparent;
            border: none;
        }
        .modal-body {
            padding: 0;
        }
        .video-iframe-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            width: 100%;
            background: #000;
        }
        .video-iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }


        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .testimonials-section .testimonial-main-heading {
                font-size: 3.5rem;
            }
             .video-thumbnail-wrapper {
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 4rem 0;
            }
            .testimonials-section .testimonial-main-heading {
                font-size: 2.5rem;
                margin-bottom: 2rem;
            }
             .testimonial-item .profile {
                flex-direction: column;
                align-items: flex-start;
            }
            .testimonial-item .profile img {
                margin-bottom: 1rem;
            }
        }

/*        ..estimate..*/




  .estimate-section {
            padding: 5rem 0;
        }

        /* Title Styling */
        .estimate-title {
          
            font-size: 3.5rem;
            font-weight: 500;
            color: #1A237E; /* Dark Blue from image */
            letter-spacing: 5px;
            margin-bottom: 3rem;
        }

        /* Form Label Styling */
        .form-label {
            color: #1A237E;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .form-label .required-asterisk {
            color: #E53935; /* Red from image */
            font-weight: bold;
        }
        
        /* Input Field Container for Icon Positioning */
        .input-wrapper {
            position: relative;
        }

        /* Input Fields Styling */
        .form-control {
            border-radius: 5px;
            border: 1px solid #DDE2E5;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            height: 50px;
        }

        .form-control:focus {
            border-color: #1A237E;
            box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
        }
        
        .form-control::placeholder {
            color: #AAB2B7;
        }

        /* Icon inside input field */
        .input-wrapper .form-icon {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: #1DE9B6; /* Teal/Green color from image */
            font-size: 1.2rem;
        }
        
        /* Select Dropdown Arrow */
        .form-select {
            border-radius: 5px;
            border: 1px solid #DDE2E5;
            height: 50px;
            background-position: right 1rem center;
        }
        
        .form-select:focus {
             border-color: #1A237E;
             box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
        }

        /* Custom Checkbox Styling */
        .form-check-label {
            font-size: 0.9rem;
            color: #555;
        }

        .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: 0.2em;
            border: 1px solid #BDBDBD;
            border-radius: 3px;
        }
        
        .form-check-input:checked {
            background-color: #1A237E;
            border-color: #1A237E;
        }
        
        .form-check-input:focus {
             box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
        }

        /* Comments Textarea */
        .form-control.comments-box {
            height: 150px;
            resize: none;
        }

        /* Submit Button */
        .btn-submit {
            border: 2px solid #E0E0E0;
            color: #1A237E;
            
            letter-spacing: 2px;
            font-weight: 600;
            padding: 10px 30px;
            margin-top: 2rem;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #1A237E;
            border-color: #1A237E;
            color: #fff;
        }

        /* Right side image */
        .estimate-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .estimate-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .estimate-section {
                padding: 3rem 0;
            }
        }
        
        @media (max-width: 767.98px) {
             .estimate-title {
                font-size: 2rem;
                letter-spacing: 3px;
            }
        }
        .text-cobalt{
            color: #1A237E;
        }


        .top-text{
              color: #BFA778;
        }


