    /* ==================================================
       MAHESH DADA LANDGE WEBSITE
       CLEAN PRODUCTION CSS
    ================================================== */
    
    :root{
        --primary:#ff6b00;
        --primary-dark:#e85f00;
    
        --dark:#071122;
        --dark-2:#0f172a;
    
        --white:#ffffff;
        --light:#f8fafc;
    
        --text:#1e293b;
        --gray:#64748b;
    
        --radius:20px;
    
        --shadow:
        0 10px 30px rgba(0,0,0,.08);
    
        --transition:.3s ease;
    }
    
    /* =====================================
       RESET
    ===================================== */
    
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }
    
    html{
        scroll-behavior:smooth;
    }
    
    body{
        font-family:'Poppins',sans-serif;
        color:var(--text);
        background:#fff;
        overflow-x:hidden;
    }
    
    img{
        max-width:100%;
        display:block;
    }
    
    a{
        text-decoration:none;
    }
    
    ul{
        list-style:none;
    }
    
    /* =====================================
       CONTAINER
    ===================================== */
    
    .container{
        width:90%;
        max-width:1400px;
        margin:auto;
    }
    
    /* =====================================
       TOPBAR
    ===================================== */
    
    .topbar{
        background:var(--dark);
        color:#fff;
        padding:10px 0;
        font-size:14px;
    }
    
    .topbar .container{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    
    .topbar a{
        color:#fff;
    }
    
    .topbar-left,
    .topbar-right{
        display:flex;
        align-items:center;
        gap:12px;
        flex-wrap:wrap;
    }
    
    .topbar-right a{
        color:#fff;
        transition:.3s;
    }
    
    .topbar-right a:hover{
        color:#ff6b00;
    }
    
    .topbar-right i{
        font-size:16px;
    }
    
    .topbar-right a:hover .fa-facebook-f{
        color:#1877f2;
    }
    
    .topbar-right a:hover .fa-instagram{
        color:#e4405f;
    }
    
    .topbar-right a:hover .fa-youtube{
        color:#ff0000;
    }
    
    .topbar-right a:hover .fa-linkedin-in{
        color:#0a66c2;
    }
    
    .topbar-right a:hover .fa-x-twitter{
        color:#fff;
    }
    /* =====================================
       NAVBAR
    ===================================== */
    
    .navbar{
        background:#fff;
        position:sticky;
        top:0;
        z-index:9999;
        overflow:visible;
        box-shadow:0 5px 20px rgba(0,0,0,.05);
    }
    
    .navbar-container{
        min-height:85px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    
    @media(max-width:768px){
    
    .navbar-container{
        height:70px;
    }
    
    .logo img{
        width:90px;
    }
    
    }
    
    @media(max-width:768px){
    
    .hero-grid{
        min-height:100vh;
        align-items:center;
    }
    
    }
    
    .logo{
        display:flex;
        align-items:center;
        gap:12px;
    }
    
    .logo img{
        width:130px;
        height:auto;
    }
    
    .logo-text{
        display:flex;
        flex-direction:column;
    }
    
    .logo-title{
        font-size:18px;
        font-weight:700;
        color:var(--dark);
    }
    
    .logo-subtitle{
        font-size:12px;
        color:var(--gray);
    }
    
    .desktop-menu ul{
        display:flex;
        gap:28px;
        align-items:center;
    }
    
    .desktop-menu ul li{
        position:relative;
    }
    
    .desktop-menu ul li a{
        color:#222;
        font-weight:500;
        transition:var(--transition);
    }
    
    .desktop-menu ul li a:hover{
        color:var(--primary);
    }
    
    @media(max-width:768px){
    
    .logo img{
        width:100px;
    }
    
    }
    
    @media(max-width:768px){
    
    .hero h1{
        font-size:28px;
        line-height:1.2;
    }
    
    .hero h2{
        font-size:18px;
    }
    
    .hero p{
        font-size:15px;
        line-height:1.7;
    }
    
    }
    /* =====================================
       DEPARTMENTS MEGA MENU
    ===================================== */
    
    .dropdown{
        position:relative;
    }
    
    .dropdown-menu{
        position:absolute;
        top:100%;
        left:0;
    
        min-width:320px;
    
        background:#fff;
        border-radius:16px;
    
        padding:10px 0;
    
        display:none;
    
        box-shadow:0 15px 40px rgba(0,0,0,.12);
    
        z-index:99999;
    }
    
    .dropdown:hover > .dropdown-menu{
        display:block;
    }
    
    .dropdown-menu li{
        display:block;
    }
    
    .dropdown-menu li a{
        display:block;
        padding:12px 20px;
        white-space:nowrap;
    }
    
    .dropdown-menu li a:hover{
        background:#f8fafc;
        color:var(--primary);
    }
    
    .mobile-menu .dropdown-menu{
        display:none;
        position:static;
        box-shadow:none;
        background:#f8fafc;
        margin-top:10px;
        min-width:100%;
        border-radius:10px;
        padding:10px 0;
    }
    
    .mobile-menu .mobile-dropdown.active .dropdown-menu{
        display:block;
    }
    
    .mobile-dropdown-toggle{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
    }
    
    .mobile-dropdown-toggle i{
        font-size:14px;
    }
    
    /* =====================================
       NAV BUTTONS
    ===================================== */
    
    .nav-actions{
        display:flex;
        gap:12px;
    }
    
    .register-btn,
    .track-btn{
        padding:14px 24px;
        border-radius:50px;
        color:#fff;
        font-weight:600;
        transition:var(--transition);
    }
    
    .register-btn{
        background:var(--dark);
    }
    
    .track-btn{
        background:var(--primary);
    }
    
    .register-btn:hover,
    .track-btn:hover{
        transform:translateY(-2px);
    }
    
    /* =====================================
       HERO
    ===================================== */
    
    .hero{
        min-height:100vh;
        display:flex;
        align-items:center;
        background:
        linear-gradient(
            rgba(7,17,34,.65),
            rgba(7,17,34,.65)
        ),
        url('../images/mahesh-landge.webp');
        background-size:cover;
        background-position:center center;
        background-repeat:no-repeat;
    }
    
    .hero-grid{
        min-height:100vh;
        display:flex;
        align-items:center;
    }
    
    .hero-content{
        color:#fff;
    }
    
    .hero-image{
        display:flex;
        justify-content:flex-end;
        align-items:center;
    }
    
    .hero-image img{
        width:100%;
        max-width:700px;
        height:auto;
    }
    
    .hero-badge{
        display:inline-block;
    
        background:rgba(255,255,255,.15);
    
        padding:10px 20px;
    
        border-radius:50px;
    
        margin-bottom:25px;
    }
    
    .hero h1{
        line-height:1.05;
        font-weight:700;
        margin-bottom:20px;
    }
    
    .hero h2{
        font-size:32px;
        color:#fff;
        margin-bottom:20px;
        font-weight:600;
    }
    
    .hero-content{
        max-width:650px;
    }
    
    
    .hero p{
        font-size:20px;
        line-height:1.8;
        margin-bottom:30px;
    }
    
    .hero-buttons{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
    }
    
    .hero-image img{
        transform:scale(1.15);
    }
    
    /* =====================================
       BUTTONS
    ===================================== */
    
    .btn-primary{
        background:var(--primary);
        color:#fff;
    
        padding:16px 30px;
    
        border-radius:50px;
    
        display:inline-block;
    
        transition:var(--transition);
    }
    
    .btn-primary:hover{
        transform:translateY(-2px);
    }
    
    .btn-secondary{
        border:2px solid #fff;
    
        color:#fff;
    
        padding:16px 30px;
    
        border-radius:50px;
    
        display:inline-block;
    }
    
    /* =====================================
       PAGE HERO
    ===================================== */
    
    .page-hero{
        background:var(--dark);
    
        color:#fff;
    
        text-align:center;
    
        padding:100px 0;
    }
    
    .page-hero h1{
        font-size:52px;
        margin-bottom:15px;
    }
    

    /* =====================================
       DEPARTMENTS
    ===================================== */
    
    .department-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
        gap:30px;
        margin-top:50px;
        margin-bottom:100px;
    }
    
    .department-card{
        background:#fff;
        border-radius:20px;
        padding:35px 25px;
        text-align:center;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        transition:.3s;
        min-height:230px;
    
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }
    
    .department-card:hover{
        transform:translateY(-8px);
    }
    
    .department-card i{
        font-size:42px;
        color:#ff6b00;
        margin-bottom:20px;
    }
    
    .department-card h3{
        font-size:24px;
        margin-bottom:15px;
        line-height:1.4;
    }
    
    .department-card a{
        color:#6c3bd1;
        font-weight:600;
    }
    
    /* =====================================
       CARDS
    ===================================== */
    
    .card{
        background:#fff;
        border-radius:20px;
        box-shadow:var(--shadow);
        padding:30px;
    }
    
    /* =====================================
       FORMS
    ===================================== */
    
    input,
    textarea,
    select{
        width:100%;
    
        padding:15px;
    
        border:1px solid #ddd;
    
        border-radius:12px;
    
        font-family:inherit;
    }
    
    textarea{
        resize:vertical;
    }
    
    button{
        border:none;
        cursor:pointer;
    }
    
    /* =====================================
       FOOTER
    ===================================== */
    
    footer{
        background:var(--dark);
        color:#fff;
        padding-top:80px;
    }
    
    .footer-grid{
        display:grid;
        grid-template-columns:
        repeat(4,1fr);
        gap:40px;
    }
    
    .footer-column h3{
        margin-bottom:20px;
    }
    
    .footer-column p{
        color:#cbd5e1;
        line-height:1.8;
        margin-bottom:12px;
    }
    
    .footer-column ul li{
        margin-bottom:10px;
    }
    
    .footer-column ul li a{
        color:#cbd5e1;
    }
    
    .footer-column ul li a:hover{
        color:var(--primary);
    }
    
    .social-icons{
        display:flex;
        gap:12px;
        margin-top:20px;
    }
    
    .social-icons a{
        width:42px;
        height:42px;
    
        border-radius:50%;
    
        display:flex;
        justify-content:center;
        align-items:center;
    
        background:rgba(255,255,255,.1);
        color:#fff;
    }
    
    .social-icons a:hover{
        background:var(--primary);
    }
    
    .footer-bottom{
        margin-top:50px;
        padding:25px 0;
        border-top:1px solid rgba(255,255,255,.1);
        text-align:center;
    }
    
    .footer-bottom p{
        color:#94a3b8;
    }
    
    /* =====================================
       MOBILE MENU
    ===================================== */
    
    .menu-toggle{
        display:none;
        background:none;
        border:none;
        font-size:26px;
        color:#071122;
    }
    
    .mobile-menu{
        position:fixed;
        top:0;
        left:-100%;
        width:280px;
    max-width:75%;
        height:100vh;
        background:#fff;
        z-index:99999;
        transition:.4s ease;
        overflow-y:auto;
        box-shadow:0 0 30px rgba(0,0,0,.2);
        display:block;
    }
    
    .mobile-menu.active{
        left:0;
    }
    
    .mobile-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:20px;
        border-bottom:1px solid #eee;
    }
    
    #menu-close{
        background:none;
        border:none;
        font-size:22px;
    }
    
    /* =====================================
       PAGE LOADER
    ===================================== */
    
    #page-loader{
        position:fixed;
        inset:0;
    
        background:#fff;
    
        z-index:99999;
    
        display:flex;
        justify-content:center;
        align-items:center;
    }
    
    .loader{
        width:60px;
        height:60px;
    
        border:6px solid #eee;
        border-top:6px solid var(--primary);
    
        border-radius:50%;
    
        animation:spin 1s linear infinite;
    }
    
    @keyframes spin{
        from{
            transform:rotate(0deg);
        }
        to{
            transform:rotate(360deg);
        }
    }
    
    /* =====================================
       RESPONSIVE
    ===================================== */
    
    @media(max-width:992px){
    
        .desktop-menu,
        .nav-actions{
            display:none;
        }
    
        .menu-toggle{
            display:block;
        }
    
        .footer-grid{
            grid-template-columns:1fr 1fr;
        }
    
        .hero-grid{
            grid-template-columns:1fr;
            text-align:center;
        }
    
        .hero h1{
            font-size:64px;
        }
    }
    
    @media(max-width:768px){
    
        .footer-grid{
            grid-template-columns:1fr;
        }
    
        .topbar .container{
            flex-direction:column;
            gap:10px;
        }
    
    
        .hero h1{
            font-size:36px;
        }
    
        .page-hero h1{
            font-size:36px;
        }
    }
    
    /* Hide by default */
    .desktop-menu .dropdown-menu{
        display:none;
    }
    
    /* Show on hover */
    .desktop-menu .dropdown:hover > .dropdown-menu{
        display:block !important;
    }
    
    /* CONTACT PAGE */
    
    .contact-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
        gap:25px;
    }
    
    .contact-grid .card{
        text-align:center;
    }
    
    .contact-grid h3{
        margin-bottom:15px;
        color:var(--dark);
    }
    
    .contact-grid p{
        color:var(--gray);
        line-height:1.8;
    }
    
    .form-grid{
        display:grid;
        gap:20px;
    }
    
    .form-grid textarea{
        min-height:180px;
    }
    
    .cta-section{
        background:var(--dark);
        color:#fff;
        text-align:center;
        padding:100px 0;
    }
    
    .cta-section h2{
        font-size:42px;
        margin-bottom:20px;
    }
    
    .cta-section p{
        margin-bottom:30px;
        font-size:18px;
    }
    
    .cta-section .btn-secondary{
        margin-left:10px;
    }
    
    .contact-form{
        max-width:900px;
        margin:auto;
    }
    
    .form-row{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        margin-bottom:20px;
    }
    
    .contact-form input,
    .contact-form textarea{
        width:100%;
        padding:15px 18px;
        border:1px solid #ddd;
        border-radius:10px;
        font-size:15px;
        font-family:'Poppins',sans-serif;
    }
    
    .contact-form textarea{
        margin-top:20px;
        resize:none;
    }
    
    .submit-btn{
        width:100%;
        margin-top:20px;
        background:#ff6b00;
        color:#fff;
        border:none;
        padding:16px;
        border-radius:50px;
        font-size:16px;
        font-weight:600;
        cursor:pointer;
    }
    
    .submit-btn:hover{
        background:#e85f00;
    }
    
    @media(max-width:768px){
    
        .form-row{
            grid-template-columns:1fr;
            gap:15px;
        }
    
    }
    
    .form-group{
        display:flex;
        flex-direction:column;
    }
    
    .form-group label{
        font-size:14px;
        font-weight:600;
        color:#1b2d4a;
        margin-bottom:8px;
    }
    
    .contact-form{
        max-width:900px;
        margin:auto;
    }
    
    .form-row{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        margin-bottom:20px;
    }
    
    .form-group{
        width:100%;
    }
    
    .form-group label{
        display:block;
        margin-bottom:8px;
        font-size:14px;
        font-weight:600;
        color:#0f2747;
    }
    
    .contact-form input,
    .contact-form textarea{
        width:100%;
        padding:15px 18px;
        border:1px solid #ddd;
        border-radius:10px;
        font-size:15px;
        font-family:'Poppins',sans-serif;
    }
    
    .contact-form textarea{
        min-height:180px;
        resize:vertical;
    }
    
    .submit-btn{
        width:100%;
        background:#ff6b00;
        color:#fff;
        border:none;
        padding:16px;
        border-radius:50px;
        font-size:16px;
        font-weight:600;
        cursor:pointer;
        margin-top:20px;
    }
    
    @media(max-width:768px){
        .form-row{
            grid-template-columns:1fr;
        }
    }
    
    /* ==========================================
       HOMEPAGE SECTIONS
    ========================================== */
    
    /* HERO STATS */
    
    .hero-strip{
        background:#fff;
        padding:40px 0;
        box-shadow:0 5px 20px rgba(0,0,0,.05);
    }
    
    .strip-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:30px;
        text-align:center;
    }
    
    .strip-grid h3{
        font-size:42px;
        color:#ff6b00;
        margin-bottom:10px;
    }
    
    .strip-grid span{
        color:#64748b;
        font-weight:500;
    }
    
    /* QUICK SERVICES */
    
    .quick-services{
        padding:100px 0;
        background:#f8fafc;
    }
    
    .service-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }
    
    .service-card{
        background:#fff;
        padding:40px 25px;
        border-radius:20px;
        text-align:center;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        transition:.3s;
        color:#071122;
    }
    
    .service-card:hover{
        transform:translateY(-8px);
    }
    
    .service-card i{
        font-size:42px;
        color:#ff6b00;
        margin-bottom:20px;
    }
    
    .service-card h3{
        font-size:20px;
    }
    
    /* SERVICES */
    
    .services{
        padding:100px 0;
    }
    
    .services-grid{
        display:grid;
        grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
        gap:25px;
    }
    
    .services-grid .service-card{
        font-weight:600;
    }
    
    /* PROJECTS */
    
    .projects{
        padding:100px 0;
        background:#f8fafc;
    }
    
    .project-grid{
        display:grid;
        grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));
        gap:30px;
    }
    
    .project-card{
        background:#fff;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    
    .project-card img{
        width:100%;
        height:240px;
        object-fit:cover;
    }
    
    .project-content{
        padding:25px;
    }
    
    .project-content h3{
        margin-bottom:20px;
    }
    
    .progress{
        height:10px;
        background:#eee;
        border-radius:50px;
        overflow:hidden;
        margin-bottom:10px;
    }
    
    .progress-bar{
        height:100%;
        background:#ff6b00;
    }
    
    /* ABOUT */
    
    .about-home{
        padding:100px 0;
    }
    
    .about-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:60px;
        align-items:center;
    }
    
    .about-grid img{
        border-radius:20px;
    }
    
    .about-grid h2{
        font-size:42px;
        margin-bottom:20px;
    }
    
    .about-grid p{
        line-height:1.8;
        margin-bottom:30px;
    }
    
    /* TESTIMONIALS */
    
    .testimonials{
        padding:100px 0;
        background:#f8fafc;
    }
    
    .testimonial-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }
    
    .testimonial-card{
        background:#fff;
        padding:30px;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    
    .testimonial-card h3{
        margin-bottom:15px;
    }
    
    .testimonial-card p{
        line-height:1.8;
    }
    
    /* MEDIA */
    
    .media-home{
        padding:100px 0;
    }
    
    .media-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }
    
    .media-card{
        background:#fff;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    
    .media-card img{
        width:100%;
        height:250px;
        object-fit:cover;
    }
    
    .media-card h3{
        padding:20px;
    }
    
    /* APPOINTMENT */
    
    .appointment{
        padding:100px 0;
        background:#f8fafc;
    }
    
    .appointment form{
        max-width:900px;
        margin:auto;
        display:grid;
        gap:20px;
    }
    
    .appointment button{
        background:#ff6b00;
        color:#fff;
        padding:16px;
        border-radius:50px;
        font-size:16px;
        font-weight:600;
    }
    
    /* WHATSAPP */
    
    .whatsapp-float{
        position:fixed;
        bottom:25px;
        right:25px;
        width:60px;
        height:60px;
        background:#25D366;
        color:#fff;
        border-radius:50%;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:30px;
        z-index:9999;
    }
    
    @media(max-width:992px){
    
    .service-grid,
    .services-grid,
    .project-grid,
    .media-grid,
    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    .about-grid{
        grid-template-columns:1fr;
    }
    
    .strip-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    }
    
    @media(max-width:768px){
    
    .service-grid,
    .services-grid,
    .project-grid,
    .media-grid,
    .testimonial-grid,
    .strip-grid{
        grid-template-columns:1fr;
    }
    
    }
    
    .hero h1{
        font-size:34px;
    }
    
    .hero h2{
        font-size:20px;
    }
    
    .hero p{
        font-size:15px;
    }
    
    .hero-buttons{
        justify-content:center;
    }
    
    
    @media(max-width:768px){
    
    .topbar .container{
        flex-direction:column;
        gap:8px;
    }
    
    .topbar-right{
        justify-content:center;
        flex-wrap:wrap;
    }
    
    }
    
    .mobile-menu ul{
        padding:20px;
    }
    
    .mobile-menu ul li{
        margin-bottom:15px;
    }
    
    .mobile-menu ul li a{
        color:#071122;
        font-size:18px;
        font-weight:500;
    }
    
    .mobile-buttons{
        padding:20px;
    }
    
    .mobile-buttons a{
        display:block;
        text-align:center;
        margin-bottom:12px;
    }
    
    @media(max-width:768px){
    
    .hero-content{
        max-width:100%;
        text-align:center;
    }
    
    .hero-buttons{
        justify-content:center;
    }
    
    }
    
    @media(max-width:992px){
    
    .nav-actions{
        display:none;
    }
    
    }
    
    .mobile-submenu{
        display:none;
        padding-left:15px;
        margin-top:10px;
    }
    
    .mobile-dropdown.active .mobile-submenu{
        display:block;
    }
    
    .mobile-dropdown-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    
    .mobile-dropdown-toggle{
        background:none;
        border:none;
        font-size:18px;
        cursor:pointer;
        color:#071122;
    }
    
    .mobile-dropdown-toggle{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
        color:#071122;
        font-size:18px;
        font-weight:500;
    }
    
    .mobile-dropdown-toggle i{
        font-size:14px;
    }
    
    .social-tabs{
        display:flex;
        gap:10px;
        flex-wrap:wrap;
        justify-content:center;
        margin-bottom:30px;
    }
    
    .social-tabs button{
        padding:12px 20px;
        border:none;
        border-radius:30px;
        cursor:pointer;
        background:#f1f5f9;
    }
    
    .social-tabs button.active{
        background:#ff6b00;
        color:#fff;
    }
    
    .social-feed-grid{
        display:grid;
        grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));
        gap:25px;
    }
    
    .social-card{
        background:#fff;
        border-radius:16px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }
    .social-card img{
        width:100%;
        height:220px;
        object-fit:cover;
    }
    
    .social-content{
        padding:20px;
    }
    
    .social-platform{
        display:inline-block;
        background:#f1f5f9;
        padding:5px 12px;
        border-radius:20px;
        font-size:12px;
        margin-bottom:10px;
    }
    
    .social-content h3{
        font-size:22px;
        margin-bottom:10px;
        color:#071122;
    }
    
    .social-content p{
        color:#475569;
        line-height:1.7;
        margin-bottom:20px;
    }
    
    .social-content a{
        display:inline-block;
        background:#ff6b00;
        color:#fff;
        padding:10px 20px;
        border-radius:30px;
        font-weight:600;
    }
    
    .platform-badge{
        display:inline-flex;
        align-items:center;
        gap:8px;
    
        background:#f3f4f6;
        padding:6px 12px;
    
        border-radius:30px;
        font-size:13px;
        font-weight:600;
    }
    
    .platform-badge i{
        color:#ff6b00;
    }
    
    /* SOCIAL FEED */
    
    .social-feed-section{
        padding:100px 0;
        background:#f8fafc;
    }
    
    .social-feed-grid{
        display:grid;
        grid-template-columns:
        repeat(auto-fit,minmax(380px,1fr));
        gap:30px;
    }
    
    .social-card{
        background:#fff;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        transition:.3s;
    }
    
    .social-card:hover{
        transform:translateY(-5px);
    }
    
    .social-card img{
        width:100%;
        height:240px;
        object-fit:cover;
    }
    
    .social-content{
        padding:20px;
    }
    
    .social-content h3{
        margin:12px 0;
        font-size:22px;
        line-height:1.4;
        color:#071122;
    }
    
    .social-content p{
        color:#64748b;
        line-height:1.7;
        margin-bottom:20px;
    
        display:-webkit-box;
        -webkit-line-clamp:4;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }
    
    .platform-badge{
        display:inline-flex;
        align-items:center;
        gap:8px;
    
        background:#f3f4f6;
    
        padding:6px 12px;
    
        border-radius:30px;
    
        font-size:13px;
        font-weight:600;
    }
    
    .platform-badge i{
        color:#ff6b00;
    }
    
    @media(max-width:768px){
    
        .social-feed-grid{
            grid-template-columns:1fr;
        }
    
    }
    
    .media-card{
        background:#fff;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        transition:.3s;
    }
    
    .media-card:hover{
        transform:translateY(-5px);
    }
    
    .media-card img{
        width:100%;
        height:220px;
        object-fit:cover;
    }
    
    .media-card .project-content{
        padding:20px;
    }
    
    .media-card h3{
        margin-bottom:10px;
        font-size:20px;
    }
    
    .media-card p{
        color:#64748b;
        line-height:1.7;
    }
    
    
.vision-mission-premium{
    padding:100px 0;
    background:#fff;
}
    
.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.vm-card{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.vm-card:hover{
    transform:translateY(-6px);
}

.vm-card h3{
    color:#ff6b00;
    font-size:32px;
    margin-bottom:20px;
}

.vm-card p{
    color:#64748b;
    line-height:1.9;
    font-size:17px;
}

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

}

.achievement-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    height:100%;
    transition:.3s ease;
}

.achievement-card h3{
    font-size:24px;
    color:#ff6b00;
    margin-bottom:15px;
}

.achievement-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.achievement-card h3{
    margin-bottom:15px;
    color:#071122;
}

.achievement-card p{
    color:#64748b;
    line-height:1.7;
}
    
    .achievement-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
    max-width:1300px;
    margin:auto;
}

    .achievement-section .container{
    max-width:1300px;
    margin:auto;
}

    .achievement-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    color:#071122;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}
    
    .achievement-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    }
    
    .achievement-card:hover{
    transform:translateY(-8px);
    }
    
    /* ==========================
       POLITICAL JOURNEY
    ========================== */
    
    .political-journey-section{
        padding:100px 0;
        background:#f8fafc;
    }
    
.journey-wrapper{
    display:grid;
    grid-template-columns:420px minmax(0,1fr);
    gap:50px;
    align-items:start;
}
    
    /* LEFT IMAGE */
    
.journey-image{
    position:sticky;
    top:80px;
    margin-top:0px; /* aligns image with content card */
}

.journey-image img{
    width:100%;
    height:500px; /* optional, makes visual height match card */
    object-fit:cover;
    border-radius:24px;
    display:block;
}
    
    /* RIGHT SIDE */
    
    .journey-years{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;

    padding-top:10px;
    overflow:visible;
}
    
.journey-year{
    border:none;
    background:#fff;
    color:#071122;
    padding:12px 22px;
    border-radius:50px;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
    min-width:75px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
    
    .journey-year:hover{
        transform:translateY(-3px);
    }
    
    .journey-year.active{
        background:#ff6b00;
        color:#fff;
    }
    
    /* CARD */
    
.journey-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
    
    .year-badge{
        display:inline-block;
        background:#fff3e8;
        color:#ff6b00;
        padding:8px 18px;
        border-radius:50px;
        font-weight:700;
        margin-bottom:20px;
    }
    
    .journey-item h3{
        font-size:42px;
        color:#071122;
        margin-bottom:10px;
    }
    
    .journey-item h4{
        color:#ff6b00;
        margin-bottom:20px;
        font-size:20px;
    }
    
    .journey-item p{
        color:#64748b;
        line-height:1.8;
        margin-bottom:25px;
    }
    
    .journey-item ul{
        list-style:none;
        padding:0;
    }
    
    .journey-item li{
        margin-bottom:12px;
        color:#1e293b;
    }
    
    .journey-item li:before{
        content:"✓";
        color:#ff6b00;
        font-weight:700;
        margin-right:10px;
    }
    
    /* MOBILE */
    
    @media(max-width:991px){
    
        .journey-wrapper{
            grid-template-columns:1fr;
        }
    
        .journey-image{
            max-width:450px;
            margin:auto;
        }
    
        .journey-image img{
            height:auto;
            position:relative;
            top:auto;
        }
    
        .journey-card{
            padding:30px;
        }
    
        .journey-item h3{
            font-size:32px;
        }
    }
    
    @media(max-width:768px){
    
        .journey-years{
            justify-content:center;
        }
    
        .journey-year{
            padding:10px 18px;
            font-size:14px;
        }
    
        .journey-card{
            padding:25px;
        }
    
        .journey-item h3{
            font-size:28px;
        }
    }
    
    .journey-item{
        display:none;
        animation:fadeIn .4s ease;
    }
    
    .journey-item.active{
        display:block;
    }
    
    @keyframes fadeIn{
        from{
            opacity:0;
            transform:translateY(15px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }
    .journey-year.active{
        background:#ff6b00;
        color:#fff;
        transform:translateY(-3px);
        box-shadow:0 12px 30px rgba(255,107,0,.35);
    }
    
    @media(max-width:991px){

    .about-premium-grid,
    .vm-grid,
    .journey-wrapper{
        grid-template-columns:1fr;
    }

    .achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

@media(max-width:768px){

    .about-stats{
        flex-direction:column;
    }

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

    .vm-card,
    .journey-card{
        padding:30px;
    }
}

    .journey-years{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .journey-year{
        flex:0 0 auto;
    }

    .journey-card{
        padding:20px;
    }

    .journey-item h3{
        font-size:24px;
    }

    .journey-item h4{
        font-size:18px;
    }



/* ==========================================
   ABOUT HERO SECTION
========================================== */

.about-premium{
    padding:100px 0;
    background:#f8fafc;
}

.about-premium .container{
    max-width:1400px;
    margin:auto;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.experience-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#ff6b00;
    color:#fff;
    padding:18px 28px;
    border-radius:16px;
    font-weight:700;
    font-size:16px;
    box-shadow:0 15px 35px rgba(255,107,0,.35);
}

.about-content{
    width:100%;
}

.section-tag{
    display:inline-block;
    background:#fff3e8;
    color:#ff6b00;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:62px;
    line-height:1.15;
    font-weight:800;
    color:#071122;
    margin-bottom:30px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:20px;
}

.about-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.stat-box{
    flex:1;
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.stat-box h3{
    font-size:48px;
    color:#ff6b00;
    margin-bottom:10px;
}

.stat-box p{
    margin:0;
    font-size:18px;
    color:#071122;
    font-weight:600;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1200px){

    .about-content h2{
        font-size:50px;
    }

    .about-image img{
        height:580px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .about-premium-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
    }

    .about-image img{
        height:auto;
        max-height:none;
    }

    .about-content h2{
        font-size:42px;
    }

    .about-stats{
        flex-wrap:wrap;
    }

    .stat-box{
        min-width:160px;
    }

}

@media(max-width:768px){

    .about-premium{
        padding:60px 0;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-stats{
        flex-direction:column;
    }

    .stat-box{
        width:100%;
    }

    .experience-badge{
        left:15px;
        bottom:15px;
        padding:12px 18px;
        font-size:14px;
    }

}

.about-premium-grid{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:60px;
    align-items:center;
}

.experience-badge{
    position:relative;
    margin-top:-15px;
    z-index:2;

    width:90%;
    margin-left:auto;
    margin-right:auto;

    background:#ff6b00;
    color:#fff;
    padding:18px 22px;
    border-radius:16px;
    font-weight:700;
    text-align:center;
}

@media(max-width:991px){

    .about-premium-grid{
        grid-template-columns:1fr;
    }

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

    .about-stats{
        justify-content:center;
    }
}

@media(max-width:768px){

    .about-premium{
        padding:60px 0;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-stats{
        flex-direction:column;
    }

    .experience-badge{
        right:10px;
        bottom:10px;
        font-size:13px;
        padding:12px 15px;
    }
}

/* =====================================================
   DEPARTMENTS PAGE
===================================================== */

.department-page{
    padding:80px 0 120px;
    background:#f8fafc;
    min-height:70vh;
}

.department-page h1{
    text-align:center;
    font-size:52px;
    font-weight:800;
    color:#071122;
    margin-bottom:60px;
}

.department-page .department-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.department-page .department-card{
    background:#fff;
    border-radius:24px;
    padding:45px 30px;
    min-height:240px;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.department-page .department-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.department-page .department-card h3{
    font-size:32px;
    line-height:1.4;
    font-weight:700;
    color:#5b21b6;
    transition:.3s;
}

.department-page .department-card:hover h3{
    color:#ff6b00;
}

/* Tablet */

@media(max-width:991px){

    .department-page{
        padding:60px 0 100px;
    }

    .department-page h1{
        font-size:42px;
    }

    .department-page .department-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .department-page{
        padding:50px 0 80px;
    }

    .department-page h1{
        font-size:32px;
        margin-bottom:40px;
    }

    .department-page .department-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .department-page .department-card{
        min-height:180px;
        padding:30px 20px;
    }

    .department-page .department-card h3{
        font-size:24px;
    }

}


.info-grid,
.family-grid,
.awards-grid,
.inspiration-grid,
.initiative-grid{
    display:grid;
    gap:25px;
}

.info-grid{
    grid-template-columns:repeat(3,1fr);
}

.family-grid{
    grid-template-columns:repeat(5,1fr);
}

.awards-grid{
    grid-template-columns:repeat(4,1fr);
}

.inspiration-grid{
    grid-template-columns:repeat(2,1fr);
}

.initiative-grid{
    grid-template-columns:repeat(3,1fr);
}

/* ==========================================
   PREMIUM PROFILE SECTIONS
========================================== */

.info-card,
.family-card,
.award-card,
.inspiration-card,
.initiative-card{
    position:relative;
    background:#fff;
    padding:32px;
    border-radius:24px;

    border:1px solid rgba(255,107,0,.08);

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

    overflow:hidden;
    transition:.35s ease;
}

/* Orange accent strip */

.info-card::before,
.family-card::before,
.award-card::before,
.inspiration-card::before,
.initiative-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #ff6b00,
        #ff944d
    );
}

.info-card:hover,
.family-card:hover,
.award-card:hover,
.inspiration-card:hover,
.initiative-card:hover{
    transform:translateY(-8px);

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

/* Titles */

.info-card h3,
.family-card h3,
.award-card h3,
.inspiration-card h3,
.initiative-card h3{
    color:#071122;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

/* Text */

.info-card p,
.family-card p,
.award-card p,
.inspiration-card p,
.initiative-card p{
    color:#64748b;
    line-height:1.8;
}

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

.award-card h3{
    color:#ff6b00;
    font-size:24px;
}

.award-card span{
    display:inline-block;

    margin-top:12px;

    background:#fff3e8;
    color:#ff6b00;

    padding:8px 16px;

    border-radius:50px;

    font-weight:700;
}

.inspiration-card{
    position:relative;
    padding:40px;
}

.inspiration-card::after{
    content:"❝";

    position:absolute;
    right:25px;
    top:15px;

    font-size:70px;
    color:rgba(255,107,0,.10);

    font-family:serif;
}

.initiative-card{
    padding:35px;
}

.initiative-card h3{
    position:relative;
    padding-left:18px;
}

.initiative-card h3::before{
    content:"";

    position:absolute;
    left:0;
    top:8px;

    width:8px;
    height:8px;

    border-radius:50%;
    background:#ff6b00;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:64px;
    font-weight:800;
    color:#071122;
    position:relative;
    display:inline-block;
}

.section-heading h2::after{
    content:"";

    position:absolute;
    left:50%;
    transform:translateX(-50%);

    bottom:-18px;

    width:90px;
    height:5px;

    border-radius:10px;

    background:
    linear-gradient(
        90deg,
        #ff6b00,
        #ff944d
    );
}

@media(max-width:991px){

.info-grid,
.family-grid,
.awards-grid,
.inspiration-grid,
.initiative-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.info-grid,
.family-grid,
.awards-grid,
.inspiration-grid,
.initiative-grid{
    grid-template-columns:1fr;
}

}

.about-image .about-stats{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.about-image .stat-box{
    flex:1;
    text-align:center;
}
.education-card{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    max-width:1200px;
    margin:auto;
}

.education-item{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.education-item:hover{
    transform:translateY(-5px);
}

.education-item h4{
    color:#ff6b00;
    font-size:24px;
    margin-bottom:15px;
}

.education-item p{
    color:#64748b;
    line-height:1.9;
    margin:0;
}
@media(max-width:768px){

    .education-card{
        grid-template-columns:1fr;
    }

    .education-item{
        padding:25px;
    }
}

/* =====================================
   DEVELOPMENT PAGE
===================================== */

.about-intro{
    padding:100px 0;
    background:#fff;
}

.about-intro .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-intro img{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-intro h2{
    font-size:42px;
    margin-bottom:20px;
    color:#071122;
}

.about-intro p{
    line-height:1.9;
    color:#64748b;
    margin-bottom:15px;
}

/* STATS */

.stats{
    padding:80px 0;
    background:#f8fafc;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-card h2{
    font-size:48px;
    color:#ff6b00;
    margin-bottom:10px;
}

.stat-card p{
    color:#64748b;
}

/* PROJECTS */

.projects{
    padding:100px 0;
    background:#f8fafc;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.project-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-6px);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h3{
    margin-bottom:15px;
    color:#071122;
}

.project-content p{
    color:#64748b;
    line-height:1.8;
    min-height:80px;
}

.progress{
    height:10px;
    background:#eee;
    border-radius:50px;
    overflow:hidden;
    margin:20px 0 10px;
}

.progress-bar{
    background:#ff6b00;
    height:100%;
}

/* ACHIEVEMENTS */

.achievements{
    padding:100px 0;
    background:#fff;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.achievement-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
}

/* GALLERY */

.media-home{
    padding:100px 0;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.media-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.media-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.media-card h3{
    padding:20px;
    font-size:18px;
}

/* MOBILE */

@media(max-width:991px){

    .about-intro .about-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .media-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .stats-grid,
    .achievement-grid,
    .media-grid{
        grid-template-columns:1fr;
    }

    .about-intro h2{
        font-size:32px;
    }

    .stat-card h2{
        font-size:36px;
    }
}

/* Popup */

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.popup-box{

    width:90%;

    max-width:750px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.35);

    animation:popup .35s ease;

}

@keyframes popup{

from{

transform:scale(.9);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.popup-header{

    background:linear-gradient(135deg,#0b4ea2,#1565c0);

    color:#fff;

    padding:18px;

    text-align:center;

    font-size:24px;

    font-weight:700;

}

.popup-body{

    padding:30px;

    max-height:60vh;

    overflow:auto;

    line-height:1.8;

    font-size:17px;

}

.popup-body h2{

    color:#0b4ea2;

    text-align:center;

    margin-bottom:15px;

}

.helpline-box{

    margin:25px 0;

    padding:20px;

    background:#fff8ef;

    border-left:6px solid #ff8c00;

    border-radius:10px;

    text-align:center;

}

.helpline-box h3{

    margin-bottom:15px;

}

.helpline-box h1{

    color:#e65100;

    font-size:34px;

    margin:10px 0;

}

.popup-footer{

    padding:20px;

    text-align:center;

    background:#f8f8f8;

}

.popup-btn{

    border:none;

    padding:14px 35px;

    font-size:18px;

    border-radius:10px;

    background:linear-gradient(135deg,#ff6a00,#ff9800);

    color:#fff;

    cursor:pointer;

    font-weight:700;

}