.elementor-190 .elementor-element.elementor-element-0899dce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-190 .elementor-element.elementor-element-e88cbc8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-190 .elementor-element.elementor-element-854bef5{--display:flex;--min-height:390px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--overlay-opacity:0.44;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-190 .elementor-element.elementor-element-854bef5:not(.elementor-motion-effects-element-type-background), .elementor-190 .elementor-element.elementor-element-854bef5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://skvv.ac.in/wp-content/uploads/2026/04/MicrosoftTeams-image-20-768x309.png");}.elementor-190 .elementor-element.elementor-element-854bef5::before, .elementor-190 .elementor-element.elementor-element-854bef5 > .elementor-background-video-container::before, .elementor-190 .elementor-element.elementor-element-854bef5 > .e-con-inner > .elementor-background-video-container::before, .elementor-190 .elementor-element.elementor-element-854bef5 > .elementor-background-slideshow::before, .elementor-190 .elementor-element.elementor-element-854bef5 > .e-con-inner > .elementor-background-slideshow::before, .elementor-190 .elementor-element.elementor-element-854bef5 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#660202;--background-overlay:'';}.elementor-190 .elementor-element.elementor-element-177d22f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-190 .elementor-element.elementor-element-177d22f.elementor-element{--align-self:center;}.elementor-190 .elementor-element.elementor-element-a7ad285{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-177d22f *//* 1. Base Wrapper - Taaki baaki website safe rahe */
.skvv-main-wrapper {
    width: 100%;
    overflow: hidden; /* Bahar nikalne se rokne ke liye */
    box-sizing: border-box;
}

.skvv-main-wrapper * {
    box-sizing: border-box; /* Proper padding calculation */
}

/* 2. Card Container */
.skvv-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px; /* Mobile par side padding kam rakhi hai */
    width: 100%;
}

/* 3. Animated Card Design */
.skvv-animated-card {
    background: linear-gradient(135deg, #1a237e, #0a1440);
    padding: 50px 80px; /* Desktop padding */
    border-radius: 20px;
    border-bottom: 5px solid #ff9800;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
    max-width: 800px; /* Ek limit set ki hai taaki zyada bada na dikhe */
    
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: skvvFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* 4. Page Title - Responsive Font Size */
.skvv-page-title {
    color: #ffffff !important;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    /* clamp(min, preferred, max) - automatically adjusts size */
    font-size: clamp(24px, 6vw, 50px) !important; 
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

/* 5. Animated Dots */
.skvv-animated-divider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.skvv-animated-divider span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #ff9800;
    border-radius: 50%;
    animation: skvvBounce 1.4s infinite ease-in-out both;
}

.skvv-animated-divider span:nth-child(1) { animation-delay: -0.32s; }
.skvv-animated-divider span:nth-child(2) { animation-delay: -0.16s; background-color: #ffffff; }

/* 6. Animations */
@keyframes skvvFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes skvvBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); box-shadow: 0 0 10px rgba(255,152,0,0.6); }
}

/* 7. ALL DEVICES RESPONSIVENESS */

/* Tablet (iPad) */
@media (max-width: 992px) {
    .skvv-animated-card {
        padding: 40px 50px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .skvv-card-container {
        padding: 20px 10px;
    }

    .skvv-animated-card {
        padding: 30px 20px; /* Mobile par padding kam takki text fit aaye */
        border-radius: 15px;
    }

    .skvv-page-title {
        letter-spacing: 1px;
    }

    .skvv-animated-divider span {
        width: 10px;
        height: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc303e6 */<style>
/* Main Container */
.eoc-committee-wrapper {
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.table-container {
    overflow-x: auto;
}

/* Table Design */
.committee-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

/* Header Styling */
.committee-table thead tr {
    background-color: #002b5c; /* Dark Blue */
    color: #ffffff;
    text-align: left;
}

.committee-table th {
    padding: 15px;
    font-weight: bold;
    border: 1px solid #ddd;
}

/* Row and Cell Styling */
.committee-table td {
    padding: 12px 15px;
    border: 1px solid #eeeeee;
    color: #333333;
}

/* Nodal Officer Row Highlight */
.nodal-officer-row {
    background-color: #fff4e6; /* Light Saffron/Orange tint */
    font-weight: bold;
}

.nodal-officer-row td:last-child {
    color: #b34d00; /* Deep Orange for Nodal Officer text */
}

/* Zebra Stripes for other rows */
.committee-table tbody tr:nth-child(even):not(.nodal-officer-row) {
    background-color: #f9f9f9;
}

/* Hover Effect */
.committee-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .committee-table th, .committee-table td {
        padding: 10px;
        font-size: 14px;
    }
}
</style>/* End custom CSS */