/* design.css */

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    background-color: #369CF0;
    color: #fff;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

header p {
    font-size: 1.2rem;
}

/* Navbar styles */
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #369CF0;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    color: #6C6D6E;
}

.navbar-nav .nav-link:hover {
    color: #369CF0;
}

/* Section headings */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #369CF0;
}

/* Card styles */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #369CF0;
}

.card-text {
    color: #6C6D6C;
}

/* Custom Styling for the Carousel Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #369CF0; /* Blue arrow color */
}
.carousel-control-prev,
.carousel-control-next {
    width: 50px; /* Adjust size */
    height: 50px; /* Adjust size */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    width: 30px; /* Adjust size of the arrow icon */
    height: 30px; /* Adjust size of the arrow icon */
}
/* Adjusting the carousel content width */
.carousel-inner {
    width: 90%;  /* Reduces content width to give space for arrows */
    margin: 0 auto;  /* Centering the carousel */
}
.carousel-item {
    padding-left: 10px;  /* Adding some space on the left side */
    padding-right: 10px; /* Adding some space on the right side */
}

.hero-header {
    background-image: url('img/NA-HeroNetwork.jpg');
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-color: #6C6D6E; /* Fallback color */
    min-height: 400px; /* Default height for the hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Centers text horizontally */
}

/* Adjust height for larger screens */
@media (min-width: 768px) {
    .hero-header {
        min-height: 500px;
    }
}

/* Adjust height and text for smaller screens */
@media (max-width: 576px) {
    .hero-header {
        min-height: 300px; /* Smaller height for compact screens */
    }

    .hero-header p {
        font-size: 0.9rem; /* Smaller text on mobile */
    }

    .hero-logo img {
        max-height: 70px; /* Shrinks logo on smaller screens */
    }
    #caseStudyCarousel .carousel-control-prev {
        left: -10px; /* Moves left arrow outward */
    }
    #caseStudyCarousel .carousel-control-next {
        right: -10px; /* Moves right arrow outward */
    }
    #caseStudyCarousel .carousel-inner {
        padding: 10px; /* Adds spacing inside the content */
    }
    #solutionsCarousel .carousel-control-prev {
        left: -10px; /* Moves left arrow outward */
    }
    #solutionsCarousel .carousel-control-next {
        right: -10px; /* Moves right arrow outward */
    }
    #solutionsCarousel .carousel-inner {
        padding: 10px; /* Adds spacing inside the content */
    }
}