
:root {
    --primary-color: #770e0e;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
}

body {
    font-family: 'Geologica', sans-serif;
    background-color: #000;
    color: var(--text-light);
}

.mobile-header {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    z-index: 1000;
    border-radius: 50px;
    margin: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.text-orange {
    color: #770e0e;
}

.hamburger {
    border: none;
    background: none;
    padding-right: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* In your media query, just add this: */
@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }
}



.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.0rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: #770e0e;
    color: #000;
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.icon-strip {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 15%;
}

.icon-strip .row {
    justify-content: space-between;
}

.icon-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.icon-item:hover {
    opacity: 1;
}

.icon-item i {
    font-size: 2rem;
    color: white;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefits-carousel .carousel-item {
    padding: 2rem;
}



/* acadmy  */

.academy-section {
    padding: 100px 0;
    background-color: #000;
}

.academy-label {
    color: #770e0e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.academy-title {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 600px;
}

.learn-more-btn {
    background-color: #770e0e;
    color: #000;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #770e0e;
    color: #000;
}

.course-card {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.course-description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.academy-description {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.grid-container {
    margin-top: 4rem;
}

.row {
    align-items: flex-start;
}

.content-wrapper {
    padding-top: 5.7rem; 
}

.description-wrapper {
    margin-top: 4rem; 
}

.container-narrow {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 15px;
}

.top-content {
    margin-bottom: 80px; /* Space between top content and grid */
}

/* Update existing styles */
.academy-section {
    padding: 100px 0;
    background-color: #000;
}


/* Why us section */
.why-us-section {
    background-color: #000;
    padding: 100px 0;
}

.image-container {
    width: 100%;
    padding-right: 2rem;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-wrapper {
    padding-left: 2rem;
}

.why-us-label {
    color: #770e0e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.why-us-title {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.why-us-description {
    color: #aaa;
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 2px;
    background-color: #770e0e;
}

/* benefit section */

.benefits-section {
    background-color: #000;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.benefits-label {
    color: #770e0e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.benefits-description {
    color: #aaa;
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.content-wrapper {
    flex: 0 0 40%;
}

.slider-wrapper {
    flex: 0 0 60%;
    position: relative;
}

.slider-container {
    overflow-x: hidden;
    position: relative;
}

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

.slide {
    flex: 0 0 400px;
    margin-right: 20px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slide-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #770e0e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #770e0e;
}

.slider-prev {
    left: -20px;
    display: none; /* Initially hidden, shown when needed */
}

.slider-next {
    right: -20px;
}

.slider-nav {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slider-nav.hidden {
    opacity: 0;
    pointer-events: none;
}
.cta-section {
    position: relative;
    height: 50vh;
    background-image: url('assets/watcher.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    background-color: #770e0e;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: none;
}

.cta-button:hover {
    background-color:#770e0e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

footer {
    background-color: #000;
    color: white;
    padding: 60px 0;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

.logo-description {
    color: #aaa;
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.socials-label {
    color: #770e0e;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #aaa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #770e0e;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.subscribe-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.subscribe-input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #111;
    color: white;
    font-size: 1rem;
}

.subscribe-button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #770e0e;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color:#770e0e;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .col-lg-6 {
        width: 100% !important; /* Override the inline style */
        flex: 0 0 100% !important;
    }

    .row {
        margin: 0;
    }
    
    /* Hero Section */
    .container {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
   
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
        width: 100%;
    }

    .hero-bg-img {
        object-position: center; 
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin: 0 0 20px 0;
        padding: 0 20px;
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 30px;
        margin: 0 0 30px 0;
    }

    .cta-button {
        margin: 0;
        width: auto;
        padding: 15px 40px;
    }

    .icon-strip {
        bottom: 30px;
        padding: 0 5%;
    }

    .icon-item i {
        font-size: 1.5rem;
    }

    /* Academy Section */
    .academy-section {
        padding: 50px 0;
    }
    
    .academy-title {
        font-size: 2rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .academy-label {
        text-align: center;
    }
    
    .learn-more-btn {
        display: block;
        text-align: center;
        margin: 20px auto;
        max-width: 200px;
    }
    
    .academy-description {
        text-align: center;
        padding: 0 20px;
    }
    
    .description-wrapper {
        margin-top: 2rem;
    }
    
    .course-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px; 
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    }
    
    .course-image {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 200px; 
        object-fit: cover; 
        border-radius: 10px 10px 0 0; 
    }
    
    .course-card h3,
    .course-card p {
        margin: 10px 0;
        padding: 0 15px;
    }
    

    /* Grid Layout */
    .container-narrow {
        padding: 0 15px;
    }

    .row [class*="col-"] {
        width: 100%;
        padding: 0 15px;
    }




    /* Why Us Section */
    .why-us-section {
        padding: 50px 0;
    }

    .image-container {
        padding: 0 20px;
        margin-bottom: 2rem;
    }

    .image-container img {
        border-radius: 10px;
    }

    .content-wrapper {
        padding: 0 20px;
        text-align: center;
    }

    .why-us-label {
        text-align: center;
    }

    .why-us-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .why-us-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-us-description br {
        display: none;
    }

    .feature-list {
        text-align: left;
        margin: 0 auto;
        max-width: 90%;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 50px 0;
    }

    .container {
        padding: 0;
    }

    .benefits-container {
        flex-direction: column;
        gap: 2rem;
    }

    .content-wrapper {
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center;
    }

    .benefits-label {
        text-align: center;
    }

    .benefits-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .benefits-description {
        text-align: center;
        margin: 0 auto;
    }

    .slider-wrapper {
        width: 100% !important;
        padding: 0 !important;
    }

    .slide img {
        height: 300px;
    }

    .slide-content {
        text-align: center;
    }

    .slide-content h3 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px; 
    }
    
    .slide {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px; 
        width: 100%; 
        overflow: hidden;
        position: relative;
    }

    /* CTA Section */
    .cta-section {
        height: auto;
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .cta-description {
        padding: 0 20px;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        padding: 0;
        margin-bottom: 2rem;
    }

    .footer-links a {
        margin: 0;
        font-size: 0.9rem;
        color: #aaa;
    }

    .logo-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .logo-description {
        text-align: left;
        font-size: 0.9rem;
        margin: 1rem 0 2rem 0;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .socials-label {
        text-align: left;
        color: #770e0e;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .social-icons a {
        color: #770e0e;
    }

    .col-lg-6 {
        width: 100% !important;
        margin-bottom: 2rem;
    }

    .subscribe-form {
        margin-bottom: 2rem;
    }

    .subscribe-form input {
        background-color: #111;
        padding: 15px;
    }

    .subscribe-form button {
        background-color:#770e0e;
        padding: 15px;
    }

    .copyright {
        text-align: left;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #222;
    }

    .copyright p {
        color: #666;
        font-size: 0.9rem;
        margin: 0;
        display: flex;
        justify-content: space-between;
    }
   
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: #000;
        transition: right 0.3s ease;
        padding: 20px;
    }

    .navbar-collapse.show {
        right: 0;
    }
}

/* Additional Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .course-card {
        margin: 0 10px 20px;
    }

    .why-us-title {
        font-size: 2.2rem;
    }

    .benefits-title {
        font-size: 2.2rem;
    }

    .container-narrow {
        padding: 0 30px;
    }
}
/* Additional adjustments for very small screens */
@media (max-width: 380px) {
    .hero-section {
        background-position: 70% center; 
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 60px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        background-position: 60% center;
    }
}
