.elementor-922 .elementor-element.elementor-element-c545319{--display:flex;--margin-top:90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-922 .elementor-element.elementor-element-93aa462{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-922 .elementor-element.elementor-element-c545319{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-fa024d0 *//* Course Delivery Policy Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-brand p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #000000);
    border-radius: 2px;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.delivery-section {
    margin-bottom: 2.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #dc2626;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.delivery-section:nth-child(even) {
    border-left-color: #000000;
}

.delivery-section:nth-child(even)::before {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
}

.delivery-section h2 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.delivery-section h2::before {
    content: '📚';
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.delivery-section:nth-child(even) h2::before {
    content: '🎯';
}

.delivery-section:nth-child(4n) h2::before {
    content: '⚡';
}

.delivery-section:nth-child(3n) h2::before {
    content: '🌟';
}

.delivery-section h3 {
    color: #dc2626;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    position: relative;
}

.delivery-section h3::before {
    content: '▲';
    color: #dc2626;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.delivery-section p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.delivery-section ul {
    margin: 1.2rem 0;
    padding-left: 0;
}

.delivery-section li {
    margin-bottom: 1rem;
    color: #444;
    position: relative;
    padding-left: 2rem;
    list-style: none;
}

.delivery-section li::before {
    content: '✓';
    color: #dc2626;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(220, 38, 38, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.delivery-section strong {
    color: #dc2626;
    font-weight: 600;
}

/* Special styling for important sections */
.delivery-section:first-child {
    border-left-color: #dc2626;
    border-left-width: 6px;
}

.delivery-section:first-child h2 {
    color: #dc2626;
}

/* Contact section special styling */
.delivery-section:last-child {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-left: none;
}

.delivery-section:last-child h2,
.delivery-section:last-child h3,
.delivery-section:last-child p,
.delivery-section:last-child li,
.delivery-section:last-child strong {
    color: white;
}

.delivery-section:last-child h3::before {
    color: white;
}

.delivery-section:last-child li::before {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: #dc2626;
    transform: translateX(5px);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .page-title {
        font-size: 2rem;
    }

    .delivery-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .delivery-section h2 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .delivery-section {
        padding: 1rem;
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    .nav-brand p {
        font-size: 0.8rem;
    }

    .delivery-section h2::before {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }

    .delivery-section li {
        padding-left: 1.5rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes slideInFromLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInFromRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.delivery-section:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out;
}

.delivery-section:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

.delivery-section:nth-child(1) { animation-delay: 0.1s; }
.delivery-section:nth-child(2) { animation-delay: 0.2s; }
.delivery-section:nth-child(3) { animation-delay: 0.3s; }
.delivery-section:nth-child(4) { animation-delay: 0.4s; }
.delivery-section:nth-child(5) { animation-delay: 0.5s; }

/* Hover effects */
.delivery-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Progress bar animation */
@keyframes progressLoad {
    from { width: 0%; }
    to { width: 100%; }
}

/* Print styles */
@media print {
    .header, .footer, .progress-bar {
        display: none;
    }
    
    .main-content {
        padding: 0;
        background: white;
    }
    
    .delivery-section {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .delivery-section::before {
        display: none;
    }
}/* End custom CSS */