/*==================================================
            GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gurmukhi:wght@300;400;500;600;700;800&display=swap');

/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Noto Sans Gurmukhi',sans-serif;
    background:#F8FAFC;
    color:#4B5563;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    outline:none;
    background:none;
    cursor:pointer;

}

/*==================================================
                VARIABLES
==================================================*/

:root{

    --primary:#0F3D68;
    --secondary:#C79A32;

    --heading:#12395E;

    --text:#666666;

    --white:#ffffff;

    --light:#F7F9FC;

    --border:#E8EDF2;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}

/*==================================================
                COMMON
==================================================*/

.container{

    width:min(90%,1240px);

    margin:auto;

}

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;

    color:var(--heading);

    line-height:1.2;

    margin-bottom:18px;

}

.section-title p{

    font-size:18px;

    color:var(--text);

}

/*==================================================
                BUTTONS
==================================================*/

.primary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.primary-btn:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.secondary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.secondary-btn:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
                TOP BAR
==================================================*/

.topbar{

    background:var(--primary);

    color:#fff;

    padding:12px 0;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.topbar p{

    font-size:14px;

}

.social{

    display:flex;

    align-items:center;

    gap:12px;

}

.social a{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.12);

    transition:var(--transition);

}

.social a:hover{

    background:var(--secondary);

}

/*==================================================
                HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

/*==================================================
                LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:65px;

}

.logo h2{

    font-size:26px;

    color:var(--heading);

}

.logo span{

    color:#888;

    font-size:13px;

}

/*==================================================
                MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu li{

    position:relative;

}

.menu a{

    font-weight:600;

    transition:var(--transition);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:var(--transition);

}

.menu a:hover::after,

.menu .active::after{

    width:100%;

}

.menu a:hover{

    color:var(--secondary);

}

/*==================================================
                BUY BUTTON
==================================================*/

.buy-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:14px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    transition:var(--transition);

}

.buy-btn:hover{

    background:var(--secondary);

}

/*==================================================
            MOBILE MENU ICON
==================================================*/

.mobile-menu{

    display:none;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.menu{

gap:20px;

}

.logo h2{

font-size:22px;

}

.buy-btn{

padding:12px 24px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.topbar{

display:none;

}

.container{

width:92%;

}

nav{

height:75px;

}

.logo img{

width:48px;

}

.logo h2{

font-size:18px;

}

.logo span{

display:none;

}

.buy-btn{

display:none;

}

.mobile-menu{

display:block;

}

.menu{

position:absolute;

top:75px;

left:0;

width:100%;

background:#fff;

display:none;

flex-direction:column;

padding:35px 25px;

gap:22px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.menu.show{

display:flex;

}

.menu li{

width:100%;

text-align:center;

}

.menu a{

display:block;

padding:10px 0;

}

section{

padding:70px 0;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:32px;

}

.section-title p{

font-size:16px;

}

.primary-btn,

.secondary-btn{

width:100%;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.logo h2{

font-size:16px;

}

.logo img{

width:42px;

}

.menu{

padding:30px 20px;

}

}
/*==================================================
                    HERO
==================================================*/

.hero{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#F8FAFD 0%,#EEF4FA 100%);

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(199,154,50,.08);

    border-radius:50%;

    top:-220px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:rgba(15,61,104,.05);

    border-radius:50%;

    left:-180px;

    bottom:-200px;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

    min-height:calc(100vh - 90px);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Noto Sans Gurmukhi',sans-serif;

    background:#FAFAFA;

    color:#2C2C2C;

    overflow-x:hidden;

    line-height:1.8;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

button{

    font-family:inherit;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}


/*==================================================
                    COLORS
==================================================*/

:root{

    --primary:#12395B;

    --gold:#C89D3D;

    --light:#F7F8FA;

    --text:#666666;

    --white:#ffffff;

    --border:#ECECEC;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}


/*==================================================
                    SECTION
==================================================*/

.endorsement-section{

    padding:110px 0;

    background:linear-gradient(
        to bottom,
        #ffffff,
        #FAFAFA
    );

}


/*==================================================
                SECTION TITLE
==================================================*/

.section-title{

    max-width:850px;

    margin:0 auto 80px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    background:#FFF5DD;

    color:var(--gold);

    padding:12px 26px;

    border-radius:50px;

    font-size:15px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.section-title h2{

    color:var(--primary);

    font-size:58px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:25px;

}

.section-title p{

    color:var(--text);

    font-size:20px;

    line-height:1.9;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.section-title h2{

font-size:46px;

}

}

@media(max-width:768px){

.endorsement-section{

padding:80px 0;

}

.section-title{

margin-bottom:55px;

}

.section-title h2{

font-size:34px;

}

.section-title p{

font-size:17px;

}

}
/*==================================================
                ENDORSEMENT GRID
==================================================*/

.endorsement-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}


/*==================================================
                ENDORSEMENT CARD
==================================================*/

.endorsement-card{

    background:var(--white);

    border-radius:28px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.35s ease;

    text-align:center;

    padding-bottom:35px;

    position:relative;

}

.endorsement-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}


/*==================================================
                LETTER PREVIEW
==================================================*/
.endorsement-card img{

    height:320px;

    object-fit:contain;

    background:#f5f5f5;

    padding:12px;

}

.endorsement-card:hover img{

    transform:scale(1.03);

}


/*==================================================
                GOLD LINE
==================================================*/

.endorsement-card::after{

    content:"";

    width:80px;

    height:4px;

    background:var(--gold);

    border-radius:50px;

    display:block;

    margin:28px auto 0;

}


/*==================================================
                NAME
==================================================*/

.endorsement-card h3{

    margin-top:28px;

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    line-height:1.4;

    padding:0 20px;

}


/*==================================================
                DESIGNATION
==================================================*/

.endorsement-card span{

    display:block;

    margin:12px auto 30px;

    color:var(--text);

    font-size:17px;

    line-height:1.7;

    max-width:80%;

}


/*==================================================
                BUTTON
==================================================*/

.view-letter{

    background:#fff;

    color:var(--gold);

    border:2px solid var(--gold);

    padding:15px 34px;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    transition:.35s ease;

}

.view-letter:hover{

    background:var(--gold);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(201,157,61,.30);

}
/*==================================================
                LETTER MODAL
==================================================*/

.letter-modal{

    position:fixed;

    inset:0;

    background:rgba(10,18,30,.88);

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:9999;

    padding:40px;

}

.letter-modal.active{

    opacity:1;

    visibility:visible;

}


/*==================================================
            MODAL CONTENT
==================================================*/

.letter-content{

    position:relative;

    width:100%;

    max-width:950px;

    animation:popup .35s ease;

}

.letter-content img{

    width:100%;

    max-height:88vh;

    object-fit:contain;

    background:#fff;

    border-radius:20px;

    box-shadow:0 30px 80px rgba(0,0,0,.35);

}


/*==================================================
            CLOSE BUTTON
==================================================*/

.close-modal{

    position:absolute;

    top:-18px;

    right:-18px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    transition:.3s;

}

.close-modal:hover{

    background:var(--gold);

    color:#fff;

    transform:rotate(90deg);

}


/*==================================================
            POPUP ANIMATION
==================================================*/

@keyframes popup{

    from{

        opacity:0;

        transform:translateY(30px) scale(.95);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}


/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px){

.letter-modal{

padding:18px;

}

.letter-content{

max-width:100%;

}

.letter-content img{

max-height:80vh;

border-radius:14px;

}

.close-modal{

top:-12px;

right:-12px;

width:42px;

height:42px;

font-size:18px;

}

}
/*==================================================
                CARD ANIMATION
==================================================*/

.endorsement-card{

    animation:fadeUp .7s ease both;

}

.endorsement-card:nth-child(2){

    animation-delay:.15s;

}

.endorsement-card:nth-child(3){

    animation-delay:.30s;

}

.endorsement-card:nth-child(4){

    animation-delay:.45s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
            IMAGE BORDER
==================================================*/

.endorsement-card img{

    border-bottom:1px solid #ECECEC;

}


/*==================================================
        BUTTON TRANSITION
==================================================*/

.view-letter{

    letter-spacing:.3px;

}

.view-letter i{

    margin-left:8px;

    transition:.3s;

}

.view-letter:hover i{

    transform:translateX(5px);

}


/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F5F5F5;

}

::-webkit-scrollbar-thumb{

    background:#C89D3D;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#12395B;

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1200px){

.endorsement-grid{

gap:30px;

}

}

@media(max-width:992px){

.endorsement-grid{

grid-template-columns:1fr;

}

.endorsement-card{

max-width:700px;

margin:auto;

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

line-height:1.3;

}

.section-title p{

font-size:17px;

}

.endorsement-card{

border-radius:22px;

}

.endorsement-card img{

height:240px;

}

.endorsement-card h3{

font-size:24px;

}

.endorsement-card span{

font-size:15px;

margin:12px 20px 25px;

}

.view-letter{

width:85%;

}

}

@media(max-width:480px){

.container{

width:92%;

}

.endorsement-card img{

height:210px;

}

.section-title{

margin-bottom:45px;

}

.section-title span{

font-size:14px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:16px;

}

}

/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#0B2F4F;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-grid p{

    color:#d8e0e8;

    line-height:1.9;

}

.footer-grid h3{

    margin-bottom:22px;

    font-size:22px;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid ul li a{

    color:#d8e0e8;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

}

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

    margin:45px 0 25px;

}

.copyright{

    text-align:center;

    color:#d8e0e8;

    font-size:15px;

}

/*==================================================
            FLOATING BUTTONS
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:22px;

    bottom:95px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 12px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.08);

}

#scrollTop{

    position: relative;;

    right:22px;

    bottom:25px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 12px 25px rgba(0,0,0,.20);

    transition:.35s;

    z-index:999;

}

#scrollTop:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.explore-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.footer-grid>div:first-child{

    grid-column:1/-1;

}

}
@media (max-width:768px){

.menu{
    display:none;
}

.menu.show{
    display:flex;
}

}