* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styling */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    height: 40px;
}

/* Mega Menu */
.dropdown-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    padding: 20px;
    background: #fff;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-item:hover .dropdown-mega {
    display: block;
}

.dropdown-mega h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.dropdown-mega a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 3px 0;
    font-size: 14px;
}

.dropdown-mega a:hover {
    color: #007bff;
}

.dropdown-mega img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-img {
    width: 100%;
    height: 450px;
    /* fixed height for all slides */
    object-fit: cover;
    /* crop image without distortion */
}

@media (max-width: 992px) {
    .slider-img {
        height: 400px;
        /* smaller height for tablets */
    }
}

@media (max-width: 768px) {
    .slider-img {
        height: 250px;
        /* smaller height for mobile */
    }

    .carousel-caption {
        font-size: 14px;
        padding: 5px;
    }
}

.category-card {
    text-align: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    cursor: pointer;
    padding: 15px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #f8f8f8;
}

.category-card h6 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}


.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Subcategory Cards */
.subcategory-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform .3s, box-shadow .3s;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.subcategory-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.subcategory-card h4 {
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: #0d6efd;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

body {
    /*font-family: 'Helvetica Neue', Arial, sans-serif;*/
    /*background-color: #f8f8f8;*/
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.about-section {
    padding: 40px 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.sunburst {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60px;
    background-color: #333;
    display: none;
    /* Hidden on small devices */
}

/* Tablet and above */
@media (min-width: 768px) {
    .about-section {
        padding: 60px 40px;
    }

    .about-title {
        font-size: 50px;
    }

    .about-text {
        font-size: 18px;
    }

    .scroll-indicator {
        display: block;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .about-title {
        font-size: 64px;
        line-height: 1.1;
    }
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: auto;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #0d6efd;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0d6efd;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
}


.highlight {
    color: #ff8c00;
    /* orange for Experience */
}

.section-heading {
    font-weight: bold;
    font-size: 2rem;
}

.feature-img {
    border-radius: 15px;
    overflow: hidden;
}

.card img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

   /* Partner slider styles */
    section.partners {
      padding: 40px 0;
      background: #f9f9f9;
      text-align: center;
    }

    section.partners h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .slider {
      display: flex;
      justify-content: center;
      overflow: hidden;
      width: 90%;
      margin: auto;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 16px;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .slider-items {
      display: flex;
      gap: 20px;
      animation: scrolling 20s linear infinite;
    }

    .slider-items img {
      height: 80px;
    }

    @keyframes scrolling {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }