/* =========================
   GLOBAL
========================= */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f8fafc;
    color:#334155;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:20px;
    box-sizing:border-box;
}
.flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* =========================
   PRE HEADER
========================= */
.pre-header{
     background:#2E7D32;
    color:#ffffff;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:500;
}

.pre-header-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.pre-header-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.separator{
    color:#94a3b8;
}

.pre-header-address,
.pre-header-contact{
    white-space:nowrap;
}

.pre-header-social{
    display:flex;
    align-items:center;
    gap:8px;
}
.logo-header{
    background:#fff;
    padding:6px 0;
}

.logo-header-inner{
    max-width:1200px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-logo{
    height:60px;
}

.govt-badge{
    padding:8px 18px;
    background:#f8fafc;
    border-left:4px solid #2563eb;
    border-radius:8px;
}

.govt-badge h2{
    margin:0;
    font-size:16px;
}

.govt-badge p{
    margin:3px 0 0;
    font-size:14px;
}
/* =========================
   MAIN HEADER
========================= */

.main-header{
     background:#2E7D32;
    padding:14px 20px;
    text-align:center;
    box-shadow:0 3px 8px rgba(0,0,0,0.08);
}

/* Main Menu */

.main-menu a{
    color:#ffffff;
    margin-right:10px;
    padding:10px 14px;
    border-radius:6px;
    transition:all .3s ease;
    position:relative;
    display:inline-block;
    font-weight:500;
}

.main-menu a:hover{
    background:#2563eb;
    color:#ffffff;
    transform:translateY(-2px);
}

/* Animated underline */

.main-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#facc15;
    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}

/* =========================
   DEMO BUTTON
========================= */

.demo-btn{
    background:#facc15;
    color:#000000;
    padding:10px 18px;
    border-radius:6px;
    font-weight:bold;
    transition:.3s;
}

.demo-btn:hover{
    background:#eab308;
    color:#000;
    transform:translateY(-2px);
}


/* Internship Dropdown */

.nav-dropdown{
    position:relative;
    display:inline-block;
}

.nav-dropdown-toggle{
    color:#fff;
    padding:10px 14px;
    display:inline-block;
}

.nav-dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:6px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:9999;
}

.nav-dropdown-menu a{
    display:block;
    color:#000 !important;
    padding:12px 15px;
    margin:0;
}

.nav-dropdown-menu a:hover{
    background:#f1f5f9;
    color:#2563eb !important;
}

.nav-dropdown:hover .nav-dropdown-menu{
    display:block;
}

/* =========================
   Verification Page Intro
========================= */

.verification-page{
    padding: 50px 0 20px;
}

.verification-intro{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.verification-intro h1{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f2937;
}

.verification-intro p{
    font-size: 18px;
    line-height: 1.8;
    
    max-width: 800px;
    margin: 0 auto;
}
/* =========================
   CARDS
========================= */

.course-card,
.blog-card,
.student-card{
    transition:all .35s ease;
}

.course-card:hover,
.blog-card:hover,
.student-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
}



.whatsapp-btn{
    background:#25D366;
    color:white !important;
    padding:10px 16px;
    border-radius:6px;
    font-weight:bold;
    margin-left:10px;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1da851;
    transform:translateY(-2px);
}

.demo-btn{
    background:#facc15;
    color:#000 !important;
    padding:10px 16px;
    border-radius:6px;
    font-weight:bold;
    transition:.3s;
}

.demo-btn:hover{
    background:#eab308;
}



.partner-logo{
    width:220px;
    height:100px;
    background:#ffffff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 12px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.partner-logo img{
    max-width:160px;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.3s;
}

.partner-logo:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.partner-logo:hover img{
    filter:grayscale(0%);
}




/* =========================
   FOOTER
========================= */

.footer{
     background:#2E7D32;
    color:#ffffff;
    padding:40px 20px;
}

.footer a{
    color:#ffffff;
    font-size:15px;
    transition:.3s;
}

.footer a:hover{
    color:#facc15;
}

.footer-block{
    width:18%;
}

.footer-block p a::before{
    content: "» ";
    color: #facc15;
    font-weight: bold;
}

.footer-block h4{
    margin-bottom:15px;
}

.footer-block p{
    margin:0 0 8px 0;
    line-height:1.4;
}

.footer-block a{
    display:inline-block;
}
.footer-bottom{
    background:#1B5E20;
    color:#cbd5e1;
    text-align:center;
    padding:18px 10px;
    font-size:15px;
    font-weight:500;
    border-top:1px solid rgba(255,255,255,0.1);
}
.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
    color:white;
}


.scroll-top-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    width:50px;
    height:50px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    display:none;
    z-index:9999;
    box-shadow:0 4px 15px rgba(0,0,0,0.25);
    transition:all .3s ease;
}

.scroll-top-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.mobile-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

.close-menu{
    display:none;
}

.inner-banner{
    width:100%;
    height:350px;

    background:url('../images/page-banner.jpg')
               center center/cover no-repeat;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}


.footer-policy-bar{

    background:#256D2A;

    color:#ddd;

    padding:15px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-policy-bar a{

    color:#ddd;

    text-decoration:none;

    margin:0 5px;
}

.footer-policy-bar a:hover{

    color:#ffc107;
}
.payment-methods{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    margin-right:120px;
}

.policy-title{
    font-weight:700;
    color:#ffffff;
    margin-right:10px;
}


/* =========================
   Inner  page Header image
========================= */

.inner-banner-overlay{
    width:100%;
    height:100%;

    background:rgba(15,23,42,.65);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;
}

.inner-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.inner-banner p{
    font-size:18px;
}

.inner-banner a{
    color:#facc15;
    text-decoration:none;
}

.team-card{
    width:320px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-6px);
}

.team-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.team-card h4{
    margin-bottom:8px;
}

.team-role{
    color:#2563eb;
    font-weight:600;
    margin-bottom:15px;
}


/* =========================
   End of Inner  page Header image
========================= */
/* =========================
   About page
========================= */

.page-header{
    background:url('../images/about-banner.jpg') center center/cover no-repeat;
    height:300px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    position:relative;
}

.page-header-overlay{
    background:rgba(0,0,0,0.55);

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
}

.page-header h1{
    font-size:48px;
    margin-bottom:10px;
}

.page-header p{
    font-size:18px;
}

.page-header a{
    color:#facc15;
}


/* =========================
   End of About page
========================= */

/* CONTACT PAGE */

.contact-section{
padding:70px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.contact-intro{
margin-bottom:25px;
color:#666;
line-height:1.7;
}

.contact-card{
background:#fff;
padding:20px;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.contact-card h4{
margin-bottom:10px;
}

.contact-form-wrapper{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3{
margin-bottom:20px;
}

.contact-input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
}

.contact-textarea{
min-height:120px;
resize:vertical;
}

.captcha-label{
display:block;
margin-bottom:10px;
font-weight:600;
}

.contact-btn{
width:100%;
background:#0066cc;
color:#fff;
border:none;
padding:14px;
border-radius:6px;
cursor:pointer;
font-size:16px;
}

.contact-btn:hover{
opacity:0.9;
}

.map-section{
    padding-top:0;
    padding-bottom:50px;
}
.social-section{
padding:70px 0;
text-align:center;
}

.section-heading{
text-align:center;
margin-bottom:40px;
}

.social-links{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.social-links a{
padding:12px 20px;
border-radius:6px;
background:#f5f5f5;
text-decoration:none;
}

.social-connect{
    margin-top:25px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff !important;
    font-size:22px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-3px);
}

.facebook{
    background:#1877F2;
}

.instagram{
    background:#E4405F;
}

.youtube{
    background:#FF0000;
}

.whatsapp{
    background:#25D366;
}

@media(max-width:768px){


.contact-grid{
    grid-template-columns:1fr;
}







}
/* =========================
   NEWSLETTER
========================= */

.newsletter-section{
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    padding:70px 20px;
    text-align:center;
}

.newsletter-container{
    max-width:1000px;
    margin:auto;
}

.newsletter-container h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.newsletter-container p{
    color:#fff;
    font-size:22px;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:500px;
    max-width:100%;
    height:60px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:40px;
    background:transparent;
    color:#fff;
    padding:0 25px;
}

.newsletter-form input::placeholder{
    color:#fff;
}

.newsletter-form button{
    height:60px;
    padding:0 40px;
    border:none;
    border-radius:40px;
    background:#fff;
    font-weight:600;
    cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */


@media(max-width:768px){
.mobile-menu-bar{
    display:flex;
    justify-content:flex-start;
}

.mobile-toggle{
    display:block;
    font-size:30px;
    color:white;
    cursor:pointer;
    padding-left:10px;
}
.main-menu{
    display:none;
}

.main-menu.active{
    display:block;
}


  .pre-header{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
    padding:10px;
}
    .footer-block{
        width:100%;
        margin-bottom:20px;
    }

    .main-menu a{
        display:block;
        margin:5px 0;
    }

    .logo-header img{
        max-width:100%;
        height:auto;
    }

    .govt-badge{
        text-align:center;
        margin-top:10px;
    }

    .partner-logo{
        width:100%;
        max-width:280px;
        margin:auto;
    }

    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:26px;
    }

.main-menu a{
    display:block;
    margin:10px 0;
}

.close-menu{
    text-align:right;
    color:white;
    font-size:28px;
    cursor:pointer;
    padding:10px 15px;
}

.pre-header-left{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.separator{
    display:none;
}

.pre-header-right{
    display:flex;
    justify-content:center;
    gap:12px;
}
.newsletter-container h2{
    font-size:32px;
}

.newsletter-container p{
    font-size:18px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
}

}
  