/* Modern Design Override for SSVM SRIDHAM Website */
/* School Brand Colors: #0DAED3 (Blue) to #0066cc (Dark Blue) */

:root {
    --primary-blue: #0DAED3;
    --primary-dark: #0066cc;
    --gradient-primary: linear-gradient(135deg, #0DAED3 0%, #0066cc 100%);
    --gradient-hover: linear-gradient(135deg, #0066cc 0%, #0DAED3 100%);
    --text-dark: #1a1a2e;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 20px rgba(13, 174, 211, 0.15);
    --shadow-hover: 0 8px 30px rgba(13, 174, 211, 0.25);
}

/* Header Modernization */
#header-part {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
    background: #ffffff;
}

.header-top {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 12px 0;
}

.header-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top ul li {
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    margin-right: 25px;
    font-size: 13px;
}

.header-top ul li:last-child {
    margin-right: 0;
}

.header-top ul li i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.header-top p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
}

.header-top p i {
    margin-right: 8px;
}

.header-logo-support {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-logo-support .row {
    align-items: center;
}

.header-logo-support .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo-support .logo a {
    display: inline-block;
}

.header-logo-support .logo img {
    max-height: 70px;
    width: auto;
    height: auto;
}

.support-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.support-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.support-button .support {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.support-button .support .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 174, 211, 0.3);
    transition: all 0.3s ease;
}

.support-button .support:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(13, 174, 211, 0.4);
}

.support-button .support .cont {
    display: flex;
    flex-direction: column;
}

.support-button .support .cont p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 3px;
}

.support-button .support .cont span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

.support-button .button {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navigation {
    background: var(--gradient-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
    position: relative;
}

.navigation .container {
    position: relative;
}

.navigation .navbar {
    padding: 0;
    width: 100%;
    position: relative;
}

.navigation .navbar-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

@media (min-width: 992px) {
    .navigation .navbar-header {
        display: none;
    }
}

@media (max-width: 991px) {
    .navigation .navbar-header {
        display: flex;
        padding: 10px 0;
    }
}

.navigation .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

@media (max-width: 991px) {
    .navigation .navbar-collapse {
        margin-top: 10px;
    }
    
    .navigation .navbar-collapse.collapse {
        display: none;
    }
    
    .navigation .navbar-collapse.collapse.show {
        display: block !important;
    }
}

.navigation .navbar-nav .nav-item {
    position: relative;
    margin: 0;
}

.navigation .navbar-nav .nav-item > a {
    color: #ffffff !important;
    font-weight: 500;
    padding: 18px 22px !important;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navigation .navbar-nav .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.navigation .navbar-nav .nav-item > a:hover::after,
.navigation .navbar-nav .nav-item > a.active::after {
    width: 80%;
}

.navigation .navbar-nav .nav-item > a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

.navigation .navbar-nav .nav-item.active > a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.mobile-menu-toggle {
    padding: 10px 0;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: none;
    margin-left: auto;
    order: 2;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.navbar-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Submenu Toggler Button Styling */
.sub-nav-toggler {
    background: transparent;
    border: none;
    color: #ffffff;
    float: right;
    padding: 0 5px;
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    outline: none;
}

.sub-nav-toggler:hover {
    color: #ffffff;
}

/* Desktop: Hide toggle button */
@media (min-width: 992px) {
    .sub-nav-toggler {
        display: none !important;
    }
}

/* Mobile: Show and style toggle button */
@media (max-width: 991px) {
    .sub-nav-toggler {
        display: inline-block;
    }
    
    .sub-nav-toggler.active {
        transform: rotate(180deg);
    }
}

/* Desktop: Show submenu on hover */
@media (min-width: 992px) {
    .sub-menu-bar .navbar-nav .nav-item {
        position: relative;
    }
    
    .sub-menu-bar .navbar-nav .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 220px;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 8px 0;
        margin-top: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .sub-menu-bar .navbar-nav .nav-item:hover .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideDown 0.3s ease;
    }
    
    .sub-menu-bar .navbar-nav .sub-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile: Toggle submenu on click */
@media (max-width: 991px) {
    .sub-menu-bar .navbar-nav .sub-menu {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .sub-menu-bar .navbar-nav .sub-menu.show {
        display: block;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submenu Styling - Desktop */
@media (min-width: 992px) {
    .sub-menu {
        background: #ffffff !important;
        border-radius: 8px;
        box-shadow: var(--shadow);
        border: none;
        padding: 8px 0;
        margin-top: 0;
        list-style: none;
    }
    
    .sub-menu li {
        margin: 0;
        padding: 0;
    }
    
    .sub-menu li a {
        color: var(--text-dark) !important;
        padding: 12px 25px !important;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
        font-size: 13px;
        font-weight: 400;
        border-left: 3px solid transparent;
    }
    
    .sub-menu li a:hover {
        background: var(--gradient-primary);
        color: #ffffff !important;
        padding-left: 30px;
        border-left-color: #ffffff;
    }
}

/* Submenu Styling - Mobile */
@media (max-width: 991px) {
    .sub-menu {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0;
        margin-left: 20px;
        list-style: none;
    }
    
    .sub-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sub-menu li:last-child {
        border-bottom: none;
    }
    
    .sub-menu li a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 12px 20px 12px 40px !important;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
        font-size: 13px;
        font-weight: 400;
        border-left: 3px solid transparent;
    }
    
    .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        padding-left: 45px !important;
        border-left-color: #ffffff;
    }
}

/* Buttons */
.main-btn {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.main-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #ffffff;
}

/* Page Banner */
#page-banner {
    position: relative;
    overflow: hidden;
}

#page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.85;
    z-index: 1;
}

#page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-cont h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-block;
}

.breadcrumb-item a {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Titles */
.section-title h5 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* About Section */
#about-part {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 500px;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.about-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-cont {
    position: relative;
    z-index: 1;
}

.about-cont p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-event {
    position: relative;
    z-index: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.event-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-blue);
}

.event-title h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-event ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-event ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-event ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.singel-event {
    position: relative;
}

.singel-event span {
    display: block;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.singel-event span i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.singel-event h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.singel-event h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singel-event h4 a:hover {
    color: var(--primary-blue);
}

.singel-event p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Course Section - Redesigned */
#course-part {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#course-part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13,174,211,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

#course-part .container {
    position: relative;
    z-index: 1;
}

.section-title.text-center {
    text-align: center;
}

.section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
    font-style: italic;
}

.course-slied {
    margin-top: 50px;
    position: relative;
}

.course-slied .col-lg-4 {
    margin-bottom: 30px;
}

/* Course Slider Arrows */
.course-slied .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #0dafd3;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0;
    line-height: 0;
}

.course-slied .slick-arrow:hover {
    background: #0dafd3;
    border-color: #0dafd3;
    box-shadow: 0 6px 20px rgba(13, 175, 211, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.course-slied .slick-arrow i {
    font-size: 20px;
    color: #0dafd3;
    line-height: 1;
}

.course-slied .slick-arrow:hover i {
    color: #ffffff;
}

.course-slied .slick-prev {
    left: -25px;
}

.course-slied .slick-next {
    right: -25px;
}

.course-slied .slick-arrow::before {
    display: none;
}

.course-slied .prev,
.course-slied .next {
    font-size: 0;
    line-height: 0;
}

.course-slied .prev i,
.course-slied .next i {
    display: block;
}

/* Modern Course Cards */
.singel-course {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.singel-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.singel-course:hover::before {
    transform: scaleX(1);
}

.singel-course:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 174, 211, 0.25);
}

.singel-course .thum {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.singel-course .thum .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.singel-course .thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.singel-course:hover .thum img {
    transform: scale(1.15) rotate(2deg);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 174, 211, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.singel-course:hover .course-overlay {
    opacity: 1;
}

.overlay-content {
    color: #ffffff;
    font-size: 48px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.singel-course:hover .overlay-content {
    transform: scale(1) rotate(360deg);
}

.overlay-content i {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.singel-course .cont {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: relative;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(13, 174, 211, 0.3);
}

.course-badge i {
    font-size: 14px;
}

.singel-course .cont h4 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.singel-course .cont h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singel-course:hover .cont h4 a {
    color: var(--primary-blue);
}

.singel-course .course-teacher {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.singel-course .course-teacher .name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.singel-course .course-teacher .name i {
    color: var(--primary-blue);
    font-size: 16px;
}

.singel-course .course-teacher .name h6 {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.singel-course .course-teacher .name h6 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singel-course .course-teacher .name h6 a:hover {
    color: var(--primary-blue);
}

.course-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.course-btn i {
    transition: transform 0.3s ease;
}

.course-btn:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.course-btn:hover i {
    transform: translateX(5px);
}

.singel-teachers,
.singel-event {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.singel-teachers:hover,
.singel-event:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.singel-teachers .image img {
    transition: transform 0.3s ease;
}

.singel-teachers:hover .image img {
    transform: scale(1.1);
}

/* Forms */
.form-group input,
.form-group textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 174, 211, 0.1);
    outline: none;
}

/* Footer */
#footer-part {
    background: var(--text-dark);
    color: #ffffff;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
}

#footer-part::after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
}

.footer-top {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 0 0;
    margin-bottom: 0;
}

.footer-top .row {
    align-items: flex-start;
}

.footer-about,
.footer-link,
.footer-address {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-about .logo img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-about .logo:hover img {
    transform: scale(1.05);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: justify;
    flex: 1;
}

.footer-about .mt-20 {
    margin-top: 20px;
}

.social-section {
    margin-top: 25px;
}

.social-title {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about .social-links,
.footer-about ul.mt-20 {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-about .social-links li,
.footer-about ul.mt-20 li {
    margin: 0;
}

.footer-about .social-links li a,
.footer-about ul.mt-20 li a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.footer-about .social-links li a:hover,
.footer-about ul.mt-20 li a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(13, 174, 211, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-link {
    margin-bottom: 0;
}

.footer-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(13, 174, 211, 0.3);
}

.footer-title h6 {
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link ul li {
    margin-bottom: 12px;
}

.footer-link ul li:last-child {
    margin-bottom: 0;
}

.footer-link ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.footer-link ul li a i {
    margin-right: 8px;
    color: var(--primary-blue);
    font-size: 12px;
}

.footer-link ul li a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-address {
    position: relative;
}

.footer-address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-address ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-address ul li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-address ul li:last-child {
    margin-bottom: 0;
}

.footer-address ul li .icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 174, 211, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-address ul li:hover .icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.footer-address ul li .cont {
    flex: 1;
}

.footer-address ul li .cont p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
}

.footer-address ul li .cont a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-address ul li .cont a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-address .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-address .contact-item {
    display: block;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-address .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-address .contact-item:last-child {
    margin-bottom: 0;
}

.footer-address .contact-item .cont {
    width: 100%;
}

.footer-address .contact-item .contact-label {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-top: 0;
}

.footer-address .contact-item .cont p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
}

.footer-address .contact-item .contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-address .contact-item .contact-link:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
    text-decoration: none;
}

.footer-copyright {
    background: #0f0f1e;
    border-top: 2px solid rgba(13, 174, 211, 0.2);
    padding: 25px 0 25px 0;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright .container {
    padding: 0 15px;
}

.footer-copyright .copyright {
    margin: 0;
    padding: 0;
}

.footer-copyright .copyright p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}

.footer-copyright .copyright a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright .copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}

#copyright-year {
    font-weight: 600;
}

/* Apply Sections */
#apply-aprt {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.apply {
    position: relative;
}

.apply .row {
    margin: 0;
}

.apply-cont {
    padding: 50px 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.apply-cont::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
}

.apply-cont > * {
    position: relative;
    z-index: 1;
}

.apply-cont:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apply-color-1 {
    background: var(--gradient-primary) !important;
    color: #ffffff;
    border-radius: 12px 0 0 12px;
}

.apply-color-2 {
    background: linear-gradient(135deg, #0066cc 0%, #0DAED3 100%) !important;
    color: #ffffff;
    border-radius: 0 12px 12px 0;
}

.apply-cont h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.apply-cont p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.apply-cont .main-btn {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.apply-cont .main-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Counter Section */
#counter-part {
    background-attachment: fixed;
}

.singel-counter span {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
}

.singel-counter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Slider */
#slider-part {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider-active {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.slider-active .slick-list,
.slider-active .slick-track {
    width: 100%;
    height: 100%;
}

.slider-active .slick-slide {
    width: 100%;
    height: auto;
}

.single-slider {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 150px 0 100px 0;
    width: 100%;
    overflow: hidden;
}

.single-slider.bg_cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Responsive Background Images */
@media (max-width: 1400px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 1200px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
        min-height: 550px;
    }
}

@media (max-width: 991px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
        min-height: 500px;
        padding: 120px 0 80px 0;
    }
}

@media (max-width: 768px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
        min-height: 450px;
        padding: 100px 0 60px 0;
    }
}

@media (max-width: 576px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
        min-height: 400px;
        padding: 80px 0 50px 0;
    }
}

@media (max-width: 480px) {
    .single-slider {
        background-size: cover;
        background-position: center center;
        min-height: 350px;
        padding: 60px 0 40px 0;
    }
}

/* Ensure images load properly on all devices */
.single-slider[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .single-slider {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .single-slider {
        min-height: 350px;
        padding: 60px 0 40px 0;
    }
}

/* Portrait orientation on mobile */
@media (max-width: 768px) and (orientation: portrait) {
    .single-slider {
        min-height: 450px;
        padding: 100px 0 60px 0;
    }
}

/* Prevent image distortion */
.single-slider {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.single-slider[data-overlay]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.single-slider[data-overlay="4"]::before {
    background: rgba(0, 0, 0, 0.4);
}

.slider-cont {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.slider-cont h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-cont p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

/* Slider Navigation Arrows */
.slider-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-active .slick-arrow:hover {
    background: var(--gradient-primary);
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-active .slick-prev {
    left: 30px;
}

.slider-active .slick-next {
    right: 30px;
}

/* Slider Dots */
.slider-active .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-active .slick-dots li {
    margin: 0;
}

.slider-active .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
}

.slider-active .slick-dots li.slick-active button,
.slider-active .slick-dots li button:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Support Button in Header */
.support-button .main-btn {
    padding: 10px 25px;
    font-size: 13px;
}

/* Contact Address Icons */
.singel-address .icon {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

/* Notice Board */
.about-event {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.event-title h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
}

.singel-event span {
    color: var(--primary-blue);
    font-weight: 600;
}

.singel-event h4 {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.singel-event:hover h4 {
    color: var(--primary-blue);
}

/* Additional Page-Specific Enhancements */
.events-left h3,
.events-area h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
}

.events-left p,
.events-area p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.events-left ul li,
.events-area ul li {
    color: var(--text-light);
    line-height: 2;
    font-size: 16px;
    margin-bottom: 10px;
}

.events-left ul li i,
.events-area ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
}

kbd {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
}

em {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Shop/PDF Grid */
.shop-product {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.shop-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 50px 0 0 0;
    }
    
    .footer-copyright {
        padding: 18px 0 0 0;
    }
    
    .footer-about .logo {
        margin-bottom: 20px;
    }
    
    .footer-about .logo img {
        max-height: 60px;
    }
    
    .footer-about p {
        font-size: 13px;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .social-section {
        margin-top: 20px;
    }
    
    .social-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-about .social-links {
        gap: 10px;
    }
    
    .footer-about .social-links li a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-title {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .footer-title h6 {
        font-size: 16px;
    }
    
    .footer-link ul li {
        margin-bottom: 10px;
    }
    
    .footer-link ul li a {
        font-size: 13px;
    }
    
    .footer-address .contact-item {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .footer-address .contact-item .contact-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-address .contact-item .cont p {
        font-size: 13px;
    }
    
    .footer-copyright {
        padding: 20px 0 20px 0;
    }
    
    .footer-copyright .copyright {
        padding: 0;
    }
    
    .footer-copyright .copyright p {
        font-size: 13px;
    }
    
    #about-part {
        padding: 60px 0;
    }
    
    .about-event {
        margin-top: 30px;
        padding: 25px;
    }
    
    .about-bg {
        width: 50%;
        opacity: 0.08;
    }
    
    #apply-aprt {
        padding: 60px 0;
    }
    
    .apply-cont {
        padding: 40px 30px;
        min-height: 280px;
    }
    
    .apply-cont h3 {
        font-size: 24px;
    }
    
    .apply-cont p {
        font-size: 15px;
    }
    
    .apply-color-1 {
        border-radius: 12px 12px 0 0 !important;
    }
    
    .apply-color-2 {
        border-radius: 0 0 12px 12px !important;
    }
    
    #course-part {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .course-slied {
        margin-top: 40px;
    }
    
    .course-slied .col-lg-4 {
        margin-bottom: 25px;
    }
    
    .course-slied .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .course-slied .slick-prev {
        left: -20px;
    }
    
    .course-slied .slick-next {
        right: -20px;
    }
    
    .singel-course {
        border-radius: 16px;
    }
    
    .singel-course .cont {
        padding: 25px;
    }
    
    .singel-course .cont h4 {
        font-size: 20px;
    }
    
    .overlay-content {
        font-size: 40px;
    }
    
    .footer-top {
        padding: 50px 0 30px 0;
    }
    
    .footer-about,
    .footer-link,
    .footer-address {
        margin-bottom: 40px;
        height: auto;
    }
    
    .footer-about:last-child,
    .footer-link:last-child,
    .footer-address:last-child {
        margin-bottom: 0;
    }
    
    .footer-address ul li {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .footer-address ul li .icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-right: 12px;
    }
}

@media (max-width: 768px) {
    #about-part {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-cont p {
        font-size: 14px;
        text-align: left;
    }
    
    .about-event {
        padding: 20px;
        margin-top: 30px;
    }
    
    .event-title h3 {
        font-size: 20px;
    }
    
    .singel-event h4 {
        font-size: 16px;
    }
    
    .singel-event p {
        font-size: 13px;
    }
    
    .about-bg {
        display: none;
    }
    
    .footer-top {
        padding: 40px 0 0 0;
    }
    
    .footer-copyright {
        padding: 18px 0 18px 0;
    }
    
    .footer-copyright .copyright {
        padding: 0;
    }
    
    .footer-about .logo {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-about .logo img {
        max-height: 50px;
    }
    
    .footer-about p {
        font-size: 12px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .social-section {
        margin-top: 20px;
        text-align: center;
    }
    
    .social-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-about .social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-about .social-links li a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-title {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-title h6 {
        font-size: 15px;
    }
    
    .footer-link ul li {
        margin-bottom: 8px;
    }
    
    .footer-link ul li a {
        font-size: 12px;
    }
    
    .footer-address ul li {
        margin-bottom: 15px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-address ul li .icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-address ul li .cont {
        text-align: center;
    }
    
    .footer-address ul li .cont p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .footer-address ul li:hover {
        transform: translateX(0);
    }
    
    .footer-address .contact-item {
        margin-bottom: 18px;
        padding: 15px;
        text-align: left;
    }
    
    .footer-address .contact-item .cont {
        text-align: left;
    }
    
    .footer-address .contact-item .contact-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-address .contact-item .cont p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .footer-address .contact-item:hover {
        transform: translateX(3px);
    }
    
    .footer-copyright {
        padding: 15px 0 15px 0;
    }
    
    .footer-copyright .copyright {
        padding: 0;
    }
    
    .footer-copyright .copyright p {
        font-size: 12px;
    }
    
    #apply-aprt {
        padding: 50px 0;
    }
    
    .apply-cont {
        padding: 35px 25px;
        min-height: 250px;
    }
    
    .apply-cont h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .apply-cont p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .apply-cont .main-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    #course-part {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .course-slied {
        margin-top: 30px;
    }
    
    .course-slied .col-lg-4 {
        margin-bottom: 20px;
    }
    
    .course-slied .slick-arrow {
        display: none !important;
    }
    
    .singel-course {
        border-radius: 16px;
    }
    
    .singel-course:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .singel-course .thum {
        padding-top: 70%;
    }
    
    .singel-course .cont {
        padding: 20px;
    }
    
    .singel-course .cont h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .course-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .overlay-content {
        font-size: 36px;
    }
    
    .singel-course .course-teacher .name h6 {
        font-size: 13px;
    }
    
    .course-btn {
        font-size: 13px;
    }
    
    .footer-top {
        padding: 40px 0 30px 0;
    }
    
    .footer-title h6 {
        font-size: 16px;
    }
    
    .footer-about p {
        font-size: 13px;
    }
    
    .footer-link ul li a {
        font-size: 13px;
    }
    
    .footer-address ul li .cont p {
        font-size: 13px;
    }
    
    .footer-copyright .copyright p {
        font-size: 12px;
    }
    
    #bottom5 h1 {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* Responsive Improvements */
@media (max-width: 991px) {
    .header-logo-support {
        padding: 15px 0;
    }
    
    .header-logo-support .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .header-logo-support .logo img {
        max-height: 60px;
    }
    
    .support-button-wrapper {
        justify-content: flex-end;
    }
    
    .support-button {
        gap: 15px;
    }
    
    .support-button .support {
        gap: 12px;
    }
    
    .support-button .support .icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .support-button .support .cont span {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .slider-cont h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .slider-cont p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .slider-active .slick-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-active .slick-prev {
        left: 10px;
    }
    
    .slider-active .slick-next {
        right: 10px;
    }
    
    .slider-active .slick-dots {
        bottom: 15px;
    }
    
    .slider-active .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    
    .page-banner-cont h2 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .slider-cont h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .slider-cont p {
        font-size: 16px;
    }
    
    .single-slider {
        min-height: 450px;
        padding: 100px 0 60px 0;
    }
    
    .slider-active .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-active .slick-prev {
        left: 15px;
    }
    
    .slider-active .slick-next {
        right: 15px;
    }
    
    .slider-active .slick-dots {
        bottom: 20px;
    }
    
    .navbar-nav .nav-item > a {
        padding: 12px 15px !important;
    }
    
    .header-top ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .header-top ul li:last-child {
        margin-bottom: 0;
    }
    
    .header-contact,
    .header-opening-time {
        text-align: center !important;
    }
    
    .support-button-wrapper {
        justify-content: flex-end;
    }
    
    .header-logo-support .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .header-logo-support .logo img {
        max-height: 50px;
    }
    
    .mobile-menu-toggle {
        justify-content: flex-end;
    }
    
    .navigation .navbar-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 10px 0;
        width: 100%;
    }
    
    .navigation .navbar-toggler {
        display: block !important;
        margin-left: auto;
        margin-right: 0;
        order: 2;
    }
    
    .navigation .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .navigation .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navigation .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navigation .navbar-nav .nav-item > a {
        width: 100%;
        text-align: left;
        padding: 15px 20px !important;
    }
    
    .navigation .navbar-nav .nav-item > a::after {
        display: none;
    }
    
    .sub-menu-bar .navbar-nav .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
    }
    
    .sub-menu li a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding-left: 40px !important;
    }
    
    .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        padding-left: 45px !important;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.singel-course,
.singel-teachers,
.singel-event {
    animation: fadeInUp 0.6s ease-out;
}

/* Bottom Banner (Admission Open) */
#bottom5 {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    padding: 18px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

#bottom5 .container {
    max-width: 100%;
}

#bottom5 h1 {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#bottom5-stuff {
    height: 0;
}

/* Update body padding to account for fixed bottom banner */
body {
    padding-bottom: 0;
    margin-bottom: 0;
}

html {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: #ffffff;
}

/* Gray Background Sections */
.gray-bg {
    background: var(--bg-light) !important;
}

/* Teachers Section */
.teachers-cont p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Gallery Grid Improvements */
#teachers-page .singel-teachers {
    margin-bottom: 30px;
}

#teachers-page .singel-teachers .image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

#teachers-page .singel-teachers .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Form Enhancements */
.contact-from {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-address {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Logo Styling */
.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Facilities Page */
#facilities-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#facilities-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13, 175, 211, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

#facilities-page .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 15px;
    font-style: italic;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Facility Cards */
.facility-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 174, 211, 0.25);
}

.facility-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 70%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facility-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.facility-card:hover .facility-image img {
    transform: scale(1.15) rotate(2deg);
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 174, 211, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

.overlay-icon {
    color: #ffffff;
    font-size: 48px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-card:hover .overlay-icon {
    transform: scale(1);
}

.facility-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-content h4 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.facility-card:hover .facility-content h4 {
    color: var(--primary-blue);
}

.facility-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Styles for Facilities */
@media (min-width: 1200px) {
    .facility-content p {
        -webkit-line-clamp: 7;
    }
}

@media (max-width: 1199px) {
    .facility-content {
        padding: 22px 18px;
    }
    
    .facility-content h4 {
        font-size: 18px;
    }
    
    .facility-content p {
        font-size: 13px;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 991px) {
    #facilities-page {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .mb-60 {
        margin-bottom: 40px;
    }
    
    .facility-card {
        border-radius: 16px;
        margin-bottom: 25px;
    }
    
    .facility-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .facility-image {
        padding-top: 60%;
    }
    
    .facility-content {
        padding: 25px;
    }
    
    .facility-content h4 {
        font-size: 22px;
    }
    
    .facility-content p {
        font-size: 14px;
        -webkit-line-clamp: 6;
    }
    
    .overlay-icon {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    #facilities-page {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .mb-60 {
        margin-bottom: 30px;
    }
    
    .facility-card {
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .facility-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .facility-image {
        padding-top: 65%;
    }
    
    .facility-content {
        padding: 20px;
    }
    
    .facility-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .facility-content p {
        font-size: 14px;
        line-height: 1.7;
        -webkit-line-clamp: 5;
    }
    
    .overlay-icon {
        font-size: 40px;
    }
}

/* Fee Details Page */
#fee-details-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#fee-details-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13, 175, 211, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

#fee-details-page .container {
    position: relative;
    z-index: 1;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

/* Fee Notice Card */
.fee-notice-card {
    background: linear-gradient(135deg, rgba(13, 174, 211, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fee-notice-card:hover {
    box-shadow: 0 6px 25px rgba(13, 174, 211, 0.15);
    transform: translateY(-2px);
}

.fee-notice-card .notice-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 174, 211, 0.3);
}

.fee-notice-card .notice-content h6 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fee-notice-card .notice-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Fee Table */
.fee-table-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fee-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.fee-table thead {
    background: var(--gradient-primary);
}

.fee-table thead th {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 25px;
    text-align: left;
    border: none;
    white-space: nowrap;
}

.fee-table thead th:first-child {
    border-top-left-radius: 12px;
}

.fee-table thead th:last-child {
    border-top-right-radius: 12px;
}

.fee-table tbody tr {
    background: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.fee-table tbody tr:hover {
    background: rgba(13, 174, 211, 0.05);
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fee-table tbody tr:last-child {
    border-bottom: none;
}

.fee-table tbody td {
    padding: 18px 25px;
    color: var(--text-dark);
    font-size: 15px;
    vertical-align: middle;
    border: none;
}

.fee-table tbody td:first-child {
    font-weight: 600;
}

.installment-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(13, 174, 211, 0.3);
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #f57c00;
}

.status-badge.paid {
    background: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
}

.status-badge.overdue {
    background: rgba(244, 67, 54, 0.15);
    color: #c62828;
}

/* Payment Option Cards */
.payment-option-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
}

.payment-option-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 174, 211, 0.25);
    border-color: var(--primary-blue);
}

.payment-option-card .option-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(13, 174, 211, 0.3);
    transition: all 0.3s ease;
}

.payment-option-card:hover .option-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(13, 174, 211, 0.4);
}

.payment-option-card h5 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-option-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles for Fee Details */
@media (max-width: 991px) {
    #fee-details-page {
        padding: 80px 0;
    }
    
    .fee-notice-card {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .fee-notice-card .notice-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .fee-table-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    
    .fee-table thead th {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .fee-table tbody td {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .payment-option-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    #fee-details-page {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .fee-notice-card {
        padding: 18px 20px;
    }
    
    .fee-notice-card .notice-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .fee-table-wrapper {
        padding: 15px;
        border-radius: 12px;
    }
    
    .fee-table thead th {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .fee-table tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .installment-badge,
    .status-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .payment-option-card {
        padding: 25px 20px;
    }
    
    .payment-option-card .option-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .payment-option-card h5 {
        font-size: 20px;
    }
    
    .payment-option-card p {
        font-size: 14px;
    }
}

/* Contact Page */
#contact-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13, 175, 211, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

#contact-page .container {
    position: relative;
    z-index: 1;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(13, 174, 211, 0.1);
}

.contact-form-header h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.contact-form-body .form-group {
    margin-bottom: 0;
}

.contact-form-body label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.contact-form-body .required {
    color: #e74c3c;
}

.contact-form-body .form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-dark);
}

.contact-form-body .form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 174, 211, 0.1);
}

.contact-form-body textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-body .main-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
}

.contact-form-body .main-btn i {
    margin-right: 8px;
}

.form-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(13, 174, 211, 0.15);
    border-left-color: var(--primary-blue);
}

.contact-info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 174, 211, 0.3);
}

.contact-info-card .info-content h5 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card .info-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.contact-info-card .info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card .info-content a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Map Wrapper */
.map-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#contact-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    #contact-page {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .contact-form-header h3 {
        font-size: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-card .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    #contact-map {
        height: 350px;
    }
}

@media (max-width: 767px) {
    #contact-page {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .contact-form-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .contact-form-header h3 {
        font-size: 22px;
    }
    
    .contact-form-header p {
        font-size: 14px;
    }
    
    .contact-form-body .form-control {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .contact-form-body label {
        font-size: 13px;
    }
    
    .contact-info-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-card .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info-card .info-content {
        text-align: center;
    }
    
    #contact-map {
        height: 300px;
    }
}
