/* =====================================================
   DISHA Recruitment
   GLOBAL CSS - Version 2
   Common styles for all pages
   ===================================================== */


/* ===============================
   BRAND COLORS
================================ */

:root{

   --blue:#00429B;
--dark-blue:#002F70;

--green:#16A342;
--dark-green:#0F7A2E;

    --text:#333333;
    --light-text:#666666;

    --white:#ffffff;
    --light-bg:#F5F9FF;

    --border:#DDE7F2;

    --container:1180px;

}


/* ===============================
   RESET
================================ */

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


html{

    scroll-behavior:smooth;

    overflow-y:scroll;

}


body{

    font-family:'Open Sans', Arial, sans-serif;

    color:var(--text);

    background:#fff;

    font-size:16px;

    line-height:1.55;

}


/* ===============================
   COMMON CONTAINER
================================ */

.container{

    width:92%;

    max-width:var(--container);

    margin:auto;

}


/* ===============================
   TYPOGRAPHY
================================ */


h1,
h2,
h3{

    font-family:'Poppins', Arial, sans-serif;

    color:var(--blue);

    font-weight:700;

}


h1{

    font-size:44px;

    line-height:1.15;

}


h2{

    font-size:32px;

    line-height:1.2;

}


h3{

    font-size:22px;

}


p{

    color:var(--light-text);

    margin-bottom:12px;

}



/* ===============================
   COMMON SECTION SPACING
================================ */


section{

    padding:35px 0;

}


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


.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:13px 26px;

    border-radius:8px;

    font-weight:700;

    font-size:16px;

    text-decoration:none;

    transition:.25s ease;

}



.btn-green{

    background:var(--green);

    color:#fff;

}


.btn-green:hover{

    background:var(--dark-green);

}



/* ===============================
   HEADER
================================ */


.site-header{

    background:#fff;

    border-bottom:1px solid var(--border);

}


.header-inner{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



.logo img{

    height:75px;

    width:auto;

}


/* ===============================
   NAVIGATION
================================ */


.nav-menu{

    display:flex;

    align-items:center;

    gap:22px;

}


.nav-menu a{

    text-decoration:none;

    color:var(--blue);

    font-weight:600;

    font-size:15px;

}

/* Keep CTA button white */
.nav-menu .btn-green{

    color:#fff;

}

.nav-menu .btn-green:hover{

    color:#fff;

}


.nav-menu a:hover{

    color:var(--green);

}




/* ===============================
   DROPDOWN MENU
================================ */


.dropdown{

    position:relative;

}


.dropdown > a{

    cursor:pointer;

}



.dropdown-menu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    background:white;

    min-width:230px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,0.12);

    padding:10px 0;

    z-index:1000;

}



.dropdown-menu a{

    display:block;

    padding:10px 18px;

    color:var(--blue);

    font-size:14px;

    white-space:nowrap;

}



.dropdown-menu a:hover{

    background:var(--light-bg);

    color:var(--green);

}



.dropdown:hover .dropdown-menu{

    display:block;

}




/* ===============================
   CARDS
================================ */


.card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:18px;

}


/* ===============================
   SMALL ICON BOXES
================================ */


.icon-box{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 15px;

    border:1px solid var(--border);

    border-radius:10px;

    background:#fff;

    font-weight:600;

}



.icon-box i{

    color:var(--green);

}

/* ===============================
   TRUST STRIP - GLOBAL
================================ */
/* ===============================
   TRUST CARDS GLOBAL
================================ */
/* ===============================
   TRUST CARDS
================================ */

.trust-strip{

    background:white;

    padding:35px 0;

}


.trust-grid{

    max-width:1180px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}


.trust-item{

    background:var(--blue);

    color:white;

    text-align:center;

    padding:25px;

    border-radius:14px;

    font-weight:700;

}


.trust-item h3{

    color:white;

    font-size:26px;

}


.trust-item p{

    color:white;

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


@media(max-width:900px){
.trust-grid{

    grid-template-columns:repeat(2,1fr);

}

.header-inner{

    height:auto;

    padding:15px 0;

    flex-direction:column;

    gap:15px;

}


.logo img{

    height:70px;

}


.nav-menu{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}


.dropdown-menu{

    position:static;

    box-shadow:none;

    background:transparent;

    text-align:center;

}


.dropdown:hover .dropdown-menu{

    display:block;

}

h1{

    font-size:34px;

}


h2{

    font-size:27px;

}


section{

    padding:28px 0;

}


}



@media(max-width:600px){
.trust-grid{

    grid-template-columns:1fr;

}

.nav-menu{

    display:none;

}


h1{

    font-size:30px;

}


.container{

    width:94%;

}


}

/* ===============================
   FINAL CTA + FOOTER
================================ */


.final-cta{

    background:var(--blue);

    padding:38px 0;

    text-align:center;

}


.final-cta h2{

    color:white;

    font-size:34px;

}


.final-cta p{

    color:white;

    margin-bottom:18px;

}


.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


footer{

    padding:30px 0;

    text-align:center;

    color:var(--light-text);

}

/* FOOTER JOB LINK */


.footer-jobs{

    margin-top:8px;

}


.footer-jobs a{

    color:#ffffff;

    font-weight:700;

    text-decoration:none;

}

/* ===============================
   FOOTER LINKS
================================ */


/* ===============================
   FOOTER JOB LINK
================================ */


.footer-jobs{

    margin-top:8px;

}


.footer-jobs a{

    color:var(--green);

    font-weight:700;

    text-decoration:none;

}


.footer-jobs a:hover{

    color:var(--blue);

}

/* =====================================================
   MULTI-LEVEL NAVIGATION
   (Append to end of global.css)
===================================================== */

/* Top-level dropdown */
.nav-menu .dropdown{
    position:relative;
}

.nav-menu .dropdown>a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-arrow{
    font-size:11px;
    transition:.25s ease;
}

.dropdown:hover .dropdown-arrow{

    transform:rotate(180deg);

    color:#0B4F9C;

}

/* First dropdown */

.dropdown-menu{

    position:absolute;

    top:100%;

    left:0;

    min-width:430px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    padding:10px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:.25s ease;

    z-index:9999;

}

.dropdown:hover>.dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 18px;

    color:#0B4F9C;
font-weight:600;

    font-size:.95rem;

    text-decoration:none;

    white-space:nowrap;

    transition:.2s;

}

.dropdown-menu a:hover{

    background:#EEF5FF;

    color:#0B4F9C;

    padding-left:24px;

}

/* Divider */

.dropdown-menu hr{

    margin:8px 0;

    border:none;

    border-top:1px solid #ececec;

}

/* Second level */

.dropdown-submenu{

    position:relative;

}

.submenu-toggle{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.submenu-arrow{

    font-size:11px;

}

.submenu{

    position:absolute;

    left:100%;

    top:-10px;

    min-width:430px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    padding:10px 0;

    opacity:0;

    visibility:hidden;

    transform:translateX(12px);

    transition:.25s ease;

}

.dropdown-submenu:hover>.submenu{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/* Coming Soon Badge */

.coming-soon-badge{

    background:#EAF4FF;

    color:#0B4F9C;

    border:1px solid #C9DFFF;

    font-size:10px;

    font-weight:700;

    border-radius:30px;

    padding:4px 10px;

    margin-left:14px;

    flex-shrink:0;

}

/* Prevent wrapping */

.dropdown-menu a{

    white-space:normal;

    line-height:1.30;

}

/* Smooth hover */

.dropdown-menu a,

.submenu a{

    transition:all .2s ease;

}
.submenu a{

    color:#0B4F9C;

    font-weight:600;

}

/* Active menu item */

.nav-menu a.active,
.dropdown-menu a.active,
.submenu a.active{

    color:#148C3B !important;

    font-weight:700;

}
