/* Google Fonts (paste at top of your main CSS file or in <head>) */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@200;400;600&family=Montserrat:wght@200;400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.logo {
    margin-bottom: 30px;
}

.logo-symbol {
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto;
    transform: perspective(200px) rotateX(10deg);
}

.company-name {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 30px 0;
    text-transform: uppercase;
}

.tagline {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 4px;
    opacity: 0.9;
}

.construction-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path fill="%23000" d="M0,200 L0,100 L100,80 L200,90 L300,70 L400,85 L500,75 L600,65 L700,80 L800,70 L900,85 L1000,75 L1100,90 L1200,80 L1200,200 Z"/></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.95); */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1350px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}
.logo-symbol-small img{
    width: 100%;
}
.nav-logo span {
    font-family: "Exo 2", "Eurostile", "BankGothic", "Arial", sans-serif;
    font-weight: 400;
}
.logo-symbol-small {
    width: 40px;
    height: 40px;
    /* border: 2px solid white; */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-links a:hover {
    color: #ccc;
    border-bottom: 2px solid #ccc;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background-color: #f8f8f8;
}

h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-content p {
    margin-bottom: 25px;
}

.logo-center {
    text-align: center;
    margin-top: 60px;
}

.logo-symbol-large {
    width: 120px;
    height: 120px;
    /* border: 3px solid #333; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
    margin: 0 auto 20px;
    color: #333;
}

.logo-center h3 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #333;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    justify-items: center;
}

.team-member {
    text-align: center;
    max-width: 350px;
}

.member-photo {
    width: 200px;
    height: 210px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #ddd;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: white;
}
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.member-title {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.team-description {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.team-description p {
    margin-bottom: 25px;
}

/* Projects Section */
.projects-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding: 20px 0;
}

.service-item {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.02), rgba(0,0,0,0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
    color: #000;
}

.service-icon {
    margin-bottom: 25px;
    color: #333;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.service-item h4 {
    font-size: 1.4rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-item:hover p {
    opacity: 1;
}

/* Staggered animation effect */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

.architectural-plans {
    text-align: center;
    margin-top: 60px;
}

.architectural-plans img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

#contact h2 {
    color: white;
}

.contact-logo {
    text-align: center;
margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-logo .logo-symbol-large {
    border-color: white;
    color: white;
}

.contact-logo h3 {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    align-items: center;
}
.contactbox-item {
    /* display: flex; */
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);

}
.contactbox-item .contact-item {
    background: unset;
    backdrop-filter: unset;
    padding: 0;
    align-items: center;
}
.brnalogo{
        width: 400px;
    height: 100%;
}
.contact-logo img{
    width: 100%;
}
.contact-icon {
    font-size: 1.5rem;
    margin-top: 0px;
}
.sonial-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.contact-details p {
    margin-bottom: 0px;
    font-size: 0.95rem;
}

.contact-details strong {
    color: white;
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}