/* Start custom CSS for html, class: .elementor-element-ec33186 *//* ===================================
   WELCOME PAGE STYLING
   =================================== */

/* Main Container */
.welcome-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #720000 0%, #7c1000 50%, #d39b00 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(114, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.page-main-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sticky Navigation Sidebar */
.welcome-sidebar {
    position: sticky;
    top: 20px;
    float: left;
    width: 250px;
    margin-right: 40px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.sidebar-nav {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 15px;
    padding: 25px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.sidebar-nav a::before {
    content: '▸';
    position: absolute;
    left: 10px;
    opacity: 0;
    color: #d39b00;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: linear-gradient(90deg, rgba(114, 0, 0, 0.05) 0%, transparent 100%);
    color: #720000;
    border-left-color: #720000;
    padding-left: 35px;
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
    opacity: 1;
    left: 20px;
}

/* Main Content Area */
.welcome-main-content {
    margin-left: 290px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Content Section */
.content-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
}

.content-section:hover {
    box-shadow: 0 10px 40px rgba(114, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #720000 0%, #d39b00 50%, transparent 100%) 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Welcome Card with Photo */
.welcome-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.welcome-photo {
    flex-shrink: 0;
    width: 280px;
}

.welcome-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 4px solid #ffffff;
}

.welcome-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(114, 0, 0, 0.25);
}

.welcome-text {
    flex: 1;
}

.welcome-intro {
    font-size: 20px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Paragraphs */
.content-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Signature Block */
.signature {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(114, 0, 0, 0.05) 0%, rgba(211, 155, 0, 0.05) 100%);
    border-left: 5px solid #720000;
    border-radius: 10px;
}

.signature strong {
    font-size: 20px;
    color: #720000;
    display: block;
    margin-bottom: 5px;
}

/* History &amp; Vision Images */
.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(114, 0, 0, 0.25);
}

/* Divider */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #720000 20%, #d39b00 50%, #720000 80%, transparent 100%);
    margin: 50px 0;
    border-radius: 2px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(114, 0, 0, 0.08) 0%, rgba(211, 155, 0, 0.08) 100%);
    border-left: 6px solid #d39b00;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Stats Cards (optional enhancement) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(114, 0, 0, 0.15);
    border-color: #720000;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1024px) {
    .welcome-page-container {
        padding: 40px 15px;
    }
    
    .page-main-title {
        font-size: 40px;
    }
    
    .welcome-sidebar {
        width: 220px;
        margin-right: 30px;
    }
    
    .welcome-main-content {
        margin-left: 250px;
    }
    
    .welcome-card {
        gap: 30px;
    }
    
    .welcome-photo {
        width: 240px;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }
    
    .page-main-title {
        font-size: 32px;
    }
    
    .welcome-sidebar {
        position: static;
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .welcome-main-content {
        margin-left: 0;
    }
    
    .sidebar-nav {
        padding: 15px 0;
    }
    
    .sidebar-nav a {
        padding: 12px 20px;
    }
    
    .welcome-card {
        flex-direction: column;
        gap: 25px;
    }
    
    .welcome-photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .content-section {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .content-section p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .welcome-page-container {
        padding: 30px 10px;
    }
    
    .page-header {
        padding: 30px 15px;
    }
    
    .page-main-title {
        font-size: 24px;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .content-section p {
        font-size: 15px;
    }
    
    .welcome-intro {
        font-size: 18px;
    }
    
    .signature {
        padding: 20px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .welcome-page-container {
        padding: 20px;
    }
    
    .page-header {
        background: #720000;
        box-shadow: none;
    }
    
    .welcome-sidebar {
        display: none;
    }
    
    .welcome-main-content {
        margin-left: 0;
    }
    
    .content-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}/* End custom CSS */