 /* ===== BASE RESPONSIVE LAYOUT ===== */
 @media (max-width: 991.98px) {

     /* Base layout fixes */
     html,
     body {
         overflow-x: hidden !important;
         max-width: 100vw;
         width: 100%;
         box-sizing: border-box;
         -webkit-overflow-scrolling: touch;
         touch-action: pan-y;
     }

     /* Prevent horizontal overflow on main containers */
     #smooth-wrapper,
     .container,
     .ed-container,
     .row {
         max-width: 100%;
         width: 100%;
         overflow-x: hidden !important;
     }

     /* Responsive images and embedded media */
     img,
     video,
     iframe {
         max-width: 100%;
         height: auto;
         display: block;
     }

     /* Hide desktop elements */
     .ed-topbar,
     .ed-header {
         display: none !important;
     }

     /* Show mobile elements */
     .mobile-topbar {
         display: block !important;
         background: #ffffff;
         border-bottom: 1px solid #e9ecef;
         box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
         position: sticky;
         top: 0;
         z-index: 1000;
         min-height: 60px;
         padding: 10px 0;
     }

     /* Hide all search forms on mobile */
     .ed-topbar__search-widget,
     .mobile-topbar .row:last-child,
     .mobile-topbar form[action*="courses.search"],
     .mobile-topbar input[type="search"],
     .mobile-topbar .btn:has(i.fi-rr-search),
     .mobile-topbar button:has(i[class*="search"]) {
         display: none !important;
     }
 }

 /* ===== LOGO STYLING ===== */
 .ed-topbar__logo img {
     max-width: 230px !important;
     height: 80px !important;
     object-fit: contain !important;
     width: auto;
 }

 .ed-footer__logo img {
     max-width: 300px !important;
     height: 180px !important;
     object-fit: contain !important;
 }

 .mobile-logo {
     display: flex;
     align-items: center;
     height: 100%;
 }

 .mobile-logo img {
     max-height: 45px !important;
     width: auto;
     object-fit: contain;
 }

 .offcanvas-logo img {
     max-height: 40px !important;
     width: auto;
     object-fit: contain;
 }

 /* ===== SEARCH BAR STYLES ===== */
 .ed-topbar__search-widget {
     display: flex;
     align-items: center;
     max-width: 500px;
     width: 100%;
     margin: 0 auto;
 }

 .ed-topbar__search {
     width: 100%;
     position: relative;
 }

 .ed-topbar__search form {
     display: flex;
     background: #fff;
     border-radius: 30px;
     box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     border: 1px solid #e0e0e0;
     transition: all 0.3s ease;
 }

 .ed-topbar__search form:hover {
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
 }

 .ed-topbar__search input[type="search"] {
     flex: 1;
     padding: 15px 20px;
     border: none;
     outline: none;
     font-size: 16px;
     background: transparent;
     color: #333;
 }

 .ed-topbar__search input[type="search"]::placeholder {
     color: #999;
     font-style: italic;
 }

 .ed-topbar__search button {
     padding: 15px 25px;
     background: #007bff;
     color: white;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     font-weight: 500;
     border-radius: 0 30px 30px 0;
     transition: background-color 0.3s ease;
 }

 .ed-topbar__search button:hover {
     background: #0056b3;
 }

 .ed-topbar__search button i {
     font-size: 16px;
 }

 /* ===== HEADER LAYOUT ===== */
 .responsive-header {
     background-color: #fff;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     z-index: 1000;
 }

 .ed-topbar {
     background-color: #f8f9fa;
     padding: 15px 0;
     border-bottom: 1px solid #dee2e6;
 }

 .ed-topbar__info-social {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .ed-topbar__info-social img {
     width: 20px;
     height: 20px;
     transition: transform 0.3s ease;
 }

 .ed-topbar__info-social img:hover {
     transform: scale(1.1);
 }

 .ed-header {
     background-color: #fff;
     padding: 15px 0;
 }

 .ed-header__menu .nav-link {
     color: #333;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .ed-header__menu .nav-link:hover,
 .ed-header__menu .nav-link.active {
     color: #007bff;
 }

 .ed-header__menu .nav-link.active::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     right: 0;
     height: 2px;
     background-color: #007bff;
 }

 .ed-header__contact a {
     color: #666;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .ed-header__contact a:hover {
     color: #007bff;
 }

 /* ===== MOBILE NAVIGATION ===== */
 .mobile-topbar .container {
     padding: 0 15px;
 }

 .mobile-topbar .row {
     margin: 0;
 }

 .mobile-topbar .col-6 {
     padding: 0 8px;
 }

 .mobile-topbar .col-6.text-end .d-flex {
     height: 60px;
     align-items: center;
     gap: 10px;
     flex-wrap: nowrap;
     overflow: hidden;
 }

 .mobile-topbar .btn-primary {
     padding: 8px 16px;
     font-size: 14px;
     border-radius: 6px;
     white-space: nowrap;
     transition: all 0.3s ease;
 }

 .mobile-topbar .btn:active {
     transform: scale(0.95);
 }

 .mobile-topbar .dropdown-toggle {
     padding: 8px 12px;
     font-size: 14px;
     max-width: 120px;
     text-overflow: ellipsis;
     overflow: hidden;
     white-space: nowrap;
 }

 .mobile-topbar .dropdown-menu {
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     border: 1px solid #e9ecef;
     min-width: 150px;
 }

 .mobile-topbar .dropdown-item {
     padding: 10px 16px;
     font-size: 14px;
 }

 .mobile-menu-offcanvas-toggler {
     padding: 8px 12px !important;
     border: 2px solid #6c757d !important;
     border-radius: 6px !important;
     background: transparent !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     min-width: 44px;
     height: 44px;
 }

 .mobile-menu-offcanvas-toggler:hover {
     background: #6c757d !important;
     color: white !important;
 }

 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
     width: 20px;
     height: 20px;
     display: inline-block;
     vertical-align: middle;
     background-repeat: no-repeat;
     background-position: center;
     background-size: 100%;
 }

 .mobile-menu-offcanvas-toggler:hover .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 /* ===== MOBILE OFFCANVAS ===== */
 .mobile-menu-modal .modal-dialog {
     margin: 0;
     height: 100vh;
     max-width: 300px;
 }

 .mobile-menu-modal .modal-content {
     height: 100vh;
     border-radius: 0;
     border: none;
 }

 .offcanvas-header {
     padding: 20px;
     border-bottom: 1px solid #e9ecef;
     background: #f8f9fa;
 }

 .btn-close {
     padding: 8px;
     margin: 0;
     background: none;
     border: none;
     font-size: 18px;
 }

 .mobile-menu-modal-main-body {
     padding: 20px;
     flex: 1;
     overflow-y: auto;
 }

 .offcanvas__menu_ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .offcanvas__menu_li {
     margin-bottom: 0;
     border-bottom: 1px solid #e9ecef;
 }

 .offcanvas__menu_item {
     display: block;
     padding: 15px 0;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .offcanvas__menu_item:hover,
 .offcanvas__menu_item.active {
     color: #007bff;
     transform: translateX(5px);
 }

 /* ===== RESPONSIVE BREAKPOINTS ===== */
 @media (max-width: 575.98px) {
     .mobile-topbar .btn-primary {
         padding: 6px 12px;
         font-size: 12px;
     }

     .mobile-topbar .dropdown-toggle {
         padding: 6px 10px;
         font-size: 12px;
         max-width: 100px;
     }

     .mobile-logo img {
         max-height: 35px !important;
     }

     .mobile-menu-offcanvas-toggler {
         min-width: 40px;
         height: 40px;
         padding: 6px 10px !important;
     }

     .ed-topbar__search form {
         border-radius: 20px;
     }

     .ed-topbar__search input[type="search"] {
         padding: 8px 10px;
         font-size: 13px;
     }

     .ed-topbar__search button {
         padding: 8px 12px;
         border-radius: 0 20px 20px 0;
     }
 }

 @media (min-width: 576px) and (max-width: 767.98px) {
     .mobile-topbar .col-6.text-end .d-flex {
         gap: 12px;
     }

     .mobile-logo img {
         max-height: 40px !important;
     }

     .ed-topbar__search form {
         border-radius: 25px;
     }

     .ed-topbar__search input[type="search"] {
         font-size: 15px;
         padding: 12px 15px;
     }

     .ed-topbar__search button {
         padding: 12px 18px;
     }

     .ed-topbar__search button span {
         display: none;
     }
 }

 @media (min-width: 768px) and (max-width: 991.98px) {
     .mobile-logo img {
         max-height: 50px !important;
     }

     .ed-topbar__search input[type="search"] {
         font-size: 16px;
         padding: 12px 16px;
     }

     .ed-topbar__search button {
         padding: 12px 20px;
     }
 }

 @media (min-width: 992px) {
     .ed-topbar__search-widget {
         display: block !important;
         max-width: 450px;
     }
 }

 @media (min-width: 1400px) {
     .ed-topbar__search-widget {
         max-width: 600px;
     }

     .ed-topbar__logo img {
         max-width: 250px !important;
     }
 }

 /* ===== MOBILE OFFCANVAS SOCIAL MEDIA ===== */
 .mobile-menu-modal-main-body {
     display: flex;
     flex-direction: column;
     height: 100%;
     padding: 20px;
 }

 .offcanvas__menu {
     flex-grow: 1;
 }

 .offcanvas__social {
     margin-top: auto;
     padding-top: 20px;
     border-top: 1px solid #e9ecef;
 }

 .offcanvas__social h6 {
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #6c757d;
 }

 .offcanvas__social-list {
     list-style: none;
     padding: 0;
     margin: 0;
     gap: 15px;
 }

 .offcanvas__social-link {
     display: inline-block;
     padding: 8px;
     border-radius: 50%;
     background-color: #f8f9fa;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .offcanvas__social-link:hover {
     background-color: #007bff;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
 }

 .offcanvas__social-link img {
     width: 20px;
     height: 20px;
     transition: filter 0.3s ease;
 }

 .offcanvas__social-link:hover img {
     filter: brightness(0) invert(1);
 }

 /* Responsive adjustments for social icons */
 @media (max-width: 575.98px) {
     .offcanvas__social-list {
         gap: 10px;
     }

     .offcanvas__social-link {
         padding: 6px;
     }

     .offcanvas__social-link img {
         width: 18px;
         height: 18px;
     }
 }

 /* Hero section responsive improvements */
 .section-bg.hero-bg {
     overflow-x: hidden !important;
     max-width: 100vw;
     position: relative;
 }

 .ed-hero {
     overflow-x: hidden !important;
     max-width: 100%;
     padding: 20px 0;
 }

 .ed-container-expand {
     max-width: 100% !important;
     /* overflow-x: hidden !important; */
 }

 /* Mobile responsive fixes for hero section */
 @media (max-width: 991.98px) {
     .section-bg.hero-bg {
         background-attachment: scroll !important;
         background-size: cover !important;
         background-position: center !important;
         overflow-x: hidden !important;
     }

     .ed-hero {
         padding: 40px 0;
         overflow-x: hidden !important;
     }

     .ed-hero .container {
         padding-left: 15px;
         padding-right: 15px;
         max-width: 100%;
         overflow-x: hidden;
     }

     .ed-hero .row {
         margin: 0;
         max-width: 100%;
         overflow-x: hidden;
     }

     .ed-hero .col-lg-6 {
         padding: 0 10px;
         max-width: 100%;
         overflow-x: hidden;
     }

     /* Hero image responsive fixes */
     .ed-hero__image {
         overflow: hidden !important;
         max-width: 100%;
         text-align: center;
         margin: 30px 0 0 0;
     }

     .ed-hero__image img {
         max-width: 100% !important;
         height: auto !important;
         width: auto !important;
         object-fit: contain !important;
         overflow: hidden !important;
         display: block;
         margin: 0 auto;
     }

     /* Hero content responsive */
     .ed-hero__content {
         max-width: 100%;
         overflow-x: hidden;
         text-align: center;
         padding: 0 10px;
     }

     .ed-hero__content-title {
         font-size: 28px !important;
         line-height: 1.3;
         margin-bottom: 20px;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }

     .ed-hero__content-text {
         font-size: 16px;
         line-height: 1.5;
         margin-bottom: 25px;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }

     /* Hero shapes - hide on mobile to prevent overflow */
     .ed-hero__elements {
         display: none !important;
     }
 }

 /* Tablet specific adjustments */
 @media (min-width: 768px) and (max-width: 991.98px) {
     .ed-hero__content-title {
         font-size: 36px !important;
     }

     .ed-hero__content-text {
         font-size: 18px;
     }

     .ed-hero__image img {
         max-width: 90% !important;
     }
 }

 /* Small mobile devices */
 @media (max-width: 575.98px) {
     .ed-hero {
         padding: 30px 0;
     }

     .ed-hero__content-title {
         font-size: 24px !important;
         line-height: 1.2;
     }

     .ed-hero__content-text {
         font-size: 14px;
     }

     .ed-hero__image {
         margin: 20px 0 0 0;
     }

     .ed-hero__image img {
         max-width: 95% !important;
     }

     .ed-hero .container {
         padding-left: 10px;
         padding-right: 10px;
     }
 }

 /* Additional safety for any container that might cause overflow */
 @media (max-width: 991.98px) {
     * {
         max-width: 100% !important;
         box-sizing: border-box;
     }

     .container,
     .container-fluid {
         overflow-x: hidden !important;
         max-width: 100% !important;
     }

     .row {
         overflow-x: hidden !important;
         margin-left: 0 !important;
         margin-right: 0 !important;
     }

     [class*="col-"] {
         overflow-x: hidden !important;
         padding-left: 10px;
         padding-right: 10px;
     }
 }


 /* ===== ABOUT SECTION BACKGROUND ANIMATION FIXES ===== */

.ed-about {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Main container positioning */
.ed-about .container {
    position: relative;
    z-index: 10;
}

/* Content positioning - ensure it stays above background elements */
.ed-about__content {
    position: relative;
    z-index: 15;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 8px;
}

.ed-about__images {
    position: relative;
    z-index: 12;
}

/* Background shapes - put them behind content */
.ed-about__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1 !important;
    pointer-events: none;
}

.ed-about__shape-1,
.ed-about__shape-2,
.ed-about__shape-3 {
    position: absolute !important;
    z-index: -1 !important;
    pointer-events: none;
}

.ed-about__shape-1 {
    top: 10%;
    left: -5%;
    max-width: 150px;
    opacity: 0.6;
}

.ed-about__shape-2 {
    bottom: 20%;
    right: -5%;
    max-width: 120px;
    opacity: 0.5;
}

.ed-about__shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80px;
    opacity: 0.4;
}

/* Main section background shape */
.ed-about__shape-4 {
    position: absolute !important;
    z-index: -2 !important;
    top: 0;
    right: 0;
    max-width: 300px;
    opacity: 0.3;
    pointer-events: none;
}

/* Counter card positioning */
.counter-card {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Animation fixes */
.updown-ani {
    animation: updown-ani 3s ease-in-out infinite;
    z-index: 20;
}

.rotate-ani {
    animation: rotate-ani 20s linear infinite;
    z-index: -1 !important;
}

/* Keyframes for animations */
@keyframes updown-ani {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate-ani {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Element move animation */
.element-move {
    animation: element-move 6s ease-in-out infinite alternate;
}

@keyframes element-move {
    0% { transform: translate(0px, 0px); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(-5px, 5px); }
    75% { transform: translate(5px, -15px); }
    100% { transform: translate(0px, 0px); }
}

/* ===== RESPONSIVE BACKGROUND FIXES ===== */

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .ed-about__content {
        background: transparent;
        padding: 40px 30px;
    }
    
    .ed-about__shapes {
        display: block;
    }
    
    .ed-about__shape-4 {
        max-width: 400px;
        opacity: 0.4;
    }
}

/* Tablet (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .ed-about__content {
        background: rgba(255, 255, 255, 0.9);
        padding: 30px 25px;
        margin: 20px 0;
    }
    
    .ed-about__shapes {
        opacity: 0.3;
    }
    
    .ed-about__shape-4 {
        max-width: 250px;
        opacity: 0.2;
    }
    
    /* Reduce animation intensity on tablets */
    .element-move {
        animation: element-move-tablet 8s ease-in-out infinite alternate;
    }
    
    @keyframes element-move-tablet {
        0% { transform: translate(0px, 0px); }
        50% { transform: translate(5px, -5px); }
        100% { transform: translate(0px, 0px); }
    }
}

/* Mobile (767.98px and below) */
@media (max-width: 767.98px) {
    .ed-about__content {
        background: rgba(255, 255, 255, 0.95);
        padding: 25px 20px;
        margin: 20px 0;
        border-radius: 12px;
    }
    
    /* Hide most background shapes on mobile to prevent overlap */
    .ed-about__shapes,
    .ed-about__shape-4 {
        display: none !important;
    }
    
    /* Keep only essential animations */
    .counter-card {
        margin-top: 20px;
    }
    
    .updown-ani {
        animation: none;
    }
}

/* Extra small mobile (575.98px and below) */
@media (max-width: 575.98px) {
    .ed-about__content {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .counter-card {
        margin-top: 15px;
        padding: 15px;
    }
}

/* ===== ADDITIONAL LAYER MANAGEMENT ===== */

/* Ensure proper stacking context for all animated elements */
.ed-about * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Performance optimizations for animations */
.ed-about__shapes img,
.counter-card,
.ed-about__shape-4 {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Text readability enhancement */
.ed-section-head__text {
    position: relative;
    z-index: 16;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

@media (min-width: 992px) {
    .ed-section-head__text {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
    }
}




/* ===== WHITE RESPONSIVE FOOTER DESIGN ===== */

.ed-footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    color: #333333;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.ed-footer__top {
    position: relative;
    padding: 60px 0 40px;
    z-index: 2;
}

/* Footer Shapes - Background Animation */
.ed-footer__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ed-footer__shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    max-width: 200px;
    opacity: 0.05;
    filter: brightness(0.7);
}

.ed-footer__shape-2 {
    position: absolute;
    bottom: 20%;
    right: -5%;
    max-width: 150px;
    opacity: 0.08;
    filter: brightness(0.7);
}

.ed-footer__shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100px;
    opacity: 0.04;
    filter: brightness(0.7);
}

.rotate-ani {
    animation: rotate-ani 20s linear infinite;
}

@keyframes rotate-ani {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Widgets */
.ed-footer__widget {
    margin-bottom: 40px;
    padding: 0 15px;
}

.ed-footer__widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.ed-footer__widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* About Section */
.ed-footer__about {
    padding-right: 20px;
}

.ed-footer__logo {
    display: inline-block;
    margin-bottom: 25px;
}

.ed-footer__logo img {
    max-width: 200px;
    height: auto;
}

.ed-footer__about-text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Social Media Icons */
.ed-footer__about-social {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ed-footer__about-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ed-footer__about-social li a:hover {
    background: #007bff;
    border-color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.ed-footer__about-social li a img {
    width: 20px;
    height: 20px;
}

.ed-footer__about-social li a:hover img {
    filter: brightness(0) invert(1);
}

/* Footer Links */
.ed-footer__widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ed-footer__widget-links li {
    margin-bottom: 12px;
}

.ed-footer__widget-links li a {
    color: #6c757d;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
}

.ed-footer__widget-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #007bff;
}

.ed-footer__widget-links li a:hover {
    color: #2c3e50;
    padding-left: 15px;
    transform: translateX(5px);
}

.ed-footer__widget-links li a:hover::before {
    left: -15px;
    opacity: 1;
}

/* Contact Section */
.contact-widget {
    padding-left: 20px;
}

.ed-footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ed-footer__contact:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.ed-footer__contact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.ed-footer__contact-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.ed-footer__contact-info {
    flex: 1;
}

.ed-footer__contact-info span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ed-footer__contact-info a {
    display: block;
    font-size: 15px;
    color: #6c757d;
    text-decoration: none;
    line-height: 1.6;
    word-spacing: 2px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ed-footer__contact-info a:hover {
    color: #2c3e50;
}

/* Footer Bottom */
.ed-footer__bottom {
    background: #f8f9fa;
    padding: 25px 0;
    border-top: 2px solid #e9ecef;
}

.ed-footer__copyright-text {
    text-align: center;
    color: #6c757d;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .ed-footer__top {
        padding: 80px 0 60px;
    }
    
    .ed-footer__widget-title {
        font-size: 24px;
    }
    
    .ed-footer__about-text {
        font-size: 17px;
        max-width: 350px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .ed-footer__top {
        padding: 70px 0 50px;
    }
    
    .ed-footer__about {
        padding-right: 15px;
    }
    
    .contact-widget {
        padding-left: 15px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .ed-footer__top {
        padding: 60px 0 40px;
    }
    
    .ed-footer .row {
        justify-content: center;
    }
    
    .ed-footer .col-lg-4,
    .ed-footer .col-lg-3,
    .ed-footer .col-lg-5 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 40px;
    }
    
    .ed-footer .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ed-footer__widget {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ed-footer__widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ed-footer__about-social {
        justify-content: center;
    }
    
    .ed-footer__about {
        padding-right: 0;
    }
    
    .contact-widget {
        padding-left: 0;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .ed-footer__top {
        padding: 50px 0 30px;
    }
    
    .ed-footer .col-lg-4,
    .ed-footer .col-lg-3,
    .ed-footer .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ed-footer__widget {
        text-align: center;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .ed-footer__widget-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ed-footer__widget-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .ed-footer__logo img {
        max-width: 180px;
    }
    
    .ed-footer__about-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .ed-footer__about-social {
        justify-content: center;
        gap: 12px;
    }
    
    .ed-footer__about-social li a {
        width: 40px;
        height: 40px;
    }
    
    .ed-footer__widget-links li a {
        font-size: 15px;
        padding: 6px 0;
    }
    
    .ed-footer__contact {
        gap: 15px;
        padding: 18px;
        margin-bottom: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .ed-footer__contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }
    
    .ed-footer__contact-info span {
        font-size: 15px;
    }
    
    .ed-footer__contact-info a {
        font-size: 14px;
    }
    
    /* Hide background shapes on mobile */
    .ed-footer__shapes {
        display: none;
    }
}

/* Extra Small Mobile (575px and below) */
@media (max-width: 575px) {
    .ed-footer__top {
        padding: 40px 0 25px;
    }
    
    .ed-footer__widget {
        padding: 0 5px;
        margin-bottom: 30px;
    }
    
    .ed-footer__widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .ed-footer__logo img {
        max-width: 160px;
    }
    
    .ed-footer__about-text {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .ed-footer__about-social li a {
        width: 36px;
        height: 36px;
    }
    
    .ed-footer__contact {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .ed-footer__contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .ed-footer__contact-icon img {
        width: 22px;
        height: 22px;
    }
    
    .ed-footer__copyright-text {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Performance Optimizations */
.ed-footer * {
    will-change: transform;
    backface-visibility: hidden;
}
