/* director desk style */
   :root {
            --primary-dark: #1a2332;
            --primary-teal: #00229E;
            --accent-gold: #d4a574;
            --text-primary: #2c3e50;
            --text-secondary: #5a6c7d;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
        }     

        /* Sidebar Navigation */
        .sidebar {
            width: 320px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            position: sticky;
            top: 60px;
            animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .nav-header {
            background: var(--gradientColor);
            color: var(--white);
            padding: 10px 32px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .nav-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 8s infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30%, -30%); }
        }

        .nav-item {
            padding: 12px 32px;
            background: var(--bg-light);
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-teal);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .nav-item:hover {
            background: var(--white);
            padding-left: 40px;
            color: var(--primary-teal);
        }

        .nav-item:hover::before {
            transform: scaleY(1);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-header {
            padding: 15px 60px 15px;
            border-bottom: 2px solid var(--bg-light);
            position: relative;
        }

        .content-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 60px;
            width: 80px;
            height: 2px;
            background: var(--primary-teal);
        }

        .content-header h1 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .content-body {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 50px;
            padding: 50px 60px;
        }
         .content-body1 {
            grid-template-columns: 1fr 320px;
            gap: 50px;
            padding: 50px 60px;
            line-height:1.5;
        }
        .text-content p {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 28px;
            text-align: justify;
            font-weight: 400;
        }

        .text-content p:first-of-type::first-letter {
            font-size: 3.5rem;
            font-weight: 600;
            float: left;
            line-height: 1;
            margin: 8px 12px 0 0;
            color: var(--primary-teal);
        }

        /* Director Profile Card */
        .director-profile {
            position: sticky;
            top: 60px;
        }

        .profile-image-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            margin-bottom: 24px;
            animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s backwards;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .profile-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
            z-index: 1;
        }

        .profile-image {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .profile-image-wrapper:hover .profile-image {
            transform: scale(1.05);
        }

        .profile-name {
            background: var(--gradientColor);
            color: var(--white);
            padding:12px 25px 3px 12px;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            text-align: center;
        }

        .profile-name h3 {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Decorative Elements */
        .decorative-line {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            margin: 40px 0;
            opacity: 0.4;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                position: static;
            }

            .content-body {
                grid-template-columns: 1fr;
            }

            .content-body1 {
                grid-template-columns: 1fr;
            }

            .director-profile {
                position: static;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }

            .content-header,
            .content-body {
                padding: 30px 30px;
            }
            .content-header,
            .content-body1 {
                padding: 30px 30px;
            }

            .content-header h1 {
                font-size: 2.2rem;
            }

            .text-content p {
                font-size: 1rem;
            }
        }

        /* Subtle background pattern */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(15, 124, 140, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Active Navigation State */
        .nav-item.active {
            background: var(--white);
            color: var(--primary-teal);
            padding-left: 40px;
        }

        .nav-item.active::before {
            transform: scaleY(1);
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Table Styles */
        .table-container {
            padding: 35px 50px;
            display: none;
            animation: fadeInUp 0.6s ease;
        }

        .table-container.active {
            display: block;
        }

        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            background: var(--white);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }

        thead {
            background: #00229e;
            color: var(--white);
        }

        thead th {
            padding: 7px 18px;
            text-align: center;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.4px;
        }
        
        tbody tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        tbody tr:hover {
            background: var(--bg-light);
            transform: translateX(4px);
        }

        tbody td {
            padding: 7px 17px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        tbody td:first-child {
            color: var(--text-primary);
            font-weight: 500;
            text-align:center;
        }

        tbody td:nth-child(2) {
            color: var(--primary-teal);
            font-weight: 500;
        }

        /* Highlight current director */
        tbody tr:last-child {
            background: linear-gradient(to right, rgba(15, 124, 140, 0.05), transparent);
        }

        tbody tr:last-child td {
            font-weight: 600;
            color: var(--primary-dark);
        }

        tbody tr:last-child td:nth-child(2) {
            color: var(--primary-teal);
        }

        /* Table responsive */
        @media (max-width: 768px) {
            .table-container {
                padding: 30px 20px;
            }

            table {
                font-size: 0.85rem;
            }

            thead th,
            tbody td {
                padding: 12px 16px;
            }
        }
/* director desk end */

/* mission & vision css start*/

.vm-section {
    padding: 60px 20px;
}

.vm-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Common Card */
.vm-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vm-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
}

.vm-card h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #2563eb;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

/* Vision */
blockquote {
    background: #f0f6ff;
    padding: 25px;
    border-left: 5px solid #00229e;
    font-style: italic;
    color: #374151;
    margin-bottom: 20px;
    border-radius: 10px;
}

blockquote span {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #00229e;
    text-align: right;
}

.vision p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

/* Mission */
.mission-list {
    list-style: none;
}

.mission-list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.mission-list li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
}

/* mission & vision end  */
/* history start*/
        :root {
            --primary-dark: #1a2332;
            --primary-teal: #00229e;
            --accent-gold: #FE0094;
            --text-primary: #2c3e50;
            --text-secondary: #5a6c7d;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
        }
        /* Subtle background pattern */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Main Content Card */
        .content-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Header Section */
        .header-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
            padding:14px 65px;
            position: relative;
            overflow: hidden;
        }

        .header-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .header-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(15, 124, 140, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header-content h1 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            animation: slideInLeft 0.8s ease 0.3s backwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .header-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            animation: slideInLeft 0.8s ease 0.5s backwards;
        }

        /* Decorative Line */
        /*.decorative-accent {*/
        /*    height: 4px;*/
        /*    background: linear-gradient(to right, var(--accent-gold), transparent);*/
        /*    width: 120px;*/
        /*    margin-bottom: 20px;*/
        /*    border-radius: 2px;*/
        /*    animation: expandWidth 0.8s ease 0.6s backwards;*/
        /*}*/

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 120px; }
        }

        /* Content Section */
        .content-section {
            padding: 30px 70px 80px;
        }

        .history-content {
            max-width: 1100px;
        }

        .history-content p {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--text-secondary);
            text-align: justify;
            font-weight: 300;
            margin-bottom: 0;
            position: relative;
        }

        /* Drop Cap for first letter */
        .history-content p::first-letter {
            font-size: 4.5rem;
            font-weight: 600;
            float: left;
            line-height: 0.85;
            margin: 10px 16px 0 0;
            color: var(--primary-teal);
        }

        /* Timeline Feature Boxes */
        .timeline-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .timeline-box {
            background: var(--bg-light);
            padding: 32px 28px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-teal);
            transition: all 0.3s ease;
            animation: scaleIn 0.6s ease backwards;
        }

        .timeline-box:nth-child(1) { animation-delay: 0.4s; }
        .timeline-box:nth-child(2) { animation-delay: 0.5s; }
        .timeline-box:nth-child(3) { animation-delay: 0.6s; }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .timeline-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-soft);
            border-left-color: var(--accent-gold);
        }

        .timeline-year {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-teal);
            margin-bottom: 12px;
            line-height: 1;
        }

        .timeline-event {
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.6;
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, rgba(15, 124, 140, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
            padding: 20px 60px;
            margin: 45px 0 0 0;
            border-radius: 16px;
            border-left: 5px solid var(--primary-teal);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-teal);
            opacity: 0.15;
        }

        .quote-text {
            font-size: 1.15rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.9;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 40px 30px;
            }

            .header-section,
            .content-section {
                padding: 50px 50px;
            }

            .header-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }

            .header-section {
                padding: 40px 30px;
            }

            .header-content h1 {
                font-size: 2.2rem;
            }

            .header-subtitle {
                font-size: 1rem;
            }

            .content-section {
                padding: 40px 30px 50px;
            }

            .history-content p {
                font-size: 1rem;
                line-height: 1.8;
            }

            .timeline-highlights {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .quote-section {
                padding: 35px 30px;
            }

            .quote-text {
                font-size: 1rem;
            }
        }

        /* Scroll reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
/* history end */
/*   */
.sidebar1 ul{
    list-style:none;
    padding:10px;
    margin:0;
}

.sidebar1 ul li{
    padding:8px 10px;
    font-size:14px;
    border-bottom:1px solid #ddd;
}

.sidebar1 ul li.active{
    font-weight:600;
}

.content1 h2{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.content1 p{
    font-size:14px;
    line-height:1.7;
    text-align:justify;
}

.content1 ul{
    padding-left:20px;
}

.content1 ul li{
    margin-bottom:10px;
    font-size:14px;
}

        .content_new {
            padding: 50px 40px;
        }

        .links-section {
            margin-bottom: 50px;
        }

        .simple-link {
            display: block;
            padding: 3px 0;
            text-decoration: none;
            color: red;
            font-size: 1em;
            border-bottom: 1px solid #e9ecef;
            transition: color 0.3s ease;
        }

        .simple-link:hover {
            color: #667eea;
        }

        .simple-link:last-child {
            border-bottom: none;
        }

        .stipend-section {
            margin-top: 40px;
        }

        .section-title {
            font-size: 1.8em;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #667eea;
        }

        .info-text {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #667eea;
            border-radius: 8px;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.6;
        }

        .stipend-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .stipend-table thead {
            background: #00229e;
            color: white;
        }

        .stipend-table th {
            padding: 8px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }

        .stipend-table tbody tr {
            background: white;
            transition: background-color 0.3s ease;
        }

        .stipend-table tbody tr:nth-child(even) {
            background: #f8f9fa;
        }

        .stipend-table tbody tr:hover {
            background: #e9ecef;
        }

        .stipend-table td {
            padding: 11px;
            border-bottom: 1px solid #dee2e6;
            color: #333;
        }

        .stipend-table td:first-child {
            font-weight: 600;
            color: #667eea;
            width: 80px;
        }

        .stipend-table td:last-child {
            font-weight: 700;
            color: #f5576c;
            font-size: 1.1em;
        }

        .stipend-table tbody tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .header {
                padding: 30px 20px;
            }

            .header h1 {
                font-size: 1.8em;
            }

            .content_new {
                padding: 30px 20px;
            }

            .stipend-table {
                font-size: 0.9em;
            }

            .stipend-table th,
            .stipend-table td {
                padding: 12px;
            }
        }
        .guideline-item {
            padding: 5px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .guideline-item:last-child {
            border-bottom: none;
        }

        .guideline-item a {
            text-decoration: none;
            color: #333;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .guideline-item a:hover {
            color: #d32f2f;
        }

        .pdf-icon {
            width: 30px;
            height: 30px;
            background: #d32f2f;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7em;
            font-weight: bold;
            border-radius: 2px;
            padding: 2px 4px;
        }

        .bottom-nav {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .bottom-nav a {
            text-decoration: none;
            color: #0066cc;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .bottom-nav a:hover {
            color: #d32f2f;
        }

        .nav-separator {
            color: #666;
            margin: 0 5px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 25px;
            }

            .page-title {
                font-size: 1.5em;
            }

            .guideline-item {
                font-size: 0.95em;
            }

            .bottom-nav {
                font-size: 0.9em;
            }
        }
h4{
    font-size: 19px;
}


.card1 {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card1 h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

.note {
    font-weight: 600;
}

.highlight {
    background: #e3f2fd;
    padding: 10px;
    border-left: 4px solid #2196f3;
    margin: 15px 0;
}

.instruction-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.bank-card1 {
    border-left: 5px solid #2e7d32;
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.bank-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.bank-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.warning {
    border-left: 5px solid #c62828;
    background: #fff8f8;
}

.tamil {
    line-height: 1.8;
    margin-bottom: 12px;
}
.searchtrade{
    width: 260px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid grey;
}