     
 body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f7cead, #fde9b2);
    scroll-behavior: smooth;
}
     .page-header{
    background:#f34300;
    color:white;
    padding:25px;}
    a {
    color:inherit;
    text-decoration:none;
}
        :root {
            --green: #f34300;
            --border: #dcdcdc;
            --text: #000;
        }

        /* TOP BAR */
        .top-bar {
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            background: #f5f5f5;
        }

        /* HEADER */
        .main-header {
            background: #ffffff;
        }

        .logo-img {
            height: 65px;
        }

        /* NAVBAR */
        .main-nav {
            background: #ffffff;
            border-bottom: 2px solid #f34300;
        }

        /* Prevent Navbar Wrapping */
        .navbar-nav {
            flex-wrap: nowrap;
        }

        .navbar-nav .nav-link {
            white-space: nowrap;
        }

        /* Nav Links */
        .main-nav .nav-link {
            color: #000;
            font-weight: 500;
            padding: 12px 15px;
            transition: 0.3s;
        }

        /* Hover Effect */
        .main-nav .nav-link:hover,
        .main-nav .nav-link:focus {
            background-color: #f34300;
            color: #fff !important;
            border-radius: 4px;
        }

        /* Dropdown Hover Open (Desktop) */
        @media (min-width: 992px) {
            .navbar .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        /* Dropdown Item Hover */
        .dropdown-menu .dropdown-item:hover {
            background-color: #f34300;
            color: #fff;
        }
        
  
  .footer-dark{
  background:#111;
  color:#ccc;
  font-size:16px;   /* pehle 14px tha */
}

.footer-title{
  font-size:20px;   /* heading bada */
}

.footer-links a{
  font-size:16px;
}

.footer-dark p{
  font-size:16px;
}

.helpline-box h3{
  font-size:26px;   /* helpline number bada */
}

.footer-bottom small{
  font-size:15px;
}

.footer-dark{
  background:#111;
  color:#ccc;
  font-size:14px;
}
.footer-title{
  color:#fff;
  margin-bottom:20px;
  position:relative;
  font-weight:600;
}
.footer-title::after{
  content:"";
  width:40px;
  height:2px;
  background:#f34300;
  position:absolute;
  left:0;
  bottom:-8px;
}
.footer-links li{margin-bottom:8px;}
.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s;
}
.footer-links a:hover{color:#f34300;}

.social{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  border-radius:4px;
  transition:0.3s;
}
.social:hover{opacity:0.8;}

.fb{background:#1877f2;}
.tw{background:#000;}
.ig{background:#c13584;}
.yt{background:#ff0000;}

.helpline-box{
  border:1px solid #333;
  border-radius:6px;
}
.phone-icon{
  width:50px;
  height:50px;
  border:2px solid #f34300;
  color:#f34300;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  border-radius:6px;
}
.footer-bottom{
  background:#0b0b0b;
  border-top:1px solid #333;
  color:#aaa;
}

.notice-container {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.notice-scroll {
  animation: scrollNotice 12s linear infinite;
}

@keyframes scrollNotice {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.notice-container:hover .notice-scroll {
  animation-play-state: paused;
}


/* ===== GLASS CARD ===== */
.glass-card{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    margin-bottom:30px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.3);
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.card-title{
    font-weight:700;
    color:#f34300;
    margin-bottom:20px;
}

.info-list li{
    margin-bottom:10px;
    font-size:15px;
}

.highlight-number{
    font-weight:700;
    color:#f34300;
}

/* Animations */
@keyframes fadeDown{
    from{opacity:0; transform:translateY(-40px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

@media(max-width:768px){
    .hero-content h1{
        font-size:40px;
    }
    .glass-card{
        padding:20px;
    }
}

/* SEARCH BAR */
    .emp-search {
        margin-top: 20px;
        text-align: right;
    }

    .emp-search input {
        padding: 10px 18px;
        border-radius: 30px;
        border: 1px solid #ccc;
        width: 260px;
    }

    /* EMPLOYEE CARDS */
    ..emp-section {
        padding: 40px 0;
    }

    /* GRID FOR MANY EMPLOYEES */
    .emp-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* CARD */
    .emp-card {
        background: #fff;
        border-radius: 14px;
        padding: 18px;
        display: flex;
        gap: 15px;
        align-items: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .emp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    }

    .emp-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: linear-gradient(45deg, #f34300, #e26f03);
        color: #fff;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .emp-info h5 {
        font-size: 15px;
        margin: 0;
        font-weight: 700;
    }

    .emp-info span {
        font-size: 13px;
        color: #666;
    }

    .emp-phone {
        font-size: 13px;
        color: #f34300;
        font-weight: 600;
    }
.text-success{
    color: #f34300 !important;

}
.btn-success{
    background-color:  #f34300 !important;
    border: solid  #f35525 !important;;
}
    /* RESPONSIVE */
    @media(max-width:1200px) {
        .emp-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(max-width:768px) {
        .emp-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width:480px) {
        .emp-grid {
            grid-template-columns: 1fr;
        }
    }

     .table th {
    font-size: 14px;
    position: sticky;
    top: 0;
    background: linear-gradient(45deg, #f34300, #dd4701);
    color: #fff;
}

/* gallery code */
.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* Lightbox */

#lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox img{
max-width:80%;
max-height:80%;
}

.close{
position:absolute;
top:30px;
right:50px;
font-size:40px;
color:white;
cursor:pointer;
}

.prev, .next{
position:absolute;
top:50%;
font-size:50px;
color:white;
cursor:pointer;
padding:10px;
}

.prev{ left:40px; }
.next{ right:40px; }




.gallery-hero {
    position: relative;
    height: 70vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Background Video */
.gallery-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
        background: rgba(0,0,0,0.8);
    z-index: -1;
}

/* Content */
.gallery-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease forwards;
}

.gallery-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gallery-hero-content p {
    font-size: 18px;
    margin: 15px 0 20px;
    opacity: 0.95;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:992px){
    .gallery-hero {
        height: 45vh;
    }
    .gallery-hero-content h1 {
        font-size: 36px;
    }
}

@media(max-width:576px){
    .gallery-hero {
        height: 40vh;
    }
    .gallery-hero-content h1 {
        font-size: 26px;
    }
    .gallery-hero-content p {
        font-size: 14px;
    }
}
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&amp;display=swap');
/* Overlay (light dark for readability) */
.profile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
    .section-heading {
        font-weight: 700;
        color: #f34300;
        margin-bottom: 20px;
        border-left: 5px solid #f34300;
        padding-left: 10px;
    }
/* Content */
.profile-hero-content {
    position: relative;
    z-index: 2;
}

.profile-hero-content h1 {
    font-size: 65px;
    font-weight: 800;
    letter-spacing: 2px;
}

.profile-hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

/* Responsive */
@media(max-width:768px){
    .profile-hero-content h1 {
        font-size: 34px;
    }
}


/* Reuse same button style */
.btn-custom{
    background: linear-gradient(45deg,#198754,#0a5c2f);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
}

.btn-custom:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* GLOBAL RESPONSIVE IMPROVEMENTS */
@media (max-width: 992px) {
    .profile-hero {
        height: 60vh;
        padding: 20px;
    }

    .profile-hero-content h1 {
        font-size: 42px;
    }

    .profile-hero-content p {
        font-size: 16px;
    }

    .content-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {

    /* Hero section */
    .profile-hero {
        height: auto;
        padding: 80px 20px;
    }

    .profile-hero-content h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .profile-hero-content p {
        font-size: 15px;
        margin: 15px 0;
    }

    .btn-custom {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Layout stacking */
    .left-sticky {
        position: relative;
        top: 0;
        margin-bottom: 25px;
    }

    .sidebar-card,
    .video-card {
        padding: 20px;
        border-radius: 15px;
    }

    .content-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 18px;
    }

    .summary-item,
    .data-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .profile-hero-content h1 {
        font-size: 24px;
    }

    .profile-hero-content p {
        font-size: 14px;
    }

    .btn-custom {
        padding: 10px 20px;
        font-size: 13px;
    }

    .sidebar-card h4 {
        font-size: 18px;
    }

    .section-heading {
        font-size: 16px;
    }
}
    .content-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        transition: 0.3s;
    }

    .content-card:hover {
        transform: translateY(-5px);
    }
    /* LAYOUT */
    .profile-wrapper {
        padding: 30px 0;
    }

    .sidebar-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        /*  position:sticky;
    top:20px;   Less gap from top */
        z-index: 10;
    }

    .left-sticky {
        position: sticky;
        top: 20px;
        height: fit-content;
    }

    .video-card {
        background: #fff;
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .sidebar-card h4 {
        font-weight: 700;
        color: #198754;
        margin-bottom: 20px;
    }

    .summary-item {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .summary-item span {
        font-weight: 600;
        color: #0a5c2f;
    }

    /* CONTENT SECTION */




    .data-list li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .highlight {
        font-weight: 700;
        color: #0a5c2f;
    }

    @media(max-width:768px) {
        .sidebar-card {
            position: relative;
            top: 0;
            margin-bottom: 30px;
        }
    }

 .profile-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
