/*=========================
        ROOT
=========================*/

/* Uses root variables from app.css */

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

body{
    font-family:var(--font-primary);
    overflow-x:hidden;
}

/*=========================
      HERO BANNER
=========================*/

.hero-banner{
    position:relative;
    width:100%;
    min-height:90vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
}

/* Overlay */

.hero-overlay{

    position:absolute;
    inset:0;

}

/*=========================
     HERO CONTENT
=========================*/

.hero-content{

    position:relative;
    z-index:2;

    text-align:center;
    color:var(--white);

    margin-bottom:35px;

}

.hero-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    font-weight:300;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:16px;
    font-weight:400;
    line-height:1;
    margin-top:3px;
}

.hero-content span{
    color:var(--gold);
}

.hero-content p{
    margin-top:10px;
    font-size:14px;
    font-weight:400;
}

/*=========================
      SEARCH FORM
=========================*/

.search-form{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:10px;
    width:95%;
    max-width:1000px;
}

/*=========================
      FORM GROUP
=========================*/

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:var(--white);
    margin-bottom:5px;
    font-size:13px;
    font-weight:500;
}

/* Input & Select */

.form-group input,
.form-group select{
    width:145px;
    height:42px;
    border:none;
    outline:none;
    background:var(--white);
    border-radius:5px;
    padding:0 12px;
    font-size:13px;
    color:#333;
}

/* Placeholder */

.form-group input::placeholder{
    color:var(--gray);
}

/*=========================
        BUTTON
=========================*/

.form-btn{
    display:flex;
    align-items:flex-end;
}

.form-btn button{
    width:140px;
    height:42px;
    border:none;
    border-radius:5px;
    background:var(--blue);
    color:var(--white);
    font-size:14px;
    cursor:pointer;
    transition:.3s;
}

.form-btn button:hover{
    background:#1565c0;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.hero-content h2{

    font-size:48px;

}

.hero-content h1{

    font-size:70px;

}

.hero-content p{

    font-size:18px;

}

}

@media(max-width:768px){

.hero-banner{

    padding:100px 20px 50px;

}

.hero-content{

    margin-bottom:35px;

}

.hero-content h2{

    font-size:36px;

}

.hero-content h1{

    font-size:52px;

}

.hero-content p{

    font-size:16px;

}

.form-group{

    width:100%;

}

.form-group input,
.form-group select{

    width:100%;

}

.form-btn{

    width:100%;

}

.form-btn button{

    width:100%;

}

}


/* ===============================
   LARGE LAPTOP (1400px)
================================ */

@media (max-width:1400px){

.hero-content h2{
    font-size:60px;
}

.hero-content h1{
    font-size:85px;
}

.hero-content p{
    font-size:20px;
}

.search-form{
    max-width:1150px;
}

.form-group input,
.form-group select{
    width:165px;
}

}


/* ===============================
   LAPTOP (1200px)
================================ */

@media (max-width:1200px){

.hero-banner{
    padding:80px 20px;
}

.hero-content h2{
    font-size:52px;
}

.hero-content h1{
    font-size:75px;
}

.hero-content p{
    font-size:18px;
}

.search-form{
    justify-content:center;
}

.form-group input,
.form-group select{
    width:150px;
}

.form-btn button{
    width:150px;
}

}


/* ===============================
   TABLET
================================ */

@media (max-width:992px){

.hero-banner{

    min-height:100vh;
    padding:60px 20px;

}

.hero-content{

    margin-bottom:40px;

}

.hero-content h2{

    font-size:45px;

}

.hero-content h1{

    font-size:65px;

}

.hero-content p{

    font-size:17px;

}

.search-form{

    gap:12px;

}

.form-group input,
.form-group select{

    width:220px;

}

.form-btn button{

    width:220px;

}

}


/* ===============================
   MOBILE
================================ */

@media (max-width:768px){

.hero-banner{

    padding:100px 20px 50px;

}

.hero-content{

    margin-bottom:30px;

}

.hero-content h2{

    font-size:35px;

}

.hero-content h1{

    font-size:50px;
    line-height:1.2;

}

.hero-content p{

    font-size:15px;
    padding:0 15px;

}

.search-form{

    flex-direction:column;
    align-items:center;
    gap:15px;

}

.form-group{

    width:100%;

}

.form-group label{

    font-size:14px;

}

.form-group input,
.form-group select{

    width:100%;
    height:50px;

}

.form-btn{

    width:100%;

}

.form-btn button{

    width:100%;
    height:50px;

}

}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width:480px){

.hero-content h2{

    font-size:28px;

}

.hero-content h1{

    font-size:40px;

}

.hero-content p{

    font-size:14px;

}

.hero-banner{

    padding:90px 15px 40px;

}

.search-form{

    width:100%;

}

.form-group input,
.form-group select{

    font-size:14px;

}

.form-btn button{

    font-size:15px;

}

}


/* trust section */



body{
    background:#f8f8f8;
}

.trust-section{
    max-width:1180px;
    margin:30px auto;
    padding:30px 20px;
    background:var(--white);
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.06);
}

/* ==========================
      TOP TRUST SECTION
========================== */

.trust-wrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    margin-bottom:30px;
}

.trust-box{
    text-align:center;
    padding:8px 12px;
    border-right:1px solid #e5e5e5;
}

.trust-box:last-child{
    border-right:none;
}

.trust-icon{
    font-size:34px;
    margin-bottom:10px;
}

.red{color:#b23b3b;}
.yellow{color:#d5a100;}
.green{color:#47d77c;}
.blue{color:#2f3fd6;}
.orange{color:#d98c00;}

.trust-box h3{
    font-size:17px;
    font-weight:600;
    color:var(--black);
    margin-bottom:5px;
}

.trust-box p{
    font-size:13px;
    color:var(--gray);
    line-height:1.4;
}

/* ==========================
      CATEGORY SECTION
========================== */

.category-wrapper{
    display:grid;
    grid-template-columns:repeat(5, 180px); /* Box width */
    justify-content:center;
    gap:12px;
}

.category-card{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:8px;
    transition:.35s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.category-card i{
    font-size:18px;
}

.category-card h4{
    font-size:14px;
    font-weight:600;
    margin-bottom:2px;
}

.category-card span{
    font-size:11px;
    font-weight:500;
}

.religion{
    background:#FFE8D5;
    color:#F4A642;
}

.community{
    background:#DFF8DD;
    color:#4B8A4E;
}

.location{
    background:#DCEEFF;
    color:#2C78D3;
}

.education{
    background:#FFDDF8;
    color:#D94AD5;
}

.profession{
    background:var(--white)3C7;
    color:#D7B018;
}

/* ==========================
      TABLET
========================== */

@media(max-width:992px){

.trust-wrapper,
.category-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.trust-box{
    border:none;
    border-bottom:1px solid #eee;
    padding:20px;
}

}

/* ==========================
      MOBILE
========================== */

@media(max-width:576px){

.trust-section{
    padding:25px 15px;
}

.trust-wrapper,
.category-wrapper{
    grid-template-columns:1fr;
    gap:15px;
}

.trust-box{
    padding:15px;
}

.trust-icon{
    font-size:34px;
}

.trust-box h3{
    font-size:18px;
}

.trust-box p{
    font-size:14px;
}

.category-card{
    padding:16px;
}

.category-card i{
    font-size:30px;
}

.category-card h4{
    font-size:17px;
}

.category-card span{
    font-size:13px;
}

}

/* Featured section */



body{
    background:#fafafa;
}

/* =========================
   Featured Section
========================= */

.featured-section{
    width:90%;
    max-width:1200px;
    margin:0px auto;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:38px;
    font-weight:600;
    color:var(--black);
    margin:auto;
}

.section-title a{
    position:absolute;
    right:80px;
    color:var(--primary);
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.section-title a:hover{
    color:#ff4b78;
}

/* =========================
      Grid
========================= */

.profile-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* =========================
      Carousel
========================= */

.profile-carousel{
    overflow:hidden;
    position:relative;
    width:100%;
    padding:0 45px;
}

.profile-track{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding:4px 0 12px;
}

.profile-track::-webkit-scrollbar{
    display:none;
}

.profile-track .profile-card{
    min-width:250px;
    flex-shrink:0;
}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:rgba(196, 56, 90, 0.9);
    color:var(--white);
    font-size:15px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .3s, transform .3s, box-shadow .3s;
    box-shadow:0 4px 12px rgba(196, 56, 90, 0.35);
    z-index:5;
}

.carousel-btn:hover{
    background:var(--primary);
    transform:translateY(-50%) scale(1.1);
    box-shadow:0 6px 18px rgba(196, 56, 90, 0.5);
}

.carousel-prev{
    left:0;
}

.carousel-next{
    right:0;
}

/* =========================
      Card
========================= */

.profile-card{
    transition:.35s;
    width:250px;
    flex-shrink:0;
    background:var(--white);
    border-radius:12px;
    overflow:hidden;
    border:1px solid var(--border-light);
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.profile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.profile-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:0;
}

.profile-content{
    padding:10px 12px;
}

.profile-content h3{
    font-size:16px;
    color:var(--black);
    font-weight:700;
    margin-bottom:3px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:150px;
}

.profile-content p{
    font-size:12px;
    color:var(--text-light);
    margin-bottom:2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:220px;
}

.profile-content span{
    font-size:11px;
    color:var(--primary);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    display:block;
    max-width:220px;
    font-weight:500;
}

/* =========================
      Icons
========================= */

.profile-icons{
    display:flex;
    gap:10px;
    align-items:center;
    margin-top:10px;
    padding-top:8px;
    border-top:1px solid var(--border-light);
}

.profile-icons .icon-btn{
    text-decoration:none;
    color:var(--gray);
    transition:all .3s;
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fdf6f2;
    border:none;
    cursor:pointer;
    padding:0;
}

.profile-icons .icon-btn i{
    font-size:14px;
    transition:transform .2s;
}

.profile-icons .heart-btn i{
    color:#ff2b52;
}

.profile-icons .eye-btn i{
    color:var(--primary);
}

.profile-icons .icon-btn:hover{
    transform:scale(1.15);
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.profile-icons .shortlist-form{
    display:inline;
}

/* =========================
      Responsive
========================= */

@media(max-width:1100px){

.profile-grid{
    grid-template-columns:repeat(2,1fr);
}

.profile-track .profile-card{
    min-width:250px;
}

.section-title h2{
    font-size:36px;
}

.section-title a{
    position:static;
}

}

@media(max-width:768px){

.section-title{
    flex-direction:column;
    gap:15px;
}

.section-title h2{
    font-size:30px;
    text-align:center;
}

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

.profile-track .profile-card{
    min-width:250px;
}

.profile-card img{
    height:200px;
}

.profile-content h3{
    font-size:16px;
}

.profile-content p{
    font-size:13px;
}

.profile-content span{
    font-size:15px;
}

.profile-icons i{
    font-size:20px;
}

}

/* ==========================
   Large Desktop (1400px)
========================== */
@media (max-width:1400px){

.featured-section{
    width:95%;
}

.profile-grid{
    gap:24px;
}

.profile-card img{
    height:300px;
}

.section-title h2{
    font-size:42px;
}

}

/* ==========================
   Laptop (1200px)
========================== */
@media (max-width:1200px){

.profile-grid{
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.profile-card img{
    height:260px;
}

.profile-content h3{
    font-size:24px;
}

.profile-content p{
    font-size:15px;
}

.profile-content span{
    font-size:14px;
}

.profile-icons i{
    font-size:19px;
}

.section-title h2{
    font-size:38px;
}

.section-title a{
    font-size:18px;
    right:40px;
}

}

/* ==========================
   Tablet (992px)
========================== */
@media (max-width:992px){

.section-title{
    justify-content:space-between;
}

.section-title h2{
    font-size:34px;
}

.section-title a{
    position:static;
    font-size:17px;
}

.profile-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.profile-card img{
    height:300px;
}

}

/* ==========================
   Mobile Landscape (768px)
========================== */
@media (max-width:768px){

.featured-section{
    width:92%;
    margin:40px auto;
}

.section-title{
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.section-title h2{
    font-size:30px;
    text-align:center;
}

.section-title a{
    font-size:16px;
}

.profile-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.profile-card img{
    height:240px;
}

.profile-content h3{
    font-size:20px;
}

.profile-content p{
    font-size:14px;
}

.profile-content span{
    font-size:13px;
}

.profile-icons{
    margin-top:12px;
}

.profile-icons i{
    font-size:18px;
}

}

/* ==========================
   Mobile (576px)
========================== */
@media (max-width:576px){

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

.section-title h2{
    font-size:26px;
}

.section-title a{
    font-size:15px;
}

.profile-card img{
    height:320px;
}

.profile-content h3{
    font-size:22px;
}

.profile-content p{
    font-size:15px;
}

.profile-content span{
    font-size:14px;
}

.profile-icons i{
    font-size:20px;
}

}

/* ==========================
   Small Mobile (400px)
========================== */
@media (max-width:400px){

.featured-section{
    width:94%;
}

.section-title h2{
    font-size:22px;
}

.section-title a{
    font-size:14px;
}

.profile-card img{
    height:280px;
}

.profile-content h3{
    font-size:20px;
}

.profile-content p{
    font-size:14px;
}

.profile-content span{
    font-size:13px;
}

.profile-icons{
    padding:0;
}

.profile-icons i{
    font-size:18px;
}

}



body{
    background:#f7f7f7;
}

.success-banner{

    width:90%;
    max-width:1300px;
    height:420px;

    margin:50px auto;

    position:relative;

    border-radius:20px;
    overflow:hidden;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.success-content{

    position:relative;
    z-index:2;

    width:35%;
    padding-left:45px;
}

.tag{

    color:#e32222;
    font-size:16px;
    font-weight:600;

    display:flex;
    gap:8px;

    margin-bottom:15px;
}

.tag span{

    font-size:15px;
}

.success-content h1{

    font-size:28px;
    font-family:Georgia,serif;
    font-weight:500;

    line-height:1.35;

    color:var(--black);

    margin-bottom:15px;
}

.success-content p{

    color:var(--text-light);

    font-size:14px;

    line-height:24px;

    margin-bottom:22px;

    max-width:300px;
}

.success-btn{

    display:inline-block;

    padding:12px 24px;

    background:#d71919;

    color:var(--white);

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.success-btn:hover{

    background:#b40f0f;
    transform:translateY(-3px);
}

@media(max-width:991px){

.success-banner{

    height:550px;

    background-position:right center;
}

.success-content{

    width:100%;
    padding:35px;
}

.success-content h1{

    font-size:35px;
}

}

@media(max-width:576px){

.success-banner{

    height:480px;
}

.success-content{

    padding:25px;
}

.success-content h1{

    font-size:28px;
}

.success-btn{

    width:100%;
    text-align:center;
}

}

/* work */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8f8f8;
}

/*========================*/

.works-section{
    width:100%;
    background:var(--white);
    padding:35px 15px;
}

.works-section h2{
    text-align:center;
    font-size:26px;
    color:var(--black);
    margin-bottom:30px;
    font-weight:700;
}

.works-container{
    max-width:850px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.work-box{
    flex:1;
    text-align:center;
}

.work-box i{
    font-size:30px;
    color:#d32f2f;
    margin-bottom:10px;
}

.work-box h4{
    font-size:15px;
    color:#d32f2f;
    font-weight:600;
}

.divider{
    width:1px;
    height:55px;
    background:#cfcfcf;
}

/*========================*/

.premium-banner{
    max-width:1100px;
    width:90%;
    margin:40px auto;
    background:#c91f1f;
    color:var(--white);
    padding:25px 35px;
    border-radius:8px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.premium-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.premium-icon i{
    font-size:26px;
    color:#ffd54f;
}

.premium-left h3{
    font-size:16px;
    margin-bottom:3px;
}

.premium-left p{
    font-size:12px;
    color:#ffeaea;
}

.premium-banner button{
    background:var(--white);
    color:#c91f1f;
    border:none;
    padding:10px 22px;
    border-radius:7px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.premium-banner button:hover{
    background:#f5f5f5;
}

/*========================*/

@media(max-width:768px){

    .works-container{
        flex-direction:column;
        gap:20px;
    }

    .divider{
        width:60%;
        height:1px;
    }

    .premium-banner{
        flex-direction:column;
        gap:15px;
        text-align:center;
        padding:18px;
    }

    .premium-left{
        flex-direction:column;
        gap:8px;
    }

    .works-section h2{
        font-size:22px;
    }

    .work-box i{
        font-size:26px;
    }

    .work-box h4{
        font-size:14px;
    }
}