
/* --------- Color system (Blue + White Corporate Theme) --------- */
:root{
  --primary: #0B2E8F;
  --primary-dark:#02154D;
  --secondary: #00C6D7;
  --gold: #D4A017;
  --bg: #FFFFFF;
  --section-bg: #F8F9FB;
  --heading: #1A1A1A;
  --text: #2B2B2B;
  --text-light: #6B7280;
  --border: #E5E7EB;

  --white:#fff;
  --cta-bg: #001F73;
  --cta-text: #FFFFFF;
  --footer-text:#DCE4FF;
  --footer-heading:#FFFFFF;

  --radius: 8px;
  /* Same style as image */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
}
/* Global resets */
*{ 
  box-sizing:border-box; 
}



.main-page{
  background: #FFFFFF;
  padding: 80px 0 10px;
  font-family: var(--font-sans);
}

.hero-banner {
    width: 100%;
    height: 100vh;
    background: url("/assets/home/banner.png") center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}


.hero-content {
    max-width: 650px;
    margin-left: 70px;
    color: #fff;
}

.hero-content img{
    max-width: 150px;
    margin: 10px 100px;
}

.hero-content .welcome {
    color: #f4b323;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 55px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 700;
    font-family: "Georgia", serif;
}

.hero-content h1 span {
    color: #f4b323;
}

.line {
    width: 90px;
    height: 4px;
    background: #f4b323;
    margin: 25px 0;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #f4b323;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.btn:hover {
    background: #d99600;
}

/* Hide initially */
.hero-content .welcome,
.hero-content h1,
.hero-content .line,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateX(-80px);
}

/* Welcome */
.hero-content .welcome {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Heading */
.hero-content h1 {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Line */
.hero-content .line {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Paragraph */
.hero-content p {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 1.1s;
}

/* Button */
.hero-content .btn {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 1.4s;
}

/* Keyframes */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Floating Card */
.hero-features{
    max-width:1400px;
    width:92%;
    margin:-35px auto 80px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    display:grid;
    grid-template-columns:repeat(5,1fr);
    overflow:hidden;
    position:relative;
    z-index:100;
}

.feature-box{
    padding:20px;
    text-align:center;
    border-right:1px solid #ececec;
    transition:.35s;
}

.feature-box:last-child{
    border-right:none;
}

.feature-box:hover{
    background:#f8f9fb;
    transform:translateY(-8px);
}

.feature-box i{
    font-size:42px;
    color:#02154D;
    margin-bottom:10px;
}

.feature-box h4{
    color:#02154D;
    font-size:20px;
    margin: 10px auto;
    font-weight:600;
}

.feature-box p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.property-types{
    max-width:1400px;
    margin:110px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:35px;
    align-items:center;
}

.property-intro .section-tag{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.property-intro h2{
    margin:12px 0;
    font-size:40px;
    color:var(--primary-dark);
    line-height:1.2;
    font-family:Georgia, serif;
}

.property-intro p{
    color:#666;
    line-height:1.8;
    margin:25px 0;
}

.property-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary-dark);
    color:#fff;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.property-btn:hover{
    background:var(--gold);
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.property-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.property-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary-dark);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    left:20px;
    top:150px;
    border:5px solid #fff;
    font-size:18px;
}

.property-content{
    padding:10px 10px 20px;
}

.property-content h3{
    color:var(--primary-dark);
    margin-bottom:12px;
    font-size:22px;
}

.property-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.property-content a{
    color:var(--gold);
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.property-content a:hover{
    color:var(--primary-dark);
}


.about-home{
    max-width:1400px;
    margin:90px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:12px;
}

.section-tag{
    color:var(--gold);
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.about-content h2{
    margin:10px 0 10px;
    color:var(--primary-dark);
    font-size:36px;
    line-height:1.25;
    font-family:Georgia,serif;
}

.about-content h2 span{
    color:var(--gold);
}

.title-line{
    width:70px;
    height:4px;
    background:var(--gold);
    margin-bottom:25px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-list{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
    color:#555;
    font-size:17px;
}

.about-list i{
    color:var(--gold);
    font-size:16px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary-dark);
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:6px;
    transition:.3s;
}

.about-btn:hover{
    background:var(--gold);
}

.process-section{
    max-width:1400px;
    margin:90px auto;
    padding:0 20px;
}

.process-heading{
    text-align:center;
    margin-bottom:50px;
}

.process-heading span{
    color:var(--primary-dark);
    font-size:36px;
    font-weight:700;
    font-family:Georgia,serif;
}

.process-heading .title-line{
    width:70px;
    height:4px;
    background:var(--gold);
    margin:15px auto 0;
}

.process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-line{
    position:absolute;
    top:30px;
    left:10%;
    right:10%;
    border-top:2px dashed #d8d8d8;
    z-index:0;
}

.process-card{
    text-align:center;
    position:relative;
    z-index:1;
}

.process-number{
    width:60px;
    height:60px;
    background:var(--primary-dark);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.process-card:hover .process-number{
    background:var(--gold);
    transform:translateY(-5px);
}

.process-card h3{
    color:var(--primary-dark);
    font-size:22px;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    padding:0 12px;
}


.testimonial-section{
    max-width:1400px;
    margin:90px auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title h2{
    margin:10px 0;
    color:var(--primary-dark);
    font-size:42px;
    font-family:Georgia,serif;
}

.section-title .title-line{
   width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 25px;
}


.testimonialSwiper{
    padding:20px 5px 70px;
}

.swiper-slide{
    height:auto;
}

.swiper-button-next,
.swiper-button-prev{
    color:#02154D;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

.swiper-pagination-bullet{
    background:#cfcfcf;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#D4A017;
}


.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#f4b323;
    font-size:20px;
    margin-bottom:18px;
}

.quote{
   
    display: flex ;
    flex-direction: row ;
    gap: 10px;
}

.quote i{
     color:#d4d8e5;
    font-size:38px;
    margin-bottom:12px;
}

.quote p{
    color:#555 ;
    line-height:1.8;
    margin-bottom:5px;
    font-size: 15px ;
    min-height:110px ;
}


.client-info h4{
    color:var(--primary-dark);
    margin:5px;
    font-size:18px;
}

.client-info span{
    color:#777;
    font-size:14px;
}


@media (min-width:1025px) and (max-width:1366px){

    .main-page{
        padding-top:75px;
    }

    /* Hero */
    .hero-banner{
        height:85vh;
    }

    .hero-content{
        margin-left:50px;
        max-width:580px;
    }

    .hero-content img{
        width:130px;
        margin:0 70px 0px;
    }

    .hero-content h1{
        font-size:45px;
        margin: 10px 0;
    }

    .hero-content p{
        font-size:18px;
        margin: 4px 0;
    }

    .line {
        margin: 10px 0;
    }

    /* Features */

    .hero-features{
        grid-template-columns:repeat(5,1fr);
        width:95%;
    }

    .feature-box{
        padding:18px;
    }

    .feature-box h4{
        font-size:18px;
    }

    .feature-box p{
        font-size:14px;
    }

    /* Property */

    .property-types{
        grid-template-columns:300px 1fr;
    }

    .property-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .property-intro h2{
        font-size:36px;
    }

    .property-card img{
        height:170px;
    }

    .property-icon{
        top:145px;
    }

    /* About */

    .about-home{
        gap:45px;
    }

    .about-content h2{
        font-size:34px;
    }

    /* Process */

    .process-wrapper{
        gap:15px;
    }

    .process-card h3{
        font-size:18px;
    }

    /* Testimonial */

    .section-title h2{
        font-size:36px;
    }

    .testimonial-card{
        padding:25px;
    }
    }


@media (min-width:769px) and (max-width:1024px){

    .main-page{
        padding-top:70px;
    }

    /* Hero */

    .hero-banner{
        height:80vh;
    }

    .hero-content{
        margin-left: 50px;
        max-width:700px;
    }

    .hero-content img{
        margin:auto;
        width:120px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content  p{
        display: none;
    }

    .hero-content .line{
        margin:20px auto;
    }

    /* Features */

    .hero-features{
        grid-template-columns:repeat(2,1fr);
        margin-top:-25px;
    }


    .feature-box i{
        font-size: 30px;
    }

    .feature-box h4{
        font-size: 18px;
    }


    .feature-box:nth-child(2){
        border-right:none;
    }

    .feature-box:nth-child(5){
        display: none;
    }

    /* About */

    .about-home{
        grid-template-columns:1fr;
        margin: 90px 10px 20px;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p{
        text-align: justify;
    }

    .about-btn{
        display: none;
    }

    .title-line{
        margin:auto auto 25px;
    }

    /* Property */

    

    .property-types{
        grid-template-columns:1fr;
        margin: 30px 10px 30px;
        
    }
    .property-intro h2 {
        font-size: 32px;
    }

    .property-content h3 {
        font-size: 20px;
    }

    .property-intro{
        text-align:center;
    }

    .property-intro .title-line{
        margin:auto auto 25px;
    }

    .property-btn{
        display: none;
    }

    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }


    /* Process */

    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .process-heading span {
        font-size: 32px;
    }

    .process-card h3 {
        font-size: 20px;
    }


    .process-card:nth-child(6){
        grid-column: 1 / 3;
        justify-self: center;
        max-width: 350px;
    }
    .process-line{
        display:none;
    }

    /* Testimonial */

    .section-title h2{
        font-size:32px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

    .testimonial-card{
        padding:25px;
    }
}


@media (min-width:481px) and (max-width:768px){

    .main-page{
        padding-top:65px;
    }

    .hero-banner{
        height:75vh;
    }

    .hero-content{
        margin:auto;
        padding:0 20px;
    }

    .hero-content img{
        width:110px;
        margin:auto;
    }

    .hero-content .welcome{
        font-size:18px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        display: none;
    }


    .btn{
        padding: 10px 20px;
    }

    /* Features */

    .hero-features{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-box{
        border-right:none;
        border-bottom:1px solid #eee;
    }

    /* About */

    .about-home{
        grid-template-columns:1fr;
        margin: 30px 10px;
    }

    .about-image{
        display: none;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p{
        text-align: justify;
        font-size: 16px;
    }

    .about-list li{
        font-size: 16px;
        margin-left: 5%;
    }

    .about-btn{
        display: none;
    }

    .title-line{
        margin:auto auto 20px;
    }

    .feature-box i{
        font-size: 30px;
    }

    .feature-box h4{
        font-size: 18px;
    }

    .feature-box:last-child{
        grid-column:span 2;
    }

    .feature-box:nth-child(5){
        display: none;
    }

    /* Property */

    .property-types{
        grid-template-columns:1fr;
         margin: 30px 10px 30px;
    }

    .property-intro{
        text-align:center;
    }

    .property-intro h2 {
        font-size: 30px;
    }

    .property-grid{
        grid-template-columns:1fr;
    }

    .property-btn {
        display: none;
    }
    
    .process-card img{
        height: 250px;
    }

    .property-intro h2 {
        font-size: 30px;
    }

    .property-content h3 {
        font-size: 18px;
    }
    /* Process */

    .process-section {
        margin: 40px 10px;
    }

    .process-wrapper{
        grid-template-columns:1fr;
    }


    .process-line{
        display:none;
    }

    .process-heading span {
        font-size: 30px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    /* Testimonial */

    .testimonial-section {
        margin: 40px 10px;
    }

    .section-title h2{
        font-size:30px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

    .testimonial-card{
        padding:22px;
    }
}

@media (max-width:480px){

    .main-page{
        padding-top:60px;
    }

    /* Hero */

    .hero-banner{
        height:85vh;
    }

    .hero-content{
        margin:auto;
        padding:0 20px;
    }

    .hero-content img{
        width:90px;
        margin:auto;
    }

    .hero-content .welcome{
        font-size:14px;
    }

    .hero-content h1{
        font-size:30px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:15px;
    }

    .btn{
        width:50%;
    }

    /* Features */

    .hero-features{
        grid-template-columns:1fr;
        margin:-20px 10px 40px;
    }

    .feature-box{
        border-right:none;
        border-bottom:1px solid #eee;
        font-size: 28px;
    }
    .feature-box h4{
        font-size: 16px;
    }

    /* Property */

    .property-types{
        grid-template-columns:1fr;
        margin:60px auto;
    }

    .property-intro{
        text-align:center;
    }

    .property-intro h2{
        font-size:28px;
    }

    .property-grid{
        grid-template-columns:1fr;
    }

    .property-card img{
        height:220px;
    }

    .property-content h3 {
        font-size: 18px;
    }

    .property-btn {
        display: none;
    }

    /* About */

    .about-image img {
        display: none;
    }
    .about-home{
        grid-template-columns:1fr;
        margin:30px auto;
        gap: 20px;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:28px;
    }
    .about-content p {
        text-align: justify;
    }

    .about-list li{
        justify-content:flex-start;
        font-size:15px;
    }

    .about-btn{
        width:100%;
        justify-content:center;
    }

    .title-line{
        margin: 10px auto;
    }

    /* Process */

    .process-section {
        margin: 40px auto;
    
    }

    .process-wrapper{
        grid-template-columns:1fr;
    }

    .process-line{
        display:none;
    }

    .process-heading span{
        font-size:26px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    /* Testimonials */

    .testimonial-card{
        margin: 40px auto;
    }

    .section-title {
        margin-bottom: 0px !important;
    }

    .section-title h2{
        font-size:28px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none !important;
    }

    .quote{
        flex-direction:column;
        gap:5px;
    }

    .quote p{
        min-height:auto;
    }

    .client-info h4{
        font-size:16px;
    }

    .client-info span{
        font-size:13px;
    }
}