body {
    overflow-x: hidden;
}

.top-bar {
    background-color: #f8f9fa;
    padding: 15px 0;
    font-size: 14px;
}

.top-bar a {
    text-decoration: none;
    color: #6c757d;
    margin: 0 10px;
    font-size: 15px;
}

.top-bar a:hover {
    color: #000;
}

.contact-topbar {
    font-size: 15px !important;
    color: #005fb3 !important;
    font-weight: bold !important;
}

.navbar {
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: #005fb3;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: #fff;
    background-color: #005fb3;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-dropdown-menu {
    width: 100%;
    left: 0 !important;
    transform: none !important;
    background-color: #005fb3 !important;
    padding: 30px 0 30px 0 !important;
    display: none !important;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    border-radius: 0;
    box-shadow: none;
    min-height: 70px;
    position: fixed !important;
    top: 130px;
    z-index: 1050;
}

.custom-dropdown-menu.show {
    display: flex !important;
}

.custom-dropdown-menu .dropdown-item {
    color: #fff !important;
    font-weight: 600;
    font-size: 20px;
    background: transparent !important;
    border: none;
    padding: 0 20px;
    text-align: center;
    text-decoration: underline;
    transition: color 0.2s;
}

.custom-dropdown-menu .dropdown-item:hover {
    color: #ffeb3b !important;
    text-decoration: underline;
    background: transparent !important;
}

.hero-section {
    background: url('/assets/media/Portals/6/Images/smartribe-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    height: 70vh !important;
}

.hero-title {

    margin-bottom: 30px;
    font-size: 80px !important;
    font-weight: bold !important;
    line-height: 1.2;
}

.btn-custom {
    background-color: #005fb3;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fashion-slider-title-text {
    text-shadow: 2px 2px #005fb3;
}

.intro-txt {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.blue-bg {
    background-color: #005fb3;
    color: #fff !important;
}

.p-tb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

/* Services Section */
.services-section {
    background-color: #005fb3;
    padding: 60px 0;
}

/* Media Gallery Section */
.media-gallery-section {
    background: #f8f9fa;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #005fb3;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.gallery-card {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 95, 179, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 95, 179, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: filter 0.2s;
}

.gallery-card img:hover {
    filter: brightness(0.95) contrast(1.1);
}

.gallery-video {
    border-radius: 0 0 16px 16px;
    background: #000;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .gallery-card img,
    .gallery-video {
        height: 140px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    color: white;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    color: #005fb3;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #005fb3;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-btn {
    background-color: #005fb3;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.service-btn:hover {
    background-color: #ff5252;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

/* Statistics and Video Section */
.stats-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-content {
    padding: 40px;
}

.stats-title {
    font-size: 42px;
    font-weight: 700;
    color: #005fb3;
    margin-bottom: 15px;
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 95, 179, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #005fb3;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-description {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #005fb3;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.stats-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.video-section {
    padding: 20px;
}

.video-container {
    position: relative;
    margin-bottom: 25px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 95, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #005fb3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-caption {
    text-align: center;
    padding: 20px;
}

.video-caption h4 {
    font-size: 24px;
    font-weight: 600;
    color: #005fb3;
    margin-bottom: 8px;
}

.video-caption p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-title {
        font-size: 36px;
    }

    .stats-content {
        padding: 20px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-video-section {
        padding: 60px 0;
    }

    .stats-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Abacus Learning Section */
.abacus-learning-section {
    min-height: 500px;
}

.abacus-image-side {
    background-image: url('/assets/media/Portals/6/Images/smartribbe-event-8.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.coding-image-side {
    background-image: url('/assets/media/Portals/6/Images/backgrounds/iStock-519546280-boy-earbuds-cropped.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 95, 179, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.overlay-content {
    text-align: center;
    max-width: 400px;
}

.overlay-text {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.learn-more-btn {
    background-color: white;
    color: #005fb3;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.learn-more-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.abacus-content-side {
    background-color: white;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.content-wrapper {
    padding: 60px 50px;
    max-width: 100%;
}

.section-title {
    color: #005fb3;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
}

.learn-more-outline-btn {
    background-color: transparent;
    color: #005fb3;
    padding: 12px 30px;
    border: 2px solid #005fb3;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.learn-more-outline-btn:hover {
    background-color: #005fb3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 95, 179, 0.3);
}

/* Responsive Design for Abacus Section */
@media (max-width: 992px) {
    .abacus-image-side {
        min-height: 400px;
    }

    .abacus-content-side {
        min-height: auto;
    }

    .content-wrapper {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .overlay-content {
        max-width: 350px;
    }

    .image-overlay {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .abacus-image-side {
        min-height: 300px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .section-description {
        text-align: left;
    }

    .overlay-text {
        font-size: 16px;
    }

    .image-overlay {
        padding: 20px;
    }

    .learn-more-outline-btn,
    .learn-more-btn {
        width: 100%;
        margin: 10px 0;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 95, 179, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 95, 179, 0.15);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #005fb3, #0077cc);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff5252, #ff7043);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.mission-icon {
    background: linear-gradient(135deg, #005fb3, #0077cc);
}

.vision-icon {
    background: linear-gradient(135deg, #ff5252, #ff7043);
}

.mission-title,
.vision-title {
    color: #005fb3;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.vision-title {
    color: #ff5252;
}

.mission-description,
.vision-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 992px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .mission-title,
    .vision-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .mission-card,
    .vision-card {
        padding: 30px 25px;
        text-align: center;
    }

    .mission-description,
    .vision-description {
        text-align: center;
    }

    .mission-icon,
    .vision-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-header {
    margin-bottom: 60px;
}

.team-main-title {
    color: #005fb3;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.team-subtitle {
    color: #6c757d;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-slider-container {
    position: relative;
    padding: 0 50px;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 95, 179, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 95, 179, 0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 95, 179, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #005fb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #005fb3;
    color: white;
    transform: translateY(-3px);
}

.team-content {
    padding: 30px 25px;
    text-align: center;
}

.team-member-name {
    color: #005fb3;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member-role {
    color: #ff5252;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-bio {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Swiper Navigation Styles */
.team-slider-next,
.team-slider-prev {
    width: 50px !important;
    height: 50px !important;
    background: #005fb3 !important;
    border-radius: 50% !important;
    color: white !important;
    margin-top: -25px !important;
    transition: all 0.3s ease !important;
}

.team-slider-next:hover,
.team-slider-prev:hover {
    background: #ff5252 !important;
    transform: scale(1.1) !important;
}

.team-slider-next::after,
.team-slider-prev::after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.team-slider-pagination {
    bottom: -50px !important;
}

.team-slider-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.team-slider-pagination .swiper-pagination-bullet-active {
    background: #005fb3 !important;
    transform: scale(1.2) !important;
}

/* Responsive Design for Team Section */
@media (max-width: 992px) {
    .team-section {
        padding: 60px 0;
    }

    .team-main-title {
        font-size: 36px;
    }

    .team-slider-container {
        padding: 0 20px;
    }

    .team-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .team-main-title {
        font-size: 28px;
    }

    .team-subtitle {
        font-size: 16px;
    }

    .team-slider-container {
        padding: 0 10px;
    }

    .team-image-wrapper {
        height: 220px;
    }

    .team-content {
        padding: 25px 20px;
    }

    .team-member-name {
        font-size: 20px;
    }
}

/* Service Delivery Section */
.service-delivery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    margin-bottom: 60px;
}

.delivery-title {
    color: #005fb3;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.delivery-subtitle {
    color: #6c757d;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.delivery-option {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 95, 179, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.delivery-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.onsite-option::before {
    background: linear-gradient(90deg, #005fb3, #0077cc);
}

.online-option::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.delivery-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 95, 179, 0.15);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
}

.onsite-option .delivery-icon {
    background: linear-gradient(135deg, #005fb3, #0077cc);
}

.online-option .delivery-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.option-title {
    color: #005fb3;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.online-option .option-title {
    color: #28a745;
}

.option-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.option-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.option-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
    font-size: 15px;
}

.option-features i {
    color: #28a745;
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
}

.delivery-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.onsite-btn {
    background-color: #005fb3;
    color: white;
    border-color: #005fb3;
}

.onsite-btn:hover {
    background-color: transparent;
    color: #005fb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 95, 179, 0.3);
}

.online-btn {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.online-btn:hover {
    background-color: transparent;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.delivery-info-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff5252;
}

.info-title {
    color: #005fb3;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-text {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.consultation-btn {
    background-color: #ff5252;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.consultation-btn:hover {
    background-color: #ff3838;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

/* Responsive Design for Service Delivery */
@media (max-width: 992px) {
    .service-delivery-section {
        padding: 60px 0;
    }

    .delivery-title {
        font-size: 32px;
    }

    .delivery-option {
        padding: 30px;
        margin-bottom: 30px;
    }

    .delivery-info-box {
        text-align: center;
    }

    .consultation-btn {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .delivery-title {
        font-size: 28px;
    }

    .delivery-subtitle {
        font-size: 16px;
    }

    .delivery-option {
        padding: 25px;
        text-align: center;
    }

    .delivery-icon {
        margin: 0 auto 20px;
    }

    .option-title {
        font-size: 24px;
    }

    .delivery-info-box {
        padding: 25px;
    }

    .info-title {
        font-size: 20px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 50px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    color: #005fb3;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #005fb3;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #005fb3;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #005fb3;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #ff5252;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.copyright {
    margin: 0;
    color: #cccccc;
}

.footer-bottom-link {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #005fb3;
}

/* Robotics Page Specific Styles */
.robotics-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.robotics-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.robotics-highlight:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.robotics-highlight i {
    font-size: 2.5em;
    color: #ff5252;
    margin-bottom: 15px;
    display: block;
}

.robotics-highlight h4 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

.robotics-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.robotics-benefit {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.robotics-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 95, 179, 0.2);
    border-color: #005fb3;
}

.robotics-benefit i {
    font-size: 3.5em;
    color: #005fb3;
    margin-bottom: 25px;
    display: block;
}

.robotics-benefit h4 {
    color: #2c3e50;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
}

.robotics-benefit p {
    color: #6c757d;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.robotics-curriculum-section {
    padding: 80px 0;
    background: #fff;
}

.robotics-level-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.robotics-level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 95, 179, 0.15);
    border-color: #005fb3;
}

.robotics-level-card .level-number {
    background: linear-gradient(135deg, #005fb3, #007bff);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    position: absolute;
    top: -25px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(0, 95, 179, 0.3);
}

.robotics-level-card h4 {
    color: #2c3e50;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.robotics-level-card .level-description {
    color: #6c757d;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.robotics-level-card .level-features {
    list-style: none;
    padding: 0;
}

.robotics-level-card .level-features li {
    color: #495057;
    font-size: 0.95em;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.robotics-level-card .level-features li:before {
    content: '⚙️';
    position: absolute;
    left: 0;
    top: 0;
}

.robotics-level-card .level-duration {
    background: rgba(0, 95, 179, 0.1);
    color: #005fb3;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Responsive Design for Robotics Components */
@media (max-width: 768px) {
    .robotics-highlights {
        gap: 20px;
    }

    .robotics-highlight {
        min-width: 150px;
        padding: 15px;
    }

    .robotics-highlight i {
        font-size: 2em;
    }

    .robotics-benefit {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .robotics-level-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .robotics-level-card .level-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        left: 20px;
        top: -20px;
    }

    .robotics-level-card h4 {
        font-size: 1.3em;
        margin-top: 10px;
    }
}