*{
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    font-family: comfortaa, sans-serif;

}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
   
}
.navleft{
    width: 200px;
    height: 200px;
    background-image: url('logoNorthLadder.jpeg');
    background-position: center;
    background-size: cover;
}
.navright{
    width: 80%;
    align-items: center;
    justify-content: center;
}
.navrighttop{
    justify-content: center;
    align-items: center;
     text-align: center;

}
.navrighttop h1{
    font-size: 35px;
    color: #333333;
    margin-top: 20px;
    margin-bottom: 20px;
}
.navrighttop h1:hover{
    color: #007BFF;
    transition: 0.3s;
    background-color: #f0f8ff;
}
.navrightbottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;


}
.navrightbottom a{
    color: black;
    padding: 0px 10px;
}

.menu-toggle{
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #007BFF;
}
.navrightbottom a:hover{
    color: #007BFF;
    transition: 0.3s;
}
.navrightbottom .active{
    color: #007BFF;
    font-weight: bold;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
#slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Comfortaa', sans-serif;
}

.slide.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Dots Styles */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #007BFF;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

#home {
    padding-bottom: 40px;
}

/* About page layout */
.about-container {
    display: flex;
    gap: 30px;
    padding: 40px;
    align-items: stretch;
}

.about-left {
    flex: 1.1;
    min-width: 320px;
}

.about-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-radius: 8px;
    font-family: 'Comfortaa', sans-serif;
    color: #222;
}

.about-right h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: #0b3a66;
}

.about-right p, .about-right ul {
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-container { flex-direction: column; }
    .about-left, .about-right { min-width: 0; }
    .slideshow-container { height: 320px; }
}
/* Fixed Buttons */
.contact-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    z-index: 999;
}

.contact-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.scroll-to-top {
    position: sticky;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #007BFF;
    border-radius: 50%;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
    margin-right: 0;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    transform: scale(1.1);
}
.aboutusbar{
    background-color: #f8f9fa;
    padding: 10px 20px;
    font-family: 'Comfortaa', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
    justify-content: center;
}
.aboutusbar a{
    color: #333;
    font-weight: bold;
    margin-right: 15px;
}

/* Contact Us Section */
#contact-us {
    background: linear-gradient(135deg, #007BFF 0%, #007BFF 100%);
    padding: 50px 20px;
    color: white;
    font-family: 'Comfortaa', sans-serif;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

#contact-us h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.contact-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-col {
    text-align: center;
}

.contact-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-col p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-col a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid white;
    transition: opacity 0.3s ease;
}

.contact-col a:hover {
    opacity: 0.7;
}

.contact-footer-simple {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.social-simple {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-simple a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-simple a:hover {
    background: white;
    color: #007BFF;
}

@media (max-width: 768px) {
    #contact-us h1 {
        font-size: 28px;
    }
    
    .contact-simple {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-simple a {
        flex: 1;
        min-width: 100px;
    }
}

/* Additional responsive tweaks for smaller devices */
@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 12px;
        
       
    }

    .navleft {
        width: 120px;
        height: 120px;
        background-size: contain;
        background-position: left center;
        justify-content: center;
        margin-left:40%;
    }

    .navright {
        width: 100%;
        padding: 0 8px;
    }

    .navrighttop h1 {
        font-size: 20px;
    }

    .navrightbottom {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 15px;
        justify-content: center;
        padding-bottom: 8px;
        z-index: 1;
    }

    .slideshow-container {
        height: 320px;
      
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
        max-width: 90%;
    }

    .dots-container { bottom: 12px; gap: 8px; }

    .about-container {
        flex-direction: column;
        padding: 20px;
        gap: 18px;
    }

    .about-right {
        padding: 18px;
    }

    .slideshow-container#ongoing1-slideshow,
    .slideshow-container#ongoing2-slideshow {
        height: 280px;
    }

    .contact-container { padding: 0 12px; }
    .contact-simple { gap: 18px; }

    .contact-col h3 { font-size: 16px; }
    .social-simple a { padding: 6px 12px; font-size: 13px; }

    .contact-btn, .scroll-to-top { width: 50px; height: 50px; font-size: 20px; }
    
    /* Show hamburger and style mobile menu */
    .menu-toggle { display: block; position: absolute; right: 12px; top: 12px; z-index: 1001; }

    .navrightbottom { display: none; }
    .navrightbottom.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 12px;
        top: 56px;
        background: white;
        color: #222;
        padding: 10px 12px;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        min-width: 160px;
        gap: 6px;
    }

    .navrightbottom.open a { color: #007BFF; padding: 8px 12px; }
}

@media (max-width: 320px) {
    .navleft {
        margin-left:30%;
    }
    .navrighttop h1 { font-size: 16px; }
    .navrightbottom { font-size: 13px; gap: 6px; }
    .slideshow-container { height: 220px; }
    .slide-content h2 { font-size: 18px; }
    .slide-content p { font-size: 13px; }
    .dots-container { bottom: 8px; }

    .about-right h1 { font-size: 20px; }
    .about-container { padding: 12px; }

    .contact-container { padding: 0 8px; }
    .contact-simple { gap: 12px; }
    .contact-col h3 { font-size: 15px; }
    .social-simple a { padding: 6px 10px; font-size: 12px; }

    .contact-btn, .scroll-to-top { width: 44px; height: 44px; font-size: 18px; }
}
@media(max-width:430px){
    .navleft {
        margin-left:34%;
    }
}



