/*=========================
        ROOT
=========================*/

:root{
    --primary:#c0392b;
    --primary-dark:#a93226;
    --primary-light:#e74c3c;
    --secondary:#f39c12;
    --secondary-dark:#e67e22;
    --accent:#27ae60;
    --dark:#2c3e50;
    --text:#333333;
    --text-light:#555555;
    --text-muted:#888888;
    --gray:#95a5a6;
    --gray-light:#bdc3c7;
    --border:#e0d6c8;
    --border-light:#f0e6d6;
    --bg:#fdf6ec;
    --bg-light:#fdf8f3;
    --white:#ffffff;
    --black:#222222;
    --overlay:rgba(0,0,0,.55);
    --gold:#f3c623;
    --blue:#1e88e5;
    --shadow:0 2px 12px rgba(0,0,0,0.08);
    --shadow-sm:0 1px 6px rgba(0,0,0,0.06);
    --shadow-md:0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:0 8px 32px rgba(0,0,0,0.12);
    --radius:10px;
    --radius-sm:8px;
    --radius-md:12px;
    --radius-lg:16px;
    --input-focus:rgba(192,57,43,0.12);
    --cream:#fdf6ec;
    --font-primary:'Poppins','Noto Sans Tamil',sans-serif;
    --font-size-xs:0.75rem;
    --font-size-sm:0.82rem;
    --font-size-base:0.92rem;
    --font-size-md:1rem;
    --font-size-lg:1.15rem;
    --font-size-xl:1.5rem;
    --font-size-2xl:1.9rem;
    --font-size-3xl:2.4rem;
    --heading-weight:700;
    --body-weight:400;
    --btn-padding:0.85rem 2rem;
    --btn-radius:10px;
    --transition:0.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--font-primary);
    overflow-x:hidden;
    color:var(--text);
}

/*=========================
      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:#fff;

    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:#fff;
    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:#fff;
    border-radius:5px;
    padding:0 12px;
    font-size:13px;
    color:var(--text);
}

/* Placeholder */

.form-group input::placeholder{
    color:#999;
}

/*=========================
        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:#fff;
    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:#fff;
    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:#222;
    margin-bottom:5px;
}

.trust-box p{
    font-size:13px;
    color:#666;
    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:#FFF3C7;
    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:#222;
    margin:auto;
}

.section-title a{
    position:absolute;
    right:80px;
    color:#c4385a;
    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;
}

/* =========================
      Card
========================= */

.profile-card{
    transition:.35s;
}

.profile-card:hover{
    transform:translateY(-8px);
}

.profile-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:10px;
}

.profile-content{
    padding:8px 2px;
}

.profile-content h3{
    font-size:22px;
    color:#222;
    font-weight:700;
    margin-bottom:3px;
}

.profile-content p{
    font-size:14px;
    color:#444;
    margin-bottom:2px;
}

.profile-content span{
    font-size:13px;
    color:#666;
}

/* =========================
      Icons
========================= */

.profile-icons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    padding:0 5px;
}

.profile-icons i{
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.profile-icons i:nth-child(1){
    color:#ff2b52;
}

.profile-icons i:nth-child(2){
    color:#2637d9;
}

.profile-icons i:nth-child(3){
    color:#d51bc6;
}

.profile-icons i:hover{
    transform:scale(1.25);
}

/* =========================
      Responsive
========================= */

@media(max-width:1100px){

.profile-grid{
    grid-template-columns:repeat(2,1fr);
}

.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-card img{
    height:300px;
}

.profile-content h3{
    font-size:26px;
}

.profile-content p{
    font-size:16px;
}

.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:#222;

    margin-bottom:15px;
}

.success-content p{

    color:#555;

    font-size:14px;

    line-height:24px;

    margin-bottom:22px;

    max-width:300px;
}

.success-btn{

    display:inline-block;

    padding:12px 24px;

    background:#d71919;

    color:#fff;

    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:var(--font-primary);
}

body{
    background:#f8f8f8;
}

/*========================*/

.works-section{
    width:100%;
    background:#fff;
    padding:35px 15px;
}

.works-section h2{
    text-align:center;
    font-size:26px;
    color:#222;
    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:#fff;
    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:#fff;
    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;
    }
}