General Styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.navbar {
    position: sticky;
    top: 0;
    background-color: transparent white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-weight: bold;
    font-size: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}
.nav-links a:hover{
    color: #4b6ec9;
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    top: 100%;
    top: 0;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    transition: transform 0.3s;
}
.dropdown:focus-within .dropdown-toggle i,
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu li {
    padding: 5px 0;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    display: block;
}

.contact-btn {
    background-color: #4b6ec9;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}
.contact-btn:hover {
    background-color: #3a5b9f;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/Hero.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5em;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.hero-btn {
    background-color: #4b6ec9;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}


.info-section {
    padding: 50px;
    text-align: center;
}

.info-text h2 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
}

.info-text p {
    font-size: 1em;
    color: #666;
    max-width: 600px;
    margin: 10px auto 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    width: 150px;
    text-align: center;
    position: relative;
}
.stat-box i{
    font-size: 30px;
    color: #4b6ec9;
    margin-bottom: 10px;
    display: block;

}

.stat-box h3 {
    font-size: 1.8em;
    color: #4b6ec9;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9em;
    color: #666;
}

.how-we-work {
    padding: 50px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.how-we-work h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.how-we-work .subtitle {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.how-we-work .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-text {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.image-text img {
    width: 350px;
    border-radius: 8px;
}

.image-text .text {
    max-width: 500px;
    text-align: left;
}

.image-text h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
}

.image-text p {
    font-size: 1em;
    color: #666;
}

.work-phases {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.phase {
    width: 300px;
    text-align: left;
}

.phase h4 {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.phase p {
    font-size: 1em;
    color: #666;
}
.why-choose-us {
    padding: 50px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.why-choose-us h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-choose-us .subtitle {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    width: 250px;
    text-align: center;
}

.icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.feature-box h4 {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.8em;
    color: #666;
}
.construction-materials {
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}
p{
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}
.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.left-column .right-column{
    display: grid;
    grid-template-rows: repeat(2,1fr);
    gap: 30px;
}
.center-image{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.material-box {
    position: relative;
    width: 100%;
    /* max-width: 300px; */
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
}

.material-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.arrow-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s;
}

.arrow-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.left {
    grid-column: span 1;
}

.center {
    grid-column: span 2;
}

.right {
    grid-column: span 1;
}

@media screen and (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }
    .left-column .right-column{
        grid-template-rows: none;
    }
    .center-image .material-box{
        height: auto;
    }
}
.architecture {
    text-align: center;
    padding: 50px 0;
}

.architecture h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.architecture .description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.image-container{
    border: 2px solid #a1c4fd;
    border-radius: 8px;
    padding: 10px;
}
.image-wrapper {
    border: 3px solid #a1c4fd;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px;
}
.image-scroll {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 20px;
}

.image-box {
    width: 200px;
    text-align: center;
    flex-shrink: 0;
    border: 2px solid #a1c4fd;
    border-radius: 10px;
    padding: 10px;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-box p {
    font-size: 1em;
    font-weight: bold;
    margin: 10px 0;
}

.enquire-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: underline;
    font-size: 0.9em;
}

.enquire-link:hover {
    color: #0056b3;
}


.services {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.services p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.services-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.service-box {
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    scroll-snap-align: center;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-label {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-label span {
    color: #333;
}

.service-label span:last-child {
    font-size: 18px;
    color: #007bff;
}


.services-grid::-webkit-scrollbar {
    height: 6px;
}

.services-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}
@media screen and (max-width: 768px) {
    .service-box {
        min-width: 200px;
    }

    .services h2 {
        font-size: 24px;
    }

    .services p {
        font-size: 14px;
    }
}




.projects-images {
    text-align: center;
    padding: 50px 0;
}

.projects-images h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.projects-images .description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.slider {
    overflow: hidden;
    width: 100%;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-box {
    background-color: #87CEEB;
    padding: 10px;
    border-radius: 10px;
    width: 250px;
}

.image-box img {
    width: 100%;
    border-radius: 8px;
}

.slide-content {
    text-align: left;
}

.slide-content h3 {
    font-size: 1.5em;
    color: #333;
}

.slide-content p {
    font-size: 1em;
    color: #666;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #4b6ec9;
}




.blog-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.blog-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.blog-section .description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.blog-content p {
    color: #666;
    font-size: 1em;
    margin-bottom: 15px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: #0056b3;
    text-decoration: underline;
}




.trusted-section {
    background-color: #020e1d;
    padding: 50px 0;
    color: #fff;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-heading {
    font-size: 2em;
    margin-bottom: 20px;
}

.small-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.box {
    width: 220px;
    height: 100px;
    margin: 20px;
    background-color: #c1ccdd;
    border-radius: 0px;
    justify-content: space-around;
    border: 2px solid #1b3a61;
}




.testimonial {
    background-color: #e1e9ff;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 50px auto;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-image {
    flex: 0 0 150px;
    position: relative;
}

.testimonial-image img {
    width: 250px;
    height: auto;
    border-radius: 50%;
}

.testimonial-content {
    text-align: left;
}

.testimonial-content h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 1em;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.9em;
    color: #666;
}

.testimonial-author strong {
    display: block;
    font-weight: bold;
}




.faq-section {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-weight: bold;
    font-size: 1.1em;
}

.faq-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}

.designer-types-section {
    font-size: 1rem;
    padding: 10px;
    background-color: #ffffff;
    color: #000000;
    text-align: left;
}

.designer-types {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.designer-type h4 {
    font-weight: bold;
    margin-bottom: 10px;
}
.designer-type p {
    font-size: 0.9em;
    margin-bottom: 1px;
}
.show-more {
    margin-top: 10px;
}

.show-more a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}


.footer {
    background-color: #0B1C39;
    color: #FFFFFF;
    padding: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-description {
    flex: 3;
    max-width: 250px;
    color: #fff;
 
}
.footer-description p{
    color: #fff;
    line-height: 1.5;
    font-size: 14px;
    padding: 10px;
}

.contact-button {
    background-color: #5865F2;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex: 2;
    /* flex-wrap: wrap; */
}

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
}

.footer-section p {
    font-size: 14px;
    margin: 5px 0;
    justify-content: center;
    color: #fff;
}

.social-links li {
    display: flex;
    margin-right: 10px;
}
.social-links i{
    margin-right: 10px;
    color: #5865F2;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    border-top: 1px solid #5865F2;
}
