@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: 'Poppins', sans-serif !important;
}


.menu-window{
    float: inline-end;
}

@media only screen and (max-width: 1200px){
        .menu-window{
        float: none;
    }
}






* -----------flash news start----------------------- */

.news-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    font-family: "Roboto", sans-serif;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
    background-color: #131783;
    height: 40px;
    display: flex;
    align-items: center;
  }
  
  .news-container .title {
    position: absolute;
    background: #014ca1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #ffffff;
    font-weight: bold;
    z-index: 200;
  }
  
  .news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 25s infinite linear;
  }
  
  .news-container ul li {
    white-space: nowrap;
    padding: 10px 24px;
    color: #000;
    position: relative;
  }
  
  .news-container ul li::after {
    content:"";
    width: 1px;
    height: 100%;
    background: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .news-container ul li:last-child::after {
    display: none;
  }
  
  
  .news-container marquee a:hover{
    color: #ebebeb;
  }
  .news-container marquee {
    color: #ffffff;
  }
  
  .news-container marquee a{
    color: #fff;
    font-weight: 400;
  }
  
  .news-container marquee a span{
    color: #59df80;
    font-weight: 600;
    margin-right: 10px;
  }
  
  
  
  @keyframes scroll {
    from {
        transform: translateX(100%);
    }
  
    to {
        transform: translateX(-1083px);
  
    }
  }
  
  /* -----------flash news end----------------------- */

  /* -----------Gallery- video/photo start----------------------- */


  .gallery-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .gallery-title {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 20px;
        }
        
        .gallery-title h1 {
            font-weight: 300;
            font-size: 2.8rem;
            color: #222;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .gallery-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Gallery Grid */

        .program-image{
            display: block;
            width: 100%;
            height: 100%;
        }
        .gallery-row {
            margin-bottom: 30px;
        }
        
        .gallery-item {
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background-color: white;
            height: 300px;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        
        .image-container:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .image-info {
            padding: 20px;
            background-color: white;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: -5px;
            position: relative;
            z-index: 1;
        }
        
        .image-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }
        
        .image-category {
            display: inline-block;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .image-description {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Hover overlay effect */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
            color: white;
            text-align: center;
        }
        
        .image-container:hover .image-overlay {
            opacity: 1;
        }
        
        .overlay-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .overlay-category {
            font-size: 0.9rem;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        .overlay-description {
            font-size: 0.95rem;
            max-width: 80%;
            line-height: 1.5;
        }
        
        /* Copyright */
        .copyright {
            text-align: center;
            padding: 40px 0 20px;
            margin-top: 20px;
            color: #777;
            font-size: 0.95rem;
            border-top: 1px solid #eee;
        }
        
        .copyright-icon {
            color: #d9534f;
            margin-right: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .image-container {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-title h1 {
                font-size: 2.2rem;
            }
            
            .image-container {
                height: 220px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-title h1 {
                font-size: 1.8rem;
            }
            
            .gallery-title p {
                font-size: 1rem;
            }
            
            .image-container {
                height: 200px;
            }
        }

        /* -----------Gallery- video/photo end----------------------- */


    /* -----------Download-page Start----------------------- */

        /* -----------leftside part Start----------------------- */

        .holder {
            margin-bottom: 60px;
            margin-top: 60px;
        }

        .document-portal {
            width: 100%;
            max-width: 1000px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(2px);
            border-radius: 12px;
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.05),
                0 1px 2px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            overflow: hidden;
            padding: 40px;
            border: 1px solid rgba(222, 226, 230, 0.3);
            position: relative;
            margin-bottom: 90px;
        }

        /* Subtle corner accents */
        .document-portal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(3, 89, 78, 0.1), transparent);
        }

        .portal-header {
            margin-bottom: 32px;
            padding: 19px;
            border-bottom: 1px solid rgba(222, 226, 230, 0.5);
            border-radius: 20px 20px 0 0;
            background: #03594e;
            
            position: relative;
        }

        .portal-header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #03594e, rgba(3, 89, 78, 0.3));
        }

        .portal-title {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            margin-top: 18px;
            letter-spacing: -0.2px;
        }

        .portal-subtitle {
            color: #e1e1e1;
            font-size: 13px;
            line-height: 1.5;
            font-weight: 400;
        }

        .download-list {
            list-style: none;
        }

        .download-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            border-bottom: 1px solid rgba(222, 226, 230, 0.5);
            transition: all 0.2s ease;
            position: relative;
        }

        .download-item:hover {
            background: rgba(248, 249, 250, 0.4);
        }

        .download-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: linear-gradient(to bottom, rgba(3, 89, 78, 0.1), transparent);
            transition: width 0.3s ease;
        }

        .download-item:hover::before {
            width: 4px;
        }

        .document-info {
            flex: 1;
            padding-right: 32px;
        }

        .document-header-title {
            font-weight: 700;
            text-transform: uppercase;
            color: #f3f3f3;
            font-size: 16px;
            letter-spacing: 0.4px;
            margin-bottom: 6px;
            line-height: 1.4;
            background: #03594e;
            padding: 12px;
            border-radius: 10px 10px 0 0;
        }

        .document-title {
            font-weight: 700;
            text-transform: uppercase;
            color: #f3f3f3;
            font-size: 16px;
            letter-spacing: 0.4px;
            margin-bottom: 6px;
            line-height: 1.4;
            background: #03594e;
            padding: 12px;
            border-radius: 10px 10px 0 0;
        }

        .document-description {
            color: #6c757d;
            font-weight: 400;
            font-size: 15px;
            line-height: 1.5;
            margin-top: 2px;
        }

        .download-button {
            background: transparent;
            border: 1px solid #dee2e6;
            color: #03594e;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .download-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(3, 89, 78, 0.05);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .download-button, .button-icon:hover {
            fill: #ffffff;
        }

        .download-button:hover {
            background: #03594e;
            color: #ffffff;
            fill: #ffffff;
            border-color: #03594e;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(3, 89, 78, 0.1);
        }

        .download-button:hover::before {
            opacity: 1;
        }

        .download-button:active {
            transform: translateY(0);
        }

        .button-icon {
            width: 16px;
            height: 16px;
            fill: #03594e;
            transition: transform 0.2s ease;
        }

        .download-button:hover .button-icon {
            transform: translateY(1px);
        }

        .document-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 8px;
        }

        .document-type {
            display: inline-flex;
            align-items: center;
            padding: 2px 8px;
            background: rgba(3, 89, 78, 0.08);
            border-radius: 4px;
            color: #03594e;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .document-size {
            color: #868e96;
            font-size: 13px;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            .document-portal {
                padding: 28px 24px;
            }
            
            .download-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding: 20px 0;
            }
            
            .document-info {
                padding-right: 0;
                width: 100%;
            }
            
            .download-button {
                align-self: stretch;
                justify-content: center;
            }
            
            .portal-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .document-portal {
                padding: 20px 16px;
            }
            
            .document-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .portal-title {
                font-size: 12px;
            }
            
            .document-title {
                font-size: 15px;
                letter-spacing: 0.3px;
            }
            
            
        }

        .portal-footer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(222, 226, 230, 0.5);
            color: #6c757d;
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
        }

        /* Animation for download action */
        @keyframes downloadPulse {
            0% { box-shadow: 0 0 0 0 rgba(3, 89, 78, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(3, 89, 78, 0); }
            100% { box-shadow: 0 0 0 0 rgba(3, 89, 78, 0); }
        }

        .downloading {
            animation: downloadPulse 1.5s ease;
            background: rgba(3, 89, 78, 0.05) !important;
            border-color: #03594e !important;
        }


        /* -----------leftside part End----------------------- */

        /* -----------rightside part Start----------------------- */

        /* Two-column layout */
        .content-wrapper {
            display: grid;
            grid-template-columns: 70% 30%;
            gap: 30px;
        }

        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        

        /* Right Column: Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .widget {
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .widget-header {
            background-color: #f8f9fa;
            padding: 15px 20px;
            border-bottom: 1px solid #dee2e6;
            text-transform: uppercase;
            font-weight: 700;
            color: #333;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }

        .widget-content {
            padding: 20px;
        }

        /* Notifications Widget */
        .notification-date {
            background-color: #28a745;
            color: white !important;
            text-align: center;
            padding: 12px 15px;
            border-radius: 4px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .notification-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-item h4 {
            color: #03594e;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .notification-item p {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* News & Events Widget */
        .news-image {
            width: 100%;
            height: 180px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-weight: 600;
            text-align: center;
            padding: 10px;
        }

        .news-item {
            padding: 12px 0;
            border-bottom: 1px dashed #ccc;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item h4 {
            color: #03594e;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .news-item p {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .news-item-with-icon {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .news-icon {
            color: #03594e;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Footer */
        .footer {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
            text-align: center;
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .download-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .download-btn {
                align-self: flex-end;
            }
            
            
        }

        /* -----------rightside part End----------------------- */

    /* -----------Download-page Start----------------------- */

/* ===== Video banner styles (hero) ===== */
.video-banner {
    position: relative;
    width: 100%;
    height: 80vh; /* fixed half-screen */
    overflow: hidden;
    display: block;
}
.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-banner .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}
.it-slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
}
.video-banner .it-slider-title {
    font-family: "Instrument Serif", serif;
    font-weight: 500;
    font-size: 56px;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #ffffff;
}

.video-banner .it-slider-subtitle {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.95);
}
.video-banner .it-slider-cta { display: inline-block; z-index:4; }
@media (max-width: 480px) {
    .video-banner .it-slider-title { font-size: 22px; }
    .video-banner .it-slider-subtitle { font-size: 14px; }
    .video-banner { height: 50vh; }
}
/* Mobile: hide video and fall back to poster image for bandwidth */
@media (max-width: 768px) {
    /* .video-banner video { display: none; } */
    .video-banner { background: url('../img/hero_main/bg-1.jpg') center/cover no-repeat; height: 50vh; }
}
/* End video banner styles */




.curiculam h4{
  position: relative;
    text-align: left;
    padding: 25px 30px;
    padding-right: 65px;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--it-common-black);
}

.inner_header{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ------form---- */


  .main-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.6s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-banner {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            color: #856404;
            padding: 15px 30px;
            text-align: center;
            font-size: 14px;
            border-bottom: 3px solid #ffd93d;
            font-weight: 500;
        }
        
        .alert-banner i {
            margin-right: 8px;
        }
        
        .header-section {
            background: linear-gradient(135deg, #03594e 0%, #02867a 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::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: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .header-section h1 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-section p {
            margin: 10px 0 0 0;
            font-size: 14px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            color: #ffff;
        }
        
        .form-content {
            padding: 40px;
        }
        
        .course-select-wrapper {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 2px solid #03594e;
            box-shadow: 0 5px 15px rgba(3,89,78,0.1);
        }
        
        .course-select-wrapper label {
            font-weight: 600;
            color: #03594e;
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .course-select-wrapper label i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .section-header {
            background: linear-gradient(135deg, #03594e 0%, #02867a 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 18px;
            margin: 35px 0 25px 0;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 15px rgba(3,89,78,0.2);
        }
        
        .section-header i {
            margin-right: 12px;
            font-size: 22px;
        }
        
        .form-label {
            font-weight: 500;
            color: #2d3436;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .required::after {
            content: "*";
            color: #e74c3c;
            margin-left: 4px;
            font-size: 16px;
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #03594e;
            box-shadow: 0 0 0 0.2rem rgba(3,89,78,0.15);
        }
        
        .photo-upload-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 10px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed #03594e;
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }
        
        .photo-upload-section:hover {
            border-color: #02867a;
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        }
        
        .photo-preview {
            width: 100px;
            height: 100px;
            background: white;
            border: 3px solid #03594e;
            border-radius: 15px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .photo-preview i {
            font-size: 35px;
            color: #03594e;
            opacity: 0.3;
        }
        
        .photo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .upload-btn-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
        }
        
        .upload-btn {
            background: linear-gradient(135deg, #03594e 0%, #02867a 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            font-size: 13px;
            box-shadow: 0 5px 15px rgba(3,89,78,0.3);
        }
        
        .upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(3,89,78,0.4);
        }
        
        .upload-btn i {
            margin-right: 8px;
        }
        
        .upload-btn-wrapper input[type=file] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }
        
        .form-check-input:checked {
            background-color: #03594e;
            border-color: #03594e;
        }
        
        .form-check-input:focus {
            border-color: #03594e;
            box-shadow: 0 0 0 0.25rem rgba(3,89,78,0.25);
        }
        
        .form-check {
            padding: 10px;
            margin-bottom: 8px;
        }
        
        .form-check-label {
            margin-left: 8px;
            cursor: pointer;
        }
        
        .add-more-btn {
            background: linear-gradient(135deg, #03594e 0%, #02867a 100%);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(3,89,78,0.2);
        }
        
        .add-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(3,89,78,0.3);
        }
        
        .add-more-btn i {
            margin-right: 8px;
        }
        
        .sibling-entry {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid #03594e;
        }
        
        .submit-section {
            text-align: right;
            padding-top: 30px;
            border-top: 2px solid #e0e0e0;
            margin-top: 40px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #03594e 0%, #02867a 100%);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(3,89,78,0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(3,89,78,0.4);
        }
        
        .submit-btn i {
            margin-left: 10px;
        }
        
        .input-group-custom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .form-content {
                padding: 25px;
            }
            
            .header-section h1 {
                font-size: 24px;
            }
            
            .input-group-custom {
                grid-template-columns: 1fr;
            }
        }
        
        .tooltip-icon {
            color: #03594e;
            margin-left: 5px;
            cursor: help;
        }

 
        .it-footer-area{
          background-image: url(../img/shape/footer-bg-3-1.jpg);
          width: 100%;
          background-position: center;
          background-size: cover;
        }







    /* About page  */
  

        /* Section Styling */
        .activities-section {
            padding: 40px 0;
        }

        /* Left Column */
        .text-content {
            flex: 1;
            min-width: 300px;
        }

        /* Right Column */
        .visual-content {
            flex: 1;
            min-width: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }

        /* Kicker */
        .kicker {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        /* Main Heading */
        .main-heading {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .highlight {
            color: var(--primary);
        }

        /* Subtitle */
        .subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
        }

        /* Cards Container */
        .cards-container {
           
            margin-bottom: 40px;
        }

        /* Card Styling */
        .card {
            background: linear-gradient(135deg, rgb(255 220 47 / 6%) 100% 0%, rgb(86 143 136) 100%);
            border-radius: 24px;
            padding: 25px;
            position: relative;
            box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
            margin: 20px 0;
        }

        .card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background: var(--it-theme-1);
            border-radius: 0 3px 3px 0;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 184, 148, 0.2);
        }


        .card1 {
            background: linear-gradient(135deg, rgb(255 220 47 / 6%) 100% 0%, rgb(86 143 136) 100%);
            border-radius: 24px;
            padding: 25px;
            position: relative;
            box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .card1::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background: var(--it-theme-1);
            border-radius: 0 3px 3px 0;
        }

        .card1:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 184, 148, 0.2);
        }

        /* Card Header */
        .card-header1 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            background: var(--green-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* Card Body */
        .card-body {
            color: var(--text-secondary);
            padding-left: 10px;
        }

        

        /* CTA Button */
        .cta-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .cta-button {
            background: var(--green-gradient);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
        }

        .cta-button:hover {
            background: var(--green-gradient-hover);
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 25px rgba(0, 184, 148, 0.4);
        }

        .cta-icon {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: bold;
        }

        .cta-note {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Poster Container */
        .poster-container {
            width: 100%;
            max-width: 700px;
            aspect-ratio: 9/5;
            background: linear-gradient(135deg, rgb(241 249 248) 100% 0%, rgb(3 89 78) 100%);
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-start;
            padding: 30px;
        }


        
        /* Poster overlay effects */
        .poster-container::before,
        .poster-container::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
        }

        .poster-container::before {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #ff9a9e 0%, transparent 70%);
            top: -100px;
            right: -100px;
        }

        .poster-container::after {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #fad0c4 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
        }

        /* Poster Text */
        .poster-text {
            position: relative;
            z-index: 2;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: rgba(0, 0, 0, 0.6);
        }

        /* Floating Badge */
        .floating-badge {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 580px;
            background: rgb(255 255 255);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 10;
            animation: float 4s ease-in-out infinite;
        }
        .hero-section{
            background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(45, 90, 60, 0.9)), url(../assets/img/shape/msg_bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            color: white;
            padding:100px 0;
            position: relative;
            background-repeat: no-repeat;

        }

        .hero-quote {
            font-size: 1rem;
            font-weight: 300;
            background-color:rgba(201, 169, 89, 0.2);
            padding: 40px;
            border-radius: 12px; 
            border-right: 5px solid #374114;
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.6rem;
        }

        .hero-quote-l {
            font-size: 1rem;
            font-weight: 300;
            background-color:rgba(201, 169, 89, 0.2);
            padding: 40px;
            border-radius: 12px; 
            border-left: 5px solid #374114;
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.6rem;
        }

        .reverse {
            flex-direction: row-reverse;
        }

        .message-card{
         padding: 15px 20px;
         font-size: 30px;
        }

        .college-header {
            background-color: var(--it-theme-1);
            color: var(--white);
            padding: 20px;
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-15px);
            }
        }

        /* Badge Logo */
        .badge-logo {
            display: flex;
            justify-content: center;
        }

        .logo-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-circle-inner {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Leaf Icon */
        .leaf-icon {
            width: 35px;
            height: 35px;
            position: relative;
        }

        .leaf-stem {
            position: absolute;
            width: 3px;
            height: 20px;
            background: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .leaf-tip {
            position: absolute;
            width: 35px;
            height: 25px;
            background: var(--accent);
            border-radius: 50% 50% 0 0;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Badge Text */
        .badge-text {
            text-align: center;
        }

        .badge-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-secondary);
            margin-bottom: 5px;
        }

        .badge-subtitle {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .activities-section {
                flex-direction: column-reverse;
                gap: 40px;
            }
            
            .visual-content {
                justify-content: center;
            }
            
            
            .main-heading {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 640px) {
            .activities-section {
                padding: 20px 0;
            }
            
            .main-heading {
                font-size: 2rem;
            }
            
            .card {
                padding: 20px;
            }

            .card1 {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .floating-badge {
                width: 240px;
                padding: 20px;
                position:absolute;
                bottom: -40px;
                left: 50%;
            }
            
            .poster-container {
                border-radius: 24px;
                padding: 20px;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 1.8rem;
            }
            
            .poster-text {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }
            
            .poster-container {
                aspect-ratio: 7/6;
            }
            
            .floating-badge {
                width: 240px;
                padding: 20px;
                position:absolute;
                bottom: 3px;
                left: 50%;
            }
            
            .badge-subtitle {
                font-size: 1rem;
            }
            
            .hero-quote {
                font-size: 0.8rem;
                padding: 23px;
            }
        }

    /* About page - Mission and vision start */

    .section-co {
      position: relative;
      padding: 100px 6vw;
      overflow: hidden;
      isolation: isolate;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Animated gradient background */
    .section-co::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: 
        radial-gradient(circle at 10% 20%, rgba(179, 231, 255, 0.6), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(215, 255, 242, 0.6), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), transparent 50%);
      z-index: -2;
      animation: gradientShift 15s ease-in-out infinite alternate;
    }

    

    /* LEFT SIDE */

    .co-heading {
      margin-bottom: 2rem;
    }

    .co-kicker {
      display: inline-block;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 0.75rem;
      padding: 0.4rem 1rem;
      background: rgba(0, 184, 148, 0.1);
      border-radius: 100px;
      position: relative;
      overflow: hidden;
    }

    .co-kicker::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      animation: shine 3s infinite;
    }

    .co-heading h2 {
      font-size: clamp(2.5rem, 3.5vw, 3.5rem);
      letter-spacing: -0.01em;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .co-heading h2 span {
      color: var(--primary);
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
    }

    .co-heading h2 span::after {
      content: "";
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
      opacity: 0.5;
    }

    .co-subtitle {
      margin-top: 1rem;
      max-width: 32rem;
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .co-cards {
      display: flex;
      flex-direction: row;
      
      gap: 1.8rem;
      margin-top: 3rem;
    }

    .co-card {
      position: relative;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 252, 255, 0.98) 100%);
      border-radius: 20px;
      margin-bottom: 40px;
      padding: 2rem 2rem 2.2rem;
      box-shadow: 0 12px 30px rgb(29 35 33 / 18%);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.8);
      transition: var(--transition-smooth);
      backdrop-filter: blur(10px);
    }

    /* Animated gradient border */
    .co-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--card-radius);
      padding: 2px;
      background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent-light));
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: var(--transition-smooth);
    }

    .co-card:hover::before {
      opacity: 1;
      animation: borderRotate 3s linear infinite;
    }

    .co-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 35px 90px rgba(11, 54, 88, 0.25);
      border-color: transparent;
    }

    .co-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .co-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--it-theme-1));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      box-shadow: 0 12px 30px rgba(0, 184, 148, 0.35);
      transition: var(--transition-smooth);
      flex-shrink: 0;
    }

    .co-card:hover .co-card-icon {
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 15px 35px rgba(0, 184, 148, 0.5);
    }

    .co-card-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-dark);
    }

    .co-card-body {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 0.5rem;
    }

    /* RIGHT SIDE */

    

    /* RESPONSIVE */

    @media (max-width: 1100px) {
      .co-wrapper {
        gap: 3rem;
      }
    }

    @media (max-width: 900px) {
      .co-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
      }

      

      .section-co {
        padding: 80px 5vw;
      }
    }

    @media (max-width: 640px) {
      .section-co {
        padding: 60px 4vw;
      }

      .co-heading h2 {
        font-size: 2.2rem;
      }

      .co-card {
        padding: 1.6rem 1.5rem 1.8rem;
      }

      .co-badge {
        padding: 2rem 1.5rem 2.2rem;
        border-radius: 24px;
      }

      .co-badge-logo {
        width: 110px;
        height: 110px;
      }

      

    }

    @media (max-width: 480px) {
      .co-heading h2 {
        font-size: 1.9rem;
      }

      .co-subtitle {
        font-size: 0.95rem;
      }
    }

    /* Mission Sublist */
        .vm-sublist {
            list-style: none;
            margin: var(--space-md) 0 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-left: calc(40px + var(--space-sm));
        }
        
        .vm-sublist li {
            position: relative;
            padding: var(--space-sm);
            padding-left: calc(var(--space-lg) + var(--space-sm));
            background: rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-md);
            color: var(--neutral-700);
            font-size: 1.05rem;
            line-height: 1.6;
            transition: var(--transition-fast);
            border: 1px solid transparent;
        }
        
        .vm-sublist li:hover {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(0, 0, 0, 0.2);
            transform: translateX(5px);
        }

        .ul-section {
            display: flex;
            justify-content: space-around;
        }
        
        
        /* Stats/Additional Info (Optional) */
        .vm-stats {
            display: flex;
            justify-content: center;
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: var(--space-md);
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: var(--space-xs);
        }
        
        .stat-label {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--neutral-600);
            font-weight: 600;
        }
        
        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .vm-list {
                gap: var(--space-md);
            }
            
            .vm-list > li {
                padding: var(--space-lg);
            }
        }
        
        @media (max-width: 768px) {
            .vm-section {
                padding: var(--space-xl) 0;
            }
            
            .vm-list {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .vm-title {
                margin-bottom: var(--space-lg);
            }
            
            .vm-list > li p,
            .vm-sublist {
                padding-left: 0;
            }
            
            .vm-sublist li {
                padding-left: calc(var(--space-xl) + var(--space-sm));
            }
            
            .vm-sublist li::before {
                left: var(--space-sm);
            }
            
            .vm-stats {
                gap: var(--space-lg);
                margin-top: var(--space-xl);
            }
        }
        
        @media (max-width: 640px) {
            .vm-wrapper {
                padding: 0 var(--space-md);
            }
            
            .vm-list > li {
                padding: var(--space-md);
            }
            
            .vm-list > li h3 {
                font-size: 1.5rem;
            }
            
            .vm-list > li p {
                font-size: 1rem;
            }
            
            .vm-sublist li {
                font-size: 0.95rem;
                padding: var(--space-sm);
                padding-left: calc(var(--space-lg) + var(--space-xs));
            }

            .ul-section{
               display: flex;
               flex-direction: column;
            }
            
            .stat-item {
                min-width: 120px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .vm-title {
                font-size: 2rem;
            }
            
            .vm-list > li h3 {
                font-size: 1.25rem;
            }
            
            .vm-list > li h3::before {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            
            .vm-sublist li::before {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }
            
            .vm-stats {
                flex-direction: column;
                align-items: center;
                gap: var(--space-md);
            }
        }




        



        
    /* About page - Mission and vision End */


    /*--- start of courses ---*/


      /* CSS Variables */
      :root {
         /* Color Palette */
         --primary: #006b6f;
         --primary-light: #009fa5;
         --accent: #00b894;
         --accent-hover: #00cec9;
         --dark: #1a1a2e;
         --light: #f8f9fa;
         --light-gray: #f0f2f5;
         --medium-gray: #6c757d;
         --white: #ffffff;
         
         /* Shadows & Effects */
         --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
         --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
         --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
         --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.16);
         
         /* Border Radius */
         --radius-sm: 8px;
         --radius-md: 16px;
         --radius-lg: 22px;
         --radius-pill: 50px;
         
         /* Transitions */
         --transition-fast: 0.2s ease;
         --transition-normal: 0.3s ease;
         --transition-slow: 0.4s ease;
         
         /* Spacing */
         --space-xs: 0.5rem;
         --space-sm: 1rem;
         --space-md: 1.5rem;
         --space-lg: 2rem;
         --space-xl: 3rem;
      }

      

      /* Colleges Grid */
      

      /* College Card */
      .college-card {
            background-color: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            height: 100%;
            margin-bottom: 30px;
        }

        .college-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

      /* Gradient Accent Border */
      .college-card::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 4px;
         background: linear-gradient(90deg, var(--primary), var(--accent));
         border-radius: var(--radius-lg) var(--radius-lg) 0 0;
         transition: height var(--transition-normal);
      }

      /* Subtle Inner Glow Effect */
      .college-card::after {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         border-radius: var(--radius-lg);
         box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
         pointer-events: none;
      }



      .college-body {
            padding: 25px;
        }


      .college-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
      /* Card Content */
      .card-content {
         flex: 1;
         display: flex;
         flex-direction: column;
         padding: 30px;
      }

      .college-title {
         font-size: 1.2rem;
         font-weight: 700;
         color: var(--it-theme-1);
         margin-bottom: var(--space-sm);
         text-transform: uppercase;
         letter-spacing: 0.5px;
         line-height: 1.4;
      }

      .college-description {
         color: var(--medium-gray);
         font-size: 0.95rem;
         line-height: 1.6;
         margin-bottom: var(--space-lg);
         flex: 1;
      }

      /* Button Container */
      .button-container {
         margin-top: auto;
         display: flex;
         justify-content: flex-end;
      }

      /* Hover Effects */
      .college-card:hover {
         transform: translateY(-8px);
         box-shadow: var(--shadow-hover);
      }

      .college-card:hover::before {
         height: 6px;
      }

      .know-more-btn:hover {
         transform: translateY(-2px);
         box-shadow: var(--shadow-md);
      }

      .know-more-btn:hover::before {
         transform: translateX(0);
      }

      /* Responsive Design */
      @media (max-width: 991px) {
         .colleges-grid {
               gap: var(--space-md);
         }
         
         .college-card {
               padding: var(--space-md);
         }
         
         .section-container {
               padding: var(--space-lg) 0;
         }
      }

      @media (max-width: 768px) {
         .colleges-grid {
               grid-template-columns: 1fr;
               gap: var(--space-lg);
               max-width: 600px;
               margin: 0 auto;
         }
         
         .content-wrapper {
               padding: 0 var(--space-sm);
         }
         
         .section-header {
               margin-bottom: var(--space-lg);
         }
         
         .college-title {
               font-size: 1.1rem;
         }
         
         .know-more-btn {
               width: 100%;
               justify-content: center;
               display: flex;
               align-items: center;
               padding: 1rem 2rem;
         }
         
         .button-container {
               justify-content: stretch;
         }
      }

      @media (max-width: 480px) {
         .section-container {
               padding: var(--space-md) 0;
         }
         
         .college-card {
               padding: var(--space-md) var(--space-sm);
         }
         
         .section-title {
               font-size: 1.8rem;
         }
      }

      /* Animation for card appearance */
      @keyframes fadeInUp {
         from {
               opacity: 0;
               transform: translateY(20px);
         }
         to {
               opacity: 1;
               transform: translateY(0);
         }
      }

      .college-card {
         animation: fadeInUp 0.6s ease forwards;
      }

      /* Stagger animation for cards */
      .college-card:nth-child(1) { animation-delay: 0.1s; }
      .college-card:nth-child(2) { animation-delay: 0.2s; }
      .college-card:nth-child(3) { animation-delay: 0.3s; }
      .college-card:nth-child(4) { animation-delay: 0.4s; }
      .college-card:nth-child(5) { animation-delay: 0.5s; }
      .college-card:nth-child(6) { animation-delay: 0.6s; }



    /*--- end of courses ---*/        /* Academic Portal Main Container */  

    /* Exam time table start */
        
        .academic-portal {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        /* Navigation Panel Styles */
        .nav-panel {
            background-color: #ddddddd4;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: 40%;
        }
        
        .nav-title {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-gray);
            font-size: 1.2rem;
        }










        /* Navigation Buttons */
        .nav-button {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border: none;
            border-radius: 15px;
            background: var(--it-theme-1);
            color: white;
            font-weight: 500;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-button::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: var(--it-theme-1);
            transition: width 0.3s ease;
            z-index: 0;
        }
        
        .nav-button:hover::before {
            width: 5px;
        }
        
        .nav-button:hover {
            background: rgba(255, 255, 255, 0.904);
            transform: translateX(10px);
            color: var(--it-theme-1);
        }
        
        .nav-button.active {
            background: rgba(255, 255, 255, 0.904);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            transform: translateX(10px);
            color: var(--it-theme-1);
        }
        
        .nav-button.active::before {
            width: 5px;
            background: var(--it-theme-1);
        }
        
        .nav-button i {
            margin-right: 12px;
            font-size: 1.3rem;
            z-index: 1;
        }
        
        .nav-button span {
            z-index: 1;
        }
        
        
        
        /* Content Panel Styles */
        .content-panel {
            background-color: white;
            border-radius: 12px;
            padding: 40px 35px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        /* Patterned Background */
        .content-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(255, 235, 238, 0.2) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(255, 235, 238, 0.2) 0%, transparent 20%),
                radial-gradient(circle at 50% 80%, rgba(255, 235, 238, 0.1) 0%, transparent 20%);
            background-color: white;
            z-index: 0;
            border-radius: 12px;
        }
        
        .content-panel > * {
            position: relative;
            z-index: 1;
        }
        
        .content-header {
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .content-description {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .divider {
            height: 1px;
            background-color: var(--border-gray);
            margin: 25px 0;
            width: 100%;
        }
        
        /* Notification Content Styles */
        .notification-item {
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .notification-item:last-child {
            border-bottom: none;
        }
        
        .notification-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .notification-text {
            color: var(--text-light);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .notification-date {
            color: var(--primary-red);
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* Timetable Content Styles */
        .timetable-item {
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .timetable-item:last-child {
            border-bottom: none;
        }
        
        .timetable-day {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .timetable-subject {
            color: var(--text-light);
            margin-bottom: 5px;
        }
        
        .timetable-time {
            color: var(--primary-red);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        /* Results Content Styles */
        .result-item {
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .result-item:last-child {
            border-bottom: none;
        }
        
        .result-exam {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .result-details {
            color: var(--text-light);
            margin-bottom: 8px;
        }
        
        .result-score {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 1rem;
        }
        
        /* Content Transition Effects */
        .content-section {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
        .content-section.hidden {
            opacity: 0;
            transform: translateY(10px);
            display: none;
        }
        
        .content-section.visible {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .academic-portal {
                padding: 1px;
            }
            
            .nav-panel, .content-panel {
                padding: 25px 20px;
            }
            
            .content-header {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-panel {
                margin-bottom: 20px;
            }
            
            .nav-button {
                padding: 12px 18px;
            }
            
            .content-header {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .nav-panel, .content-panel {
                padding: 20px 15px;
            }
            
            .content-header {
                font-size: 1.4rem;
            }
            
            .nav-title {
                font-size: 1.1rem;
            }
        }
        
        /* Footer Styles */
        .portal-footer {
            text-align: center;
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid var(--border-gray);
        }


    /* Exam time table end */

    /* contact start */
   
    .contact-us-item .contact-info-content h3 {
        font-size: 20px;
        font-weight:600;
        margin-bottom: 20px;
    }

    .section-title{
        margin-bottom:40px;
    }
    .text-anime-style-2 {
        font-size: 44px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .contact-us-item .contact-info-content p{
        font-size: 14px;
    }

    .contact-us-item{
        border: 1px solid #0e384c1a;
        border-radius: 30px;
        padding: 30px;
        box-shadow: 0px 4px 40px 0px #0000000F;
        margin-bottom: 30px;
        background: white;
    }

    .contact-us-item:hover{
        box-shadow: 0px 4px 40px 0px #0000001A;
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }

    .section-title p{
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    
    
        /* Sidebar Notification system working Start */
        
        .widget-container {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
        }

        .widget-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .widget-title h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .widget-title p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Notifications Widget */
        .notifications-widget {
            width: 100%;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .widget-header {
            background-color: #f1f1f1;
            padding: 16px 20px;
            border-bottom: 1px solid #ddd;
        }

        .widget-header h2 {
            color: #333;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .widget-body {
            position: relative;
            height: 190px;
            overflow: hidden;
        }

        /* Vertical Marquee Container */
        .marquee-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* Vertical Scrolling Animation */
        .marquee-content {
            position: absolute;
            width: 100%;
            animation: scrollUp 25s linear infinite;
            padding: 10px 0;
        }

        /* Pause animation on hover */
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        /* Notification Items */
        .notification-item {
            padding: 18px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            transition: background-color 0.2s;
            flex-direction: column;
        }

        .notification-item:hover {
            background-color: #f9f9f9;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: white;
            font-size: 1.2rem;
        }

        .notification-info {
            flex: 1;
        }

        .notification-title {
            color: #333;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .notification-time {
            font-size: 0.8rem;
            color: #777;
            font-weight: 400;
            margin-left: 10px;
        }

        .notification-desc {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Notification type colors */
        .icon-urgent {
            background-color: #e74c3c;
        }

        .icon-update {
            background-color: #3498db;
        }

        .icon-event {
            background-color: #2ecc71;
        }

        .icon-info {
            background-color: #f39c12;
        }

        .icon-system {
            background-color: #9b59b6;
        }

        /* Controls */
        .widget-controls {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }

        .control-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 8px 15px;
            border-radius: 4px;
            color: #333;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .control-btn:hover {
            background-color: #f1f1f1;
            border-color: #bbb;
        }

        .pause-btn {
            color: #e74c3c;
        }

        .pause-btn:hover {
            background-color: #ffeaea;
        }

        /* Demo instructions */
        .demo-instructions {
            margin-top: 30px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            border-left: 4px solid var(--it-theme-1);
        }

        .demo-instructions h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .demo-instructions p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {
            .widget-body {
                height: 280px;
            }
            
            .notification-item {
                padding: 15px;
            }
            
            .widget-title h1 {
                font-size: 1.7rem;
            }
        }
       

        
    /* Sidebar Notification system working End */