@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --FireRed: teal;
    --VibrantOrange: black;
    --primarycolor: grey;
    --JetBlack: yellow;
}

body {
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/*to target different fonts*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    /*text-transform:uppercase;*/
}

.portfolio-card {
    display: flex;
    flex-direction: column;
}

.image-container {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 3rem;
    }

    .portfolio-card h3 {
        font-size: 1.3rem;
    }
}

.btn.btn-primary {
    background-color:var(--VibrantOrange);
    border-color:var(--VibrantOrange);
}

.btn.btn-secondary {
    background-color:var(--JetBlack);
    border-color:var(--JetBlack);
}

/*Outline button styles*/
.btn.btn-outline-primary {
    color:var(--VibrantOrange);
    border-color:var(--VibrantOrange);
}

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

/*Outline secondary button styles*/
.btn.btn-outline-secondary {
    color:var(--VibrantOrange);
    border-color:var(--VibrantOrange);
}

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

.trusted-by-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
        
.icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 0;
    width: 300px;
}
        
.icons-grid img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
        
.icons-grid img:hover {
    opacity: 1;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60px;
}

@media (max-width: 768px) {
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 220px;
    }
}

.btn-view-more {
    background: transparent;
    border: 2px solid grey;
    color: grey;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-view-more:hover {
    background: grey;
    color: white;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: lightgrey;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.custom-icon-color {
  color: pink; 
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
}

/*ratings*/
.rating {
    color: #ffc107;
}
.rating .fa-star {
    cursor: pointer;
    transition: color 0.2s;
}
.rating .fa-star:hover {
    color: #ff9800;
}
.rating-readonly .fa-star {
    cursor: default;
}
.star-empty {
    color: #e4e5e9;
}

.custom-position-colour {
    color: rgb(126, 108, 126);
}

/*contact us form*/
.contact-container {
    max-width: 1000px;
    margin:50px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-section {
    padding: 40px;
}

.image-section {
    background: #f8f9fa;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.architectural-sketch {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .image-section {
        padding: 20px;
        min-height: 250px;
    }
}
      
.contact-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
        
.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}
        
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}
        
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background-color: white;
    }
        
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}
        
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}
        
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background-color: white;
}
        
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
        
.btn-submit {
    background: black;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    color: white;
    transition: all 0.3s ease;
}
        
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px black;
}

.btn-contact {
    background: black;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    width: fit-content;
    color: white;
    transition: all 0.3s ease;
}

.detail-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgb(201, 199, 199);
}

.testimonials-section {
    background: black;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/*Testimonial Carousel*/
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
        
.testimonial-header {
    margin-bottom: 60px;
}
        
.testimonial-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}
        
.testimonial-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}
        
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}
        
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
        
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
        
.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}
        
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}
        
.carousel-control-prev {
    left: -30px;
}
        
.carousel-control-next {
    right: -30px;
}
        
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}
        
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}
        
.carousel-indicators {
    bottom: -60px;
}
        
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}
        
.carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}
        
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
            
    .testimonial-header h2 {
        font-size: 2rem;
    }
            
    .testimonial-card {
        height: auto;
        min-height: 250px;
        margin: 0 5px;
    }
            
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
            
    .carousel-control-prev {
        left: -15px;
    }
            
    .carousel-control-next {
        right: -15px;
    }
}

/*Footer*/

.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 40px 0 20px 0;
}
        
.footer-logo {
    background-color: #ffffff;
    color: #2d2d2d;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
        
.footer-logo h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
}
        
.footer-logo .tagline {
    font-size: 14px;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}
        
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
        
.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
        
.contact-info i {
    width: 20px;
    margin-right: 15px;
    color: #ffffff;
}
        
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
        
.nav-links li {
    margin-bottom: 15px;
    padding-bottom: 20px
}
        
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
        
.nav-links a:hover {
    color: #cccccc;
}
        
.cta-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
}
        
.cta-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}
        
.cta-btn:hover {
    background-color: #ffffff;
    color: #2d2d2d;
}
        
.cta-btn i {
    margin-left: 8px;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    margin-top: 30px;
    }
        
.footer-bottom-left {
    font-size: 14px;
    color: #cccccc;
    }
        
.footer-bottom-left a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 15px;
}
        
.footer-bottom-left a:hover {
    color: #ffffff;
}
        
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    justify-content: flex-end;
    }
        
.social-icons a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
   
    transition: color 0.3s ease;
}
        
.social-icons a:hover {
    color: #cccccc;
}
        
@media (max-width: 768px) {
    .vertical-divider {
        display: none;
    }
            
    .social-icons {
        text-align: left;
        margin-top: 20px;
    }
            
    .footer-bottom {
        text-align: center;
    }
            
    .footer-bottom-left {
        margin-bottom: 15px;
    }
}