body {
  margin: 0;
  padding: 0;
}
.footer-hero{
    position: relative;
    width: 100%; 
    height: 680px; 
    min-height: 100vh;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0;
}
.copres-hero {
    position: relative;
    width: 100%; 
    height: 100vh;
    min-height: 680px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0;
}
.copres-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgb(0 0 0 / 0%));
    z-index: 1;
}

.copres-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 100%;
    padding-top: 350px;
}

.copres-logo-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.copres-logo {
    width: 100%;
}

.copres-line {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.6);
}

.copres-tag {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.3;
}

.copres-sub {
    font-size: 35px;
    letter-spacing: 5px;
    margin: 60px 0 60px;
    font-weight: normal;
    line-height: 1.4;
    font-family: sans-serif;
    color:#fff;
}

.copres-btn {
    display: inline-block;
    border: 2px solid #fff;
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 30px;
    padding: 25px 80px;
    border-radius: 50px;
    font-family: sans-serif;

}
.copres-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .copres-logo { width: 240px; }
    .copres-tag { font-size: 22px; }
    .copres-sub { font-size: 18px; }
}
@media (max-width: 768px) {
    .copres-logo-line { flex-direction: column; gap: 20px; }
    .copres-line { width: 80%; height: 2px; }
    .copres-tag { font-size: 20px; text-align: center; }
    .copres-sub { font-size: 16px; letter-spacing: 1.4px; }
}
@media (max-width: 480px) {
    .copres-logo { width: 85%; }
    .copres-tag { font-size: 18px; }
    .copres-sub { font-size: 14px; }
    .copres-btn { padding: 12px 32px; font-size: 16px; }
}
.dap-section {
    width: 100%;
    background: #000;
    text-align: center;
    padding: 120px 0;
}

.dap-section h1 {
    letter-spacing: -0.5px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: normal;
    line-height: 1.2;
    color: #fff;
}

.dap-section h1 span {
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .dap-section h1 { font-size: 56px; }
}
@media (max-width: 768px) {
    .dap-section { padding: 50px 0px; }
    .dap-section h1 { font-size: 42px; }
    .copres-content{padding-top: 200px;}
}
@media (max-width: 480px) {
    .dap-section h1 { font-size: 20px; }
}
@media (max-width: 360px) {
    .dap-section h1 { font-size: 28px; }
}

.architecture-gallery {
    width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 180px;
    padding: 60px 0;
}

.ag-item {
    position: relative;
    overflow: hidden;
}

.ag-item img {
    width: 100%;
    aspect-ratio: 3 / 4.3;
    object-fit: cover;
    transition: .5s ease;
}

.ag-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: .4s ease;
}

.ag-overlay h3 {
    font-size: 25px;
    margin: 0;
    font-weight: normal;
    font-family: 'AkzidenzGrotesk', sans-serif;
    color:#fff;
}

.ag-overlay p {
    font-size: 16px;
    margin-top: 10px;
    font-family: 'AkzidenzGrotesk', sans-serif;
    color:#fff;
}

.ag-item:hover .ag-overlay {opacity: 1;}
.ag-item:hover img {transform: scale(1.08);}

@media (max-width: 1600px) {
    .architecture-gallery {
        width: 100%;
        padding: 40px 60px;
        column-gap: 100px;
    }
}
@media (max-width: 1100px) {
    .architecture-gallery {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 60px;
        row-gap: 60px;
    }
}
@media (max-width: 700px) {
    .architecture-gallery {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 20px!important;
        padding: 15px 20px;
        column-gap: 20px;
    }
}

.copres-about-section {
    padding: 80px 40px;
    background: #fff;
}

.about-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    object-fit: cover;
}
.about-content {
    flex: 1;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-family: 'AkzidenzGrotesk', sans-serif;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 20px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 60px;
    font-size: 22px;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 40px;
    transition: 0.3s ease;
    font-family: sans-serif;
}

.about-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 1100px) {
    .about-container {
        gap: 40px;
    }
    .about-content {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .copres-about-section {
        padding: 50px 20px;
    }
    .about-btn {
        padding: 16px 40px;
        font-size: 18px;
    }
    .about-content p {
        margin-bottom: 16px;
    }
}
.copres-three-column {
    padding: 100px 50px;
    background: #ffffff;
}

.three-col-container {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.three-col-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'AkzidenzGrotesk', sans-serif;
}

.three-col-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 20px;
    font-family: 'AkzidenzGrotesk', sans-serif;
    text-align: justify;
}

.three-col-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}


@media (max-width: 1100px) {
    .three-col-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .three-col-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .three-col-text {
        max-width: 600px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .copres-three-column {
        padding: 60px 25px;
    }
    .three-col-text p {
        font-size: 16px;
    }
}

.our-work-section {
    padding: 50px 20px;
    background: #ffffff;
}

.our-work-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.our-work-title {
    letter-spacing:1.5px;
    margin-bottom: 40px;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: normal;
    line-height: 1.2;
}

.our-work-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
    font-family: 'AkzidenzGrotesk', sans-serif;
}

@media (max-width: 768px) {
    .our-work-section {
        padding: 100px 25px;
    }

    .our-work-title {
        font-size: 36px;
    }

    .our-work-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .our-work-section {
        padding: 80px 20px;
    }

    .our-work-title {
        font-size: 32px;
    }

    .our-work-text {
        font-size: 17px;
        line-height: 1.7;
    }
}

.logo-slider-section {
    background: #000;
    padding: 80px 0;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 24); /* each slide width * total slides (12 original + 12 duplicate) */
    animation: scroll 35s linear infinite;
    gap: 50px;
}

.slide {
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: auto;
}


/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .slide-track { gap: 80px; }
    .slide img { max-height: 100px; }
}

@media (max-width: 768px) {
    .slide-track { gap: 50px; }
    .slide img { max-height: 150px; }
    .slide p { font-size: 16px; }
    .footer-hero{    
        height: 250px!important;
        min-height: 250px!important;
    }
    .ag-item img{aspect-ratio: 4 / 4.3;}
    .ag-overlay h3 {
        font-size: 15px;
    }
    .gc-left h2{line-height: 62px!important;}
}

@media (max-width: 480px) {
    .logo-slider-section { padding: 50px 0; margin-top: 60px;}
    .slide-track { gap: 50px; }
    .slide img { max-height: 130px; }
    .slide p { font-size: 14px; }
}

.faq-section {
        padding: 80px 8%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        box-sizing: border-box;
    }

    .faq-left h2 {
        letter-spacing: -0.5px;
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: 70px;
        font-weight: normal;
        line-height: 1.2;
        color: #000;
    }

    .faq-right {
        width: 60%;
        max-width: 800px;
    }

    .faq-item {
        border-bottom: 1px solid #000;
    }

    .faq-question {
        width: 100%;
        padding: 22px 0;
        text-align: left;
        background: none;
        border: none;
        font-size: 20px;
        font-family: 'AkzidenzGrotesk', sans-serif;
        cursor: pointer;
        font-size: 20px;
        line-height: 1.8;
        font-weight: 400;
        color:#000000;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        font-family: 'AkzidenzGrotesk', sans-serif;
    }

    .faq-answer p {
        margin: 0;
        padding: 0 0 20px 0;
        font-size: 15px;
        line-height: 1.6;
        color: #333;
        font-weight: 400;
        font-family: 'AkzidenzGrotesk', sans-serif;
    }

    /* Learn More Button */
    .learn-more-wrapper {
        padding-left: 6%;
        margin-top: 40px;
    }

    .learn-more-btn {
        display: inline-block;
        padding: 14px 40px;
        border: 2px solid #000;
        border-radius: 50px;
        font-size: 18px;
        text-decoration: none;
        color: #000;
        background: transparent;
        font-family: Helvetica, sans-serif;
    }

    @media (max-width: 900px) {
        .faq-section { flex-direction: column; }
        .faq-right { width: 100%; margin-top: 30px; }
        .faq-left h2 { font-size: 52px; }
    }

    @media (max-width: 600px) {
        .faq-left h2 { font-size: 42px; }
        .faq-question { font-size: 16px; }
    }
    
    
    .good-company-section {
        background: #000;
        color: #fff;
        width: 100%;
        padding: 80px 8%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .gc-left h2 {
        letter-spacing: -0.5px;
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: 115px;
        font-weight: normal;
        line-height: 105px;
        color: #fff;
        text-transform: capitalize;
    }

    .gc-right {
        display: flex;
        gap: 55px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .gc-right img {
        height: 130px;
        width: auto;
        filter: brightness(0) invert(1); /* ensures pure white logos */
    }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
        .gc-left h2 { font-size: 65px; }
        .gc-right img { height: 90px; }
    }

    @media (max-width: 900px) {
        .good-company-section {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }

        .gc-right {
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .gc-left h2 {
            font-size: 60px;
        }
    }

    @media (max-width: 600px) {
        .gc-left h2 {        
            font-size: 50px;
            line-height: 52px;
        }
        .gc-right img { height: 70px; }
    }



/* 125% */
@media (max-width: 1536px) and (min-width: 1281px) {
    .copres-logo-line { width: 900px; }
    .copres-sub {
        font-size: 25px;
    }
    .copres-btn{
        padding: 15px 45px;
        font-size: 18px;
    }
    .copres-content{
        padding-top: 250px;
    }
    .dap-section h1{
        font-size: 53px;
    }
    .about-image img{
        width: 85%;
    }
    .about-container{
        gap: 0px;
    }
    .about-btn{
        padding: 15px 45px;
        font-size: 18px;
    }
    .three-col-text h3{
        font-size: 20px;
    }
    .three-col-text p {
        font-size: 18px;
    }
    .gc-left h2{
        font-size: 95px;
        line-height: 80px;
    }
    .our-work-title{
        font-size: 53px;
        margin-bottom: 20px;
    }
    .our-work-text {
        font-size: 18px;
    }
}

/* 150% */
@media (max-width: 1280px) and (min-width: 1098px) {
    .copres-logo-line { width: 900px; }
    .copres-sub {
        font-size: 25px;
    }
    .copres-btn{
        padding: 15px 45px;
        font-size: 18px;
    }
    .copres-content{
        padding-top: 250px;
    }
    .dap-section h1{
        font-size: 53px;
    }
    .about-image img{
        width: 85%;
    }
    .about-container{
        gap: 0px;
    }
    .about-btn{
        padding: 15px 45px;
        font-size: 18px;
    }
    .three-col-text h3{
        font-size: 20px;
    }
    .three-col-text p {
        font-size: 18px;
    }
    .gc-left h2{
        font-size: 95px;
        line-height: 80px;
    }
    .our-work-title{
        font-size: 53px;
        margin-bottom: 20px;
    }
    .our-work-text {
        font-size: 18px;
    }
}

/* 175% */
@media (max-width: 1097px) and (min-width: 961px) {
    .copres-logo-line { width: 700px; }
    .copres-sub {
        font-size: 20px;
    }
    .copres-btn{
        padding: 12px 36px;
        font-size: 16px;
    }
    .copres-content{
        padding-top: 200px;
    }
    .dap-section h1{
        font-size: 50px;
    }
    .about-image img{
        width: 80%;
    }
    .about-container{
        gap: 0px;
    }
    .about-btn{
        padding: 12px 36px;
        font-size: 16px;
    }
    .three-col-text h3{
        font-size: 18px;
    }
    .three-col-text p {
        font-size: 16px;
    }
    .gc-left h2{
        font-size: 90px;
        line-height: 70px;
    }
    .our-work-title{
        font-size: 50px;
        margin-bottom: 15px;
    }
    .our-work-text {
        font-size: 16px;
    }
}

/* 200% */
@media (max-width: 960px) {
    .copres-logo-line { width: 400px; }
}

.second-text-section {
    width: 100%;
    background: #fff;
    padding: 200px 20px; /* top & bottom spacing like reference */
    display: flex;
    justify-content: center;
}

.second-txt-container {
    max-width: 1100px; /* matches the visual width of the text */
    margin: auto;
}

.second-txt-container p {
   font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 2px;
    color: #333; 
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .second-text-section { padding: 150px 20px; }
    .second-txt-container p { font-size: 20px; letter-spacing: 1.5px; }
}

@media (max-width: 768px) {
    .second-text-section { padding: 120px 20px; }
    .second-txt-container p { font-size: 18px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    .second-text-section { padding: 90px 20px; }
    .second-txt-container p { font-size: 16px; letter-spacing: 0.5px; }
}

.copres-message-sec {
    width: 100%;
    padding: 180px 20px; /* spacing from the reference */
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.copres-message-container {
    text-align: center;
    max-width: 980px; /* matches screenshot width */
    margin: auto;
}


.top-text {
   font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 20px;
    color: #444;
    margin-bottom: 35px;
    line-height: 1.6;
}


.main-title {
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.bottom-links {
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 18px;
    color: #4a90e2;
    letter-spacing: 1.5px;
}
.lr{margin-top: 330px;}
/* Responsive Tweaks */
@media (max-width: 1024px) {
    .copres-message-sec { padding: 140px 20px; }
    .main-title { font-size: 26px; }
}

@media (max-width: 768px) {
    .copres-message-sec { padding: 120px 20px; }
    .top-text { font-size: 16px; }
    .main-title { font-size: 22px; }
    .bottom-links { font-size: 15px; }
    .lr{margin-top:50px!important;}
}

@media (max-width: 480px) {
    .copres-message-sec { padding: 90px 20px; }
    .top-text { font-size: 15px; }
    .main-title { font-size: 20px; }
    .bottom-links { font-size: 14px; }
}




.blog-grid-section {
    width: 100%;
    padding-top: 10%;
     padding-bottom: 10%;
    display: flex;
    justify-content: center;
    background: #f8f9fb;
}

.blog-container {
    max-width: 1300px;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}


.blog-img {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000000;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.blog-content {
    padding: 18px 20px 22px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    margin-bottom: 8px;
    line-height: 1.45;
    text-transform: capitalize;
}

.blog-content p {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: 1.6;
}

.category {
    font-size: 13px;
    color: #4fa1e8;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width:760px) { 
    .blog-grid-section{
        padding-top: 30%!important;
        padding:20px 15px;
    }
}