.elementor-30 .elementor-element.elementor-element-0b2ed15{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-30 .elementor-element.elementor-element-588e765{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-30 .elementor-element.elementor-element-6843b4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30 .elementor-element.elementor-element-bff0f48{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30 .elementor-element.elementor-element-7adac40{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30 .elementor-element.elementor-element-82bf6a2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30 .elementor-element.elementor-element-15cb499 .tpg-el-main-wrapper .tpg-el-image-wrap img{width:inherit;}.elementor-30 .elementor-element.elementor-element-15cb499 .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap img{object-position:inherit;}.elementor-30 .elementor-element.elementor-element-15cb499 .tpg-el-main-wrapper .rt-holder:hover .tpg-el-image-wrap img{object-position:inherit;}.elementor-30 .elementor-element.elementor-element-15cb499 .rt-tpg-container .tpg-post-holder .rt-detail .read-more a{border-style:solid;border-width:1px 1px 1px 1px;border-color:#D4D4D4;}body .elementor-30 .elementor-element.elementor-element-15cb499 .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover{border-style:solid;border-width:1px 1px 1px 1px;border-color:#7a64f2;}/* Start custom CSS for html, class: .elementor-element-588e765 *//* Variables for Easy Modification */
:root {
    --primary-color: #4A90E2;
    --accent-color: #ffffff;
    --text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    --animation-speed: 12s; /* Total time for one full cycle of images */
}

.school-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Forces full width in Elementor */
    height: 70vh; /* Minimal height - adjust as needed */
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Background Image Logic & Animation */
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    animation: imageFade var(--animation-speed) infinite;
}

/* Replace URLs with your actual school photos */
.bg-1 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://galkot.edu.np/wp-content/uploads/2026/02/gss-school.jpg'); animation-delay: 0s; }
.bg-2 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://galkot.edu.np/wp-content/uploads/2026/02/4e1780fb-9213-4e68-8d07-165ac5af8f451.jpg'); animation-delay: 4s; }
.bg-3 { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://galkot.edu.np/wp-content/uploads/2026/02/Science-lab.jpg'); animation-delay: 8s; }

@keyframes imageFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

/* Content Styling */
.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin: 15px 0;
    text-shadow: var(--text-shadow);
    color: #FFD700;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Elegant Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary {
    background: white;
    color: #333;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .school-hero { height: 60vh; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 80%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-01e3000 */:root {
    --primary-dark: #1A237E;
    --accent-gold: #C5A022;
    --bg-light: #ffffff;
}

.message-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.message-container {
    max-width: 1100px;
    margin: 0 auto;
}

.message-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.principal-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Content Styling */
.quote-icon {
    font-size: 8rem;
    color: rgba(26, 35, 126, 0.05);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
}

.message-content {
    position: relative;
}

.message-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.message-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.message-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.principal-signature {
    margin-top: 40px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
}

.principal-signature .name {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.principal-signature .designation {
    color: #888;
    font-size: 0.9rem;
}

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Elementor trigger class (or simple CSS reveal) */
.message-section:hover .animate-on-scroll,
.message-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .message-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .principal-signature {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .experience-badge {
        right: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d44821 */:root {
    --notice-primary: #1A237E;
    --notice-accent: #FF5252;
    --notice-bg: #f4f7fe;
    --text-dark: #2d3436;
}

.notice-board {
    padding: 60px 5%;
    background-color: white;
}

.notice-container {
    max-width: 900px;
    margin: 0 auto;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--notice-bg);
    padding-bottom: 15px;
}

.header-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-text h2 {
    margin: 0;
    color: var(--notice-primary);
    font-size: 1.8rem;
}

/* Red Pulse Animation */
.pulse-icon {
    width: 12px;
    height: 12px;
    background: var(--notice-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 82, 82, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 82, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0); }
}

.view-all {
    text-decoration: none;
    color: var(--notice-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Notice Cards */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notice-card {
    display: flex;
    background: var(--notice-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.notice-card:hover {
    transform: scale(1.02);
    background: #ebf0ff;
    border-left-color: var(--notice-primary);
}

.notice-card.new {
    border-left-color: var(--notice-accent);
}

/* Date Box */
.notice-date {
    background: var(--notice-primary);
    color: white;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.notice-date .day { font-size: 1.5rem; font-weight: 800; }
.notice-date .month { font-size: 0.8rem; text-transform: uppercase; opacity: 0.8; }

/* Content Area */
.notice-content {
    padding: 20px;
    flex-grow: 1;
}

.notice-content h4 {
    margin: 0 0 8px 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.notice-content p {
    margin: 0;
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
}

.badge {
    background: var(--notice-accent);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.notice-footer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--notice-primary);
    text-decoration: none;
    font-weight: 700;
}

.category {
    font-size: 0.75rem;
    background: #dfe6e9;
    padding: 3px 10px;
    border-radius: 10px;
    color: #2d3436;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .notice-card { flex-direction: column; }
    .notice-date { flex-direction: row; gap: 10px; min-width: auto; padding: 10px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-620f528 */:root {
    --primary-blue: #1A237E;
    --accent-green: #4CAF50;
    --soft-gray: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.programs-section {
    padding: 80px 5%;
    background-color: var(--soft-gray);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.programs-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 10px 0;
}

/* Grid Layout */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Styling */
.program-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Background Images for Cards */
.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.bg-plant { background-image: url('https://galkot.edu.np/wp-content/uploads/2026/02/plant-science.png'); }
.bg-computer { background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=800'); }
.bg-science { background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?q=80&w=800'); }

.card-content {
    padding: 30px;
    position: relative;
}

.faculty-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-content h3 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent-green);
}

.read-more span {
    transition: transform 0.3s;
}

.read-more:hover span {
    transform: translateX(5px);
}

/* Mobile Layout */
@media (max-width: 768px) {
    .programs-header h2 { font-size: 2rem; }
    .programs-grid { grid-template-columns: 1fr; }
}/* End custom CSS */