/* styles.css */

/* Import Modern Font */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* General Styling */
body {
    font-family: 'lato', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

/* Navbar Styling */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    z-index: 1000;
}
.navbar.scrolled {
    background-color: #0A285C;
}
.nav-link {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 200;
    transition: color 0.3s ease-in-out;
    margin: 0 10px;
    font-family: "Playfair Display", serif;
}
.nav-link:hover {
    color: #0A285C;
}
.logo{
    height: 100px;
}

/* Hero Section Carousel */
#hero-carousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
#hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Transparent overlay */
    z-index: 1;
}
#hero-carousel .carousel-item:nth-child(1) {
    background-image: url('https://via.placeholder.com/1920x1080?text=Logistics+Services');
}
#hero-carousel .carousel-item:nth-child(2) {
    background-image: url('https://via.placeholder.com/1920x1080?text=Educational+Solutions');
}
#hero-carousel .carousel-item:nth-child(3) {
    background-image: url('https://via.placeholder.com/1920x1080?text=Branding+Services');
}

.carousel-caption .btn:hover {
    background-color: #0A285C;
    color: #E8EAE7;
}

/* Fix Image Fit for Smaller Screens */
.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    display: none;
}


/* Center the write-ups vertically and horizontally */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%; /* Ensure the captions don’t span too wide */
    max-width: 800px;
}

/* Increase font sizes for better readability */
.carousel-caption h1 {
    font-size: 3.2rem; /* Bigger headline */
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.carousel-caption p {
    font-size: 1.4rem; /* Larger subtext */
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Adjust button sizes for better interaction */
.carousel-caption .btn {
    font-size: 1.5rem; /* Larger button text */
    padding: 1rem 2.5rem;
    background-color: #E8EAE7;
    color: #0A285C;
    border: none;
    transition: background-color 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 4rem;
    }
    .carousel-caption p {
        font-size: 1.9rem;
    }
    .carousel-caption .btn {
        font-size: 1.25rem;
    }
    .nav-link {
        background: #0A285C;
    }
    .btn-primary{
        margin: 25px 0;
    }
}

@media (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
    .carousel-caption p {
        font-size: 1.3rem;
    }
    .carousel-caption .btn {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.8rem;
    }
}


body {
    
    line-height: 1.6;
    color: #2c3e50;
}

.accordion-button {
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    background-color: #f8f9fa;
    color: #2c3e50;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
    background-color: #007bff;
    color: #fff;
}

.accordion-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #007bff;
}

.accordion-body p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}


body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

p {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.video-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
}

.btn-whatsapp{
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover{
    background-color: #067214;
    color: white;
}
.footer-link a{
    color: white;
}
.footer-link a:hover{
    color: #007bff;
}