/*==================================================
YOG-JEET ACADEMY
STYLE.CSS
COMPLETE VERSION
==================================================*/


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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


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

:root{

    --primary:#0A3D91;
    --secondary:#2563EB;
    --accent:#0F6FFF;

    --white:#ffffff;
    --light:#F8FBFF;
    --border:#E5E7EB;

    --text:#1F2937;
    --muted:#6B7280;

    --shadow:
        0 15px 35px rgba(0,0,0,.08);

    --shadow-lg:
        0 20px 50px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

}


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

.container{

    width:min(1200px,92%);
    margin:auto;

}


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

section{

    padding:100px 8%;
    position:relative;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    background:#EAF2FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.section-title h2{

    font-size:48px;

    color:var(--text);

    margin-bottom:20px;

    font-weight:700;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:var(--muted);

    font-size:17px;

}


/*==================================================
BUTTONS
==================================================*/

.primary-btn,
.secondary-btn,
.btn-nav{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:none;

    cursor:pointer;

    transition:var(--transition);

    font-weight:600;

}

.primary-btn{

    background:var(--primary);

    color:#fff;

    padding:16px 36px;

    border-radius:50px;

}

.primary-btn:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

.secondary-btn{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

    padding:14px 32px;

    border-radius:50px;

}

.secondary-btn:hover{

    background:var(--primary);

    color:#fff;

}


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

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:#ffffff;

    border-bottom:1px solid #f1f5f9;

    box-shadow:none;

}

body{

    padding-top:92px;

}


/*==================================================
NAVBAR
==================================================*/

.navbar{

    width:min(1280px,92%);

    margin:auto;

    height:92px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*==================================================
LOGO
==================================================*/

.logo{
    display:flex;
    align-items:center;
    gap:80px;   /* Space between logo and text */
    text-decoration:none;
    flex-shrink:0;
}

.logo img{

    width:140px;     /* Increased from 78px */
    height:140px;

    object-fit:contain;

    display:block;

    transition:transform .3s ease;

}

.logo img:hover{

    transform:scale(1.05);

}


/*==================================================
LOGO TEXT
==================================================*/

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    line-height:1;

}

.logo-main{

    font-size:30px;

    font-weight:800;

    color:var(--primary);

    letter-spacing:.5px;

    white-space:nowrap;

}

.logo-sub{

    margin-top:7px;

    letter-spacing:5px;

    font-size:13px;

    font-weight:700;

    color:#111827;

    white-space:nowrap;

}


/*==================================================
NAV LINKS
==================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:36px;

}

.nav-links li a{

    position:relative;

    font-weight:500;

    color:var(--text);

    transition:.3s;

}

.nav-links li a:hover{

    color:var(--primary);

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-links li a:hover::after{

    width:100%;

}


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

.btn-nav{

    background:var(--primary);

    color:#fff;

    padding:13px 26px;

    border-radius:50px;

}

.btn-nav:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}


/*==================================================
HAMBURGER
==================================================*/

.menu-toggle{

    display:none;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

    transition:.3s;

}


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

@media(max-width:992px){

    .navbar{

        height:82px;

    }

    .menu-toggle{

        display:block;

        z-index:1002;

    }

    .btn-nav{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:82px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:center;

        gap:0;

        overflow:hidden;

        max-height:0;

        transition:max-height .45s ease;

        box-shadow:0 15px 35px rgba(0,0,0,.08);

    }

    .nav-links.active{

        max-height:500px;

    }

    .nav-links li{

        width:100%;

    }

    .nav-links li a{

        display:block;

        width:100%;

        text-align:center;

        padding:18px;

        border-bottom:1px solid #EFEFEF;

    }

}


/*==================================================
TABLET / MOBILE HEADER
==================================================*/

@media(max-width:768px){

    body{
        padding-top:80px;
    }

    .navbar{
        height:80px;
    }

    .logo{
    display:flex;
    align-items:center;
    gap:1000px;   /* Space between logo and text */
    text-decoration:none;
    flex-shrink:0;
}

    .logo img{
        width:120px;
        height:120px;
    }

    .logo-main{
        font-size:24px;
    }

    .logo-sub{
        font-size:10px;
        letter-spacing:3px;
        margin-top:5px;
    }

    .nav-links{
        top:80px;
    }

    section{
        padding:80px 6%;
    }

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

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

}


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

@media(max-width:480px){

    .navbar{
        width:94%;
    }

    .logo{
        gap:30px;
    }

    .logo img{
        width:120px;
        height:120px;
    }

    .logo-main{
        font-size:19px;
        letter-spacing:.2px;
    }

    .logo-sub{
        font-size:8px;
        letter-spacing:2px;
    }

    .menu-toggle{
        font-size:27px;
    }

}


/*==================================================
UTILITY CLASSES
==================================================*/

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.hidden{
    display:none;
}


/*==================================================
GRID
==================================================*/

.grid-2{

    display:grid;

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

    gap:60px;

}

.grid-3{

    display:grid;

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

    gap:35px;

}

.grid-4{

    display:grid;

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

    gap:30px;

}


/*==================================================
CARD
==================================================*/

.card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.card img{

    border-radius:16px;

}

.card h3{

    margin:20px 0 12px;

    color:var(--text);

}

.card p{

    color:var(--muted);

    line-height:1.8;

}


/*==================================================
IMAGE EFFECT
==================================================*/

.image-box{

    overflow:hidden;

    border-radius:20px;

}

.image-box img{

    transition:.5s;

}

.image-box:hover img{

    transform:scale(1.08);

}


/*==================================================
ICON BOX
==================================================*/

.icon-box{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EAF2FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:20px;

}


/*==================================================
BADGE
==================================================*/

.badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#EAF2FF;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

}


/*==================================================
DIVIDER
==================================================*/

.divider{

    width:80px;

    height:4px;

    border-radius:50px;

    background:var(--primary);

    margin:20px auto;

}


/*==================================================
SCROLL ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
LOADER
==================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    z-index:9999;

}

.loader-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid #EAF2FF;

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

#loader.hide{

    opacity:0;

    visibility:hidden;

    transition:.5s;

}


/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp-floating{

    position:fixed;

    bottom:25px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp-floating:hover{

    transform:translateY(-5px) scale(1.08);

}


/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    bottom:100px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}


/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#F5F5F5;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}


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

@media(max-width:992px){

    .grid-2{

        grid-template-columns:1fr;

    }

    .grid-3{

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

    }

    .grid-4{

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

    }

}

@media(max-width:768px){

    .grid-3,
    .grid-4{

        grid-template-columns:1fr;

    }

    .card{

        padding:24px;

    }

    .icon-box{

        width:60px;

        height:60px;

        font-size:24px;

    }

}


/*==================================================
KEYFRAME ANIMATIONS
==================================================*/

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}


/*==================================================
ANIMATION CLASSES
==================================================*/

.fade-in{

    animation:fadeIn 1s ease;

}

.slide-up{

    animation:slideUp .8s ease;

}

.slide-left{

    animation:slideLeft .8s ease;

}

.slide-right{

    animation:slideRight .8s ease;

}

.zoom-in{

    animation:zoomIn .7s ease;

}

.float{

    animation:float 4s ease-in-out infinite;

}

.pulse{

    animation:pulse 2s infinite;

}


/*==================================================
GLASS CARD
==================================================*/

.glass{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


/*==================================================
HOVER EFFECTS
==================================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-10px);

}

.hover-scale{

    transition:.35s;

}

.hover-scale:hover{

    transform:scale(1.05);

}

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}


/*==================================================
IMAGE EFFECTS
==================================================*/

.img-rounded{

    border-radius:22px;

}

.img-shadow{

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

}

.img-hover{

    overflow:hidden;

    border-radius:20px;

}

.img-hover img{

    transition:.5s;

}

.img-hover:hover img{

    transform:scale(1.08);

}


/*==================================================
SCROLL DOWN
==================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    animation:float 2s infinite;

}

.scroll-down i{

    color:var(--primary);

    font-size:30px;

}


/*==================================================
DECORATIVE BLOBS
==================================================*/

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.25;

    z-index:-1;

}

.blob.blue{

    width:300px;

    height:300px;

    background:#0A3D91;

}

.blob.light{

    width:250px;

    height:250px;

    background:#4F9BFF;

}

.blob.top{

    top:-100px;

    right:-80px;

}

.blob.bottom{

    bottom:-120px;

    left:-100px;

}


/*==================================================
SECTION TRANSITION
==================================================*/

.section-divider{

    width:120px;

    height:5px;

    background:linear-gradient(
        to right,
        #0A3D91,
        #2563EB
    );

    border-radius:50px;

    margin:25px auto;

}


/*==================================================
TEXT GRADIENT
==================================================*/

.text-gradient{

    background:linear-gradient(
        90deg,
        #0A3D91,
        #2563EB
    );

    -webkit-background-clip:text;

    background-clip:text;

    -webkit-text-fill-color:transparent;

}


/*==================================================
ICON CIRCLE
==================================================*/

.icon-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#EAF2FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:28px;

}


/*==================================================
SMOOTH TRANSITIONS
==================================================*/

button,
a,
.card,
img,
.icon-box{

    transition:.35s ease;

}


/*==================================================
PART 3 RESPONSIVE
==================================================*/

@media(max-width:768px){

    .icon-circle{

        width:60px;

        height:60px;

        font-size:24px;

    }

    .blob{

        opacity:.15;

    }

    .scroll-down{

        display:none;

    }

}


/*==================================================
FORMS
==================================================*/

input,
textarea,
select{

    width:100%;

    padding:16px 18px;

    border:1px solid #dcdcdc;

    border-radius:14px;

    outline:none;

    font-size:16px;

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

    transition:.3s;

    background:#fff;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(10,61,145,.12);

}

textarea{

    resize:vertical;

    min-height:140px;

}

label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--text);

}


/*==================================================
TABLE
==================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

th{

    background:var(--primary);

    color:#fff;

    padding:15px;

}

td{

    padding:15px;

    border-bottom:1px solid #eee;

}

tr:hover{

    background:#f8fbff;

}


/*==================================================
BADGES
==================================================*/

.success{

    background:#d1fae5;

    color:#065f46;

}

.warning{

    background:#fef3c7;

    color:#92400e;

}

.danger{

    background:#fee2e2;

    color:#991b1b;

}

.info{

    background:#dbeafe;

    color:#1e40af;

}

.success,
.warning,
.danger,
.info{

    display:inline-block;

    padding:8px 15px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}


/*==================================================
ALERT
==================================================*/

.alert{

    padding:18px 20px;

    border-radius:15px;

    margin:20px 0;

    font-weight:500;

}

.alert-success{

    background:#ecfdf5;

    color:#065f46;

}

.alert-error{

    background:#fef2f2;

    color:#991b1b;

}

.alert-warning{

    background:#fffbeb;

    color:#92400e;

}


/*==================================================
FOOTER HELPERS
==================================================*/

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#d1d5db;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}


/*==================================================
TEXT UTILITIES
==================================================*/

.text-primary{

    color:var(--primary);

}

.text-secondary{

    color:var(--secondary);

}

.text-muted{

    color:var(--muted);

}

.text-white{

    color:#fff;

}

.fw-400{

    font-weight:400;

}

.fw-500{

    font-weight:500;

}

.fw-600{

    font-weight:600;

}

.fw-700{

    font-weight:700;

}

.fw-800{

    font-weight:800;

}


/*==================================================
SPACING
==================================================*/

.py-100{

    padding-top:100px;

    padding-bottom:100px;

}

.py-80{

    padding-top:80px;

    padding-bottom:80px;

}

.py-60{

    padding-top:60px;

    padding-bottom:60px;

}


/*==================================================
DISPLAY
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.space-between{

    justify-content:space-between;

}

.align-center{

    align-items:center;

}


/*==================================================
BORDER RADIUS
==================================================*/

.rounded{

    border-radius:20px;

}

.rounded-lg{

    border-radius:30px;

}

.rounded-full{

    border-radius:50%;

}


/*==================================================
SHADOWS
==================================================*/

.shadow{

    box-shadow:var(--shadow);

}

.shadow-lg{

    box-shadow:var(--shadow-lg);

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
ANNOUNCEMENT BAR
==================================================*/

.announcement-bar{

    width:100%;

    background:#d62828;

    color:#fff;

    overflow:hidden;

    white-space:nowrap;

    position:sticky;

    top:92px;

    z-index:998;

    padding:10px 0;

    font-weight:600;

    font-size:15px;

}

.announcement-track{

    display:inline-flex;

    animation:scrollAnnouncement 20s linear infinite;

}

.announcement-track span{

    padding-right:120px;

}

@keyframes scrollAnnouncement{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


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

@media(max-width:768px){

    .announcement-bar{

        top:72px;

        font-size:13px;

        padding:8px 0;

    }

    .announcement-track span{

        padding-right:80px;

    }

}


/*==================================================
PRINT
==================================================*/

@media print{

    header,
    footer,
    .popup-overlay,
    .popup-open-btn,
    .whatsapp-floating,
    #backToTop{

        display:none !important;

    }

    body{

        background:#fff;

        padding-top:0;

    }

    section{

        padding:20px 0;

    }

}


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

@media(max-width:992px){

    .py-100{

        padding-top:80px;

        padding-bottom:80px;

    }

}

@media(max-width:768px){

    body{

        font-size:15px;

    }

    section{

        padding:70px 5%;

    }

    input,
    textarea{

        font-size:15px;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-links{

        text-align:center;

    }

}


/*==================================================
END OF FILE
==================================================*/