/*
============================================================
 Jordan Guild Tech - Homepage Styles (index.css)
 This file contains CSS rules unique to the homepage.
 All common, site-wide styles are in common.css.
============================================================
*/

/* ==================== HOMEPAGE ONLY STYLES ==================== */

/* This class specifically removes the top padding for the homepage body */
body.homepage {
    padding-top: 0;
}

/* Styles for the transparent header effect on the homepage */
.main-header.header-transparent {
    background-color: rgba(17, 24, 39, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.header-transparent .logo a {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.main-header.header-transparent .main-nav a {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin: 0 2px;
}

.main-header.header-transparent .main-nav a:hover {
    background-color: rgba(96, 165, 250, 0.9);
    text-shadow: none;
}

.main-header.header-transparent .main-nav a.active-page {
    background-color: rgba(75, 85, 99, 0.5);
    text-shadow: none;
}

.main-header.header-transparent .cta-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.main-header.header-transparent .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
    text-shadow: none;
}

.main-header.header-transparent .search-icon {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}


/* ==================== HERO SLIDER STYLES ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 180px;
    left: 15%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    display: block;
}


/* ==================== EXCELLENCE / STATS SECTION ==================== */
.excellence-section {
    background-color: #ffffff;
    padding: 60px 5% 40px 5%;
}

.excellence-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.excellence-content {
    flex: 1.5;
}

.excellence-content h2 {
    font-size: 2.8rem;
    color: #111827;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.excellence-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 20px;
}

.features-list li {
    color: #374151;
    margin-bottom: 15px;
    font-weight: 500;
}

.features-list a {
    text-decoration: none;
}

.features-list li::before {
    content: '+';
    color: #2563eb;
    margin-right: 10px;
    font-weight: 700;
}

.excellence-stats {
    flex: 1;
    text-align: center;
}

.stat-item {
    margin: 20px 0;
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 1rem;
    color: #4b5563;
    margin: 10px 0 0 0;
    font-weight: 600;
}

.stat-number-outlined {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #000000;
}

.excellence-stats hr {
    border: none;
    height: 1px;
    background-color: #000000;
}


/* ==================== SCROLLING TICKER STYLES ==================== */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scrolling-ticker {
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('images/poster.png');
    background-attachment: fixed;
    background-position: center;
    background-size: auto;
    padding: 130px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrap {
    overflow: hidden;
    display: flex;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    animation: scroll-left 40s linear infinite;
}

.ticker-content span {
    font-size: 2.2rem;
    color: transparent;
    -webkit-text-stroke: 1px #e5e7eb;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 30px;
    letter-spacing: 1px;
}

.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}


/* ==================== ABOUT INTRO SECTION ==================== */
.about-intro {
    background-color: #ffffff;
    padding: 60px 5% 40px 5%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #111827;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}


/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
    background-color: #f9fafb;
    padding: 10px 5% 1px 5%;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: #e5e7eb;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #2563eb;
    border-radius: 50%;
    border: 3px solid #ffffff;
    z-index: 1;
}

.timeline-content,
.timeline-image {
    width: calc(50% - 20px);
}

.timeline-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.6;
}

.timeline-item-reversed {
    flex-direction: row-reverse;
}


/* ==================== COURSES CAROUSEL ==================== */
.courses-section {
    background-color: #ffffff;
    padding: 40px 5% 20px 5%;
}

.courses-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    text-align: center;
    position: relative;
}

.courses-header h2 {
    font-size: 2.8rem;
    color: #111827;
    margin: 0;
}

.view-all-link {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.view-all-link:hover {
    color: #111827;
}

.courses-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.courses-slider-wrapper {
    overflow: hidden;
}

.courses-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.course-card {
    flex: 0 0 23%;
    max-width: 23%;
    margin-right: 2%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #111827;
    margin: 0 0 10px 0;
}

.card-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    color: #111827;
}

.prev-arrow {
    left: -60px;
}

.next-arrow {
    right: -60px;
}

.slider-pagination {
    text-align: center;
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: radial-gradient(circle at 50% 40%, #999, #111 80%);
    box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.2), 0 2px 3px rgba(0, 0, 0, 0.4);
    border: 1px solid #1a1a1a;
}

.dot.active {
    transform: scale(1.4);
    background: radial-gradient(circle at 50% 40%, #87CEEB, #2563eb 80%);
}

.courses-footer {
    text-align: center;
    margin-top: 60px;
}

.view-all-courses-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.view-all-courses-btn:hover {
    background-color: #0048ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.view-all-courses-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}


/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background-color: #ffffff;
    padding: 30px 5% 60px 5%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.8rem;
    color: #111827;
    margin-bottom: 15px;
}

.heading-underline {
    width: 60px;
    height: 4px;
    background-color: #2563eb;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex-basis: 30%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #111827;
    font-size: 1.1rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}


/* ==================== CALL TO ACTION SECTION ==================== */
.cta-section {
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('images/poster.png');
    background-attachment: fixed;
    background-position: center;
    background-size: auto;
    padding: 130px 5%;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.cta-button-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-main:hover {
    background-color: #ffffff;
    color: #111827;
}

.cta-button-main svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button-main:hover svg {
    transform: translateX(5px);
}


/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet */
@media (max-width: 992px) {

    .excellence-container,
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .course-card {
        flex-basis: 48%;
        max-width: 48%;
        margin-right: 2%;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        flex-basis: 80%;
        max-width: 80%;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
        top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .excellence-stats {
        margin-top: 30px;
    }

    .timeline-container {
        padding: 0 10px;
    }

    .mission-vision-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .main-header,
    .main-header.header-transparent {
        background-color: #111827;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        height: 54px;
        min-height: 54px;
        padding: 4px 2vw;
        align-items: center;
        width: 100vw;
        margin: 0;
    }

    body {
        padding-top: 54px;
    }

    .cta-button {
        display: none;
    }

    .logo {
        align-items: center;
    }

    .header-logo {
        height: 32px;
        margin-right: 5px;
    }

    .logo a {
        text-shadow: none !important;
        font-weight: 700;
        font-size: 1.5rem;
        white-space: nowrap;
        display: inline-block;
    }

    .main-nav {
        position: fixed;
        z-index: 1500;
        inset: 0 0 0 30%;
        flex-direction: column;
        padding: min(20vh, 10rem) 2rem;
        background: hsl(0 0% 10% / 0.9);
        backdrop-filter: blur(1rem);
        transform: translateX(100%);
        transition: transform 350ms ease-out;
    }

    .main-nav[data-visible="true"] {
        transform: translateX(0%);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .main-nav a:hover,
    .main-nav a.active-page {
        clip-path: none;
    }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 1.5rem;
    }

    .header-actions {
        margin-right: 3rem;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item-reversed {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 50px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .timeline-content,
    .timeline-image {
        width: 100%;
        text-align: left;
    }

    .timeline-item-reversed .timeline-content {
        order: 2;
    }

    .timeline-item-reversed .timeline-image {
        order: 1;
        margin-bottom: 20px;
    }

    .features-list {
        column-count: 1;
    }

    .courses-slider-track {
        flex-direction: column;
    }

    .course-card {
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .slider-arrow {
        top: 30%;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }

    .testimonial-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .hero-content {
        top: 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .about-text h2,
    .excellence-content h2,
    .courses-header h2,
    .testimonials-container h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .about-text p,
    .excellence-content p,
    .card-content p,
    .testimonial-text {
        font-size: 0.95rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .features-list {
        font-size: 0.95rem;
    }

    .stat-number-outlined {
        font-size: 3rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .about-image img,
    .timeline-image img {
        max-width: 100%;
        height: auto;
    }

    .timeline-section,
    .courses-section,
    .excellence-section,
    .about-intro {
        padding: 20px 2% 10px 2%;
    }

    .cta-section {
        padding: 40px 2%;
    }

    .site-footer {
        padding: 30px 2% 10px 2%;
    }

    .footer-bottom-bar {
        margin-top: 20px;
        padding-top: 10px;
    }

    .ticker-content span {
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

/* Very small mobile phones */
@media (max-width: 576px) {
    .hero-slider {
        height: 320px;
        min-height: 220px;
    }

    .slide {
        min-height: 220px;
    }

    .hero-content {
        position: static;
        max-width: 100%;
        padding: 24px 8px 0 8px;
        text-align: left;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0 0 12px 12px;
        box-shadow: none;
        top: 40px;
        left: 2%;
    }

    .hero-content h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .about-text h2,
    .excellence-content h2,
    .courses-header h2,
    .testimonials-container h2,
    .cta-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .courses-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 10px;
        position: static;
    }

    .view-all-link {
        position: static;
        display: block;
        margin: 8px 0 0 0;
        font-size: 1rem;
        float: none;
        transform: none;
    }

    .courses-slider-track {
        flex-direction: column;
        gap: 18px;
    }

    .slider-arrow,
    .slider-pagination {
        display: none !important;
    }

    .courses-slider-container,
    .courses-slider-wrapper,
    .courses-slider-track {
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
        transform: none !important;
    }

    .course-card {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px 0;
        box-sizing: border-box;
    }

    .scrolling-ticker {
        display: none;
    }

    .cta-section {
        background-size: cover !important;
        background-position: center !important;
        position: relative;
        padding: 40px 2vw !important;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(17, 24, 39, 0.85);
        z-index: 0;
        border-radius: 0;
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .excellence-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin-top: 18px;
    }

    .excellence-stats .stat-item {
        flex: 1 1 0;
        text-align: center;
        margin: 0;
        padding: 0 2px;
        border: none;
    }

    .excellence-stats hr {
        display: none;
    }

    h1,
    h2,
    h3,
    h4 {
        word-break: break-word;
        hyphens: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-bottom-bar {
        margin-top: 10px;
        padding-top: 6px;
    }

    .ticker-content span {
        font-size: 1.1rem;
        padding: 0 10px;
    }
}

/* ==================== RESPONSIVE LAYOUT & SIZING ==================== */

/* --- Tablet and Larger Mobile Phones (992px) --- */
@media (max-width: 992px) {

    /* Multi-column layouts revert to a single column */
    .excellence-container,
    .about-container,
    .mission-vision-container,
    .why-choose-us-container,
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Course grid switches to 2 columns */
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Responsive image sizes */
    .about-image,
    .mission-vision-image,
    .choose-us-image {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image img,
    .mission-vision-image img,
    .choose-us-image img {
        width: 100%;
    }

    /* Page header sizing for tablets */
    .page-header.courses-page-header,
    .page-header.aboutus-page-header,
    .page-header.contact-page-header {
        padding: 80px 5%;
        text-align: center;
    }

    .hero-content h1,
    .about-text h2,
    .excellence-content h2,
    .courses-header h2,
    .testimonials-container h2,
    .cta-content h2,
    .founders-container h2,
    .values-container h2,
    .contact-info-block h2 {
        font-size: 2.5rem;
    }
}

/* --- Small Mobile Phones (768px) --- */
@media (max-width: 768px) {

    /* Page headers shrink further */
    .page-header.courses-page-header,
    .page-header.aboutus-page-header,
    .page-header.contact-page-header {
        padding: 60px 5%;
    }

    /* All grid and flex layouts become a single column */
    .grid-container,
    .testimonials-grid,
    .values-grid,
    .founders-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 30px;
    }

    /* Text content shrinks for readability */
    .hero-content h1,
    .about-text h2,
    .excellence-content h2,
    .courses-header h2,
    .testimonials-container h2,
    .cta-content h2,
    .founders-container h2,
    .values-container h2,
    .contact-info-block h2 {
        font-size: 1.8rem;
    }

    .hero-content p,
    .about-text p,
    .excellence-content p,
    .card-content-detailed p,
    .testimonial-text {
        font-size: 1rem;
    }

    /* Other section styles and spacing */
    .excellence-section,
    .about-intro,
    .timeline-section,
    .courses-section,
    .contact-content-section,
    .map-section,
    .testimonials-section,
    .why-choose-us-section {
        padding: 40px 5%;
    }

    /* Specific element sizes */
    .stat-number-outlined {
        font-size: 4rem;
    }

    .timeline-container::before,
    .timeline-item::after {
        left: 20px;
    }

    .timeline-item,
    .timeline-item-reversed {
        padding-left: 50px;
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-image {
        order: 1;
        margin-bottom: 20px;
    }

    .timeline-content {
        order: 2;
    }

    .courses-slider-track {
        flex-direction: column;
        gap: 20px;
    }

    .course-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .slider-arrow,
    .slider-pagination {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 40px;
        /* Or increase existing top value */
    }
}