* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #008ef2;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    background-color: #008ef2;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5vh;
    color: white;
}

footer p {
    font-family: 'Montserrat';
    font-size: 16px;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #ffff;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

/* Navigation Bar */

.navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.navbar .logo {
    transition: transform 0.3s ease-in-out;
}

.navbar .logo img {
    object-fit: contain;
    height: 100px; 
    width: 200px; 
    border-radius: 10px;
}

.navbar .logo:hover {
    transform: scale(1.2);
}

.navbar .links {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
}

.navbar .links a{
    color: #ffff;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px 15px;
    transition: 0.3s;
    transition-property: inherit;
    transform: scale(0.4) ease;
}

header .links a:hover,
header .links a.active{
    scale: 1.3;
    background: #ffff;
    color: black;
    border-radius: 20px;
}

.navbar .toggle_btn {
    color: #ffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
    color: black;
    height: 50px;
    width: 200px;
    text-align: center;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action_btn:hover{
    scale: 1.1;
}

.action_btn:active{
    scale: 0.95;
}

/* Dropdown Menu */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    display: flex;
    flex-direction: column;
    height: auto;

}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* INDEX */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;background-image: url('src/kevin-jd-S5SQzWdUhoE-unsplash.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    aspect-ratio: 16/9;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(3px);
}

.left-centered-div {
    text-align: center;
    height: 60%;
    width: 70%;
    padding: 20px;
    margin: 0 auto;
}

.hero-section .content {
    position: relative;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
}

.hero-section .content h1 {
    text-align: left;
    font-size: 90px;
    font-weight: 1200;
    letter-spacing: 5px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.hero-section .content p {
    text-align: justify;
    font-size: 26px;
    font-family: 'Source Sans 3';
}

.hero-section .content p br {
    display: none;
}

.content {
    width: 100%;
    height: 100%;
    color: #fff;
}


.body {
    width: 100%;
    height: auto;
    background-color: #fff;
}

.new-content {
    height: 70vh;
    display: flex;
    flex-direction: row;
}

.left-column {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #008ef2;
}

.new-content .left-column h2 {
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-size: 60px;
    font-weight: bold;
    color: #ffff;;
}

.new-content .left-column p {
    font-family: 'Source Sans 3';
    font-size: 20px;
    text-align: center;
    color: #ffff;
}

.right-column {
    width: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url('src/scott-blake-x-ghf9LjrVg-unsplash.jpg');
    background-size: cover; /* Adjust as needed */
    background-position: center center; /* Adjust as needed */
    background-repeat: no-repeat;
}

.card {
    background: #ffff;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10px; /* Optional: Add margin for spacing between items */
    transition: transform 0.3s ease-in-out; 
}

.gallery img {
    width: 80%;
    max-height: 70%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-top: 20px;
}

.card .card-title h6 {
    font-size: 18px;
    font-weight: bold;
}


/* SERVICES */

.image-slider {
    position: relative;
    overflow: hidden;
    height: auto;
}

.slider {
    height: 70vh;
    width: 100%;
    display: flex;
    aspect-ratio: 16/9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 1 1.5rem 1rem -1rem hsla(0, 0%, 0%, 0.25);
    overflow: hidden;
}

.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services {
    height: 30vh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services h1 {
    color: #000;
    font-family: 'Montserrat';
    font-size: 60px;
    font-weight: bold;
}

.services-content {
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.image-holder {
    width: 40%;
    height: 100%;
    display: flex;
    padding: 10px;
}

.image-holder img {
    height: 100%;
    width: 40%;
    flex: 1 0 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.desc {
    width: 60%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.header-textbox {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-textbox h1 {
    color: #0070BF;
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: bold;
}

.header-textbox p {
    color: black;
    font-family: 'Source Sans 3';
    font-size: 22px;
    text-align: justify;
}

.maps-holder {
    width: 100%;
    height: 25vh;
}

/* CONTACTS */

.contacts {
    height: auto;
    width: 100%;
    background: #008ef2;
    color: #fff;
    display: flex;
    flex-direction: row;
}

.contacts-holder {
    height: auto;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.contacts-header {
    height: 30%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.contacts-holder .contacts-header h2 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contacts-content-holder {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.separation {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}

.separation p {
    font-family: 'Source Sans 3';
    padding-left: 20px;
    font-size: 18px;
}

.about-container {
    height: auto;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.about-header {
    height: 30%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.about-holder {
    height: 80%;
    width: 100%;
    text-align: justify;
}

.about-container .about-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.about-container .about-holder p {
    font-family: 'Source Sans 3';
    font-size: 18px;
}

.about-holder,
.about-header,
.contacts-header,
.contacts-content-holder {
    width: 100%;
    padding: 5px 20px;
}

/* Responsive Styles */

/* Mobile Phones (up to 767px) */
@media only screen and (min-width: 360px) and (max-width: 767px) {
    .navbar .links, .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 100;
    }

    .hero-section {
        height: 60vh;
    }

    .left-centered-div {
        height: 60%;
        width: 80%;
        padding: 0;
        margin: 0;
    }

    .hero-section .content h1 {
        font-size: 28px;
    }

    .hero-section .content p {
        font-size: 16px;
    }

    .hero-section .content p br {
        display: none;
    }

    .new-content {
        flex-direction: column;
        height: auto;
        display: flex;
    }

    .left-column {
        width: 100%;
        height: 50vh;
        background: #008ef2;
        padding: 0 20px;
    }

    .new-content .left-column h2 {
        margin-bottom: 0;
        font-size: 40px;
        color: #ffff;
    }

    .new-content .left-column p {
        font-size: 14px;
        color: #ffff;
        font-family: 'Montserrat', sans-serif;
    }

    .new-content .left-column p br {
        display: none;
    }

    .right-column {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .gallery {
        width: 90%;
        height: 50%;
    }

    /* SERVICES */

    .image-slider {
        height: auto;
    }

    .slider {
        height: 30vh;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .services {
        height: 15vh;
    }

    .services h1 {
        font-size: 30px;
    }

    .services-content {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .image-holder {
        width: 80%;
        height: 20%;
        padding: 0;
    }

    .desc {
        width: 90%;
        height: 80%;
        justify-content: flex-start;
    }

    .desc h5 {
        font-size: 16px;
    }

    .header-textbox {
        margin: 0;
        width: 100%;
    }

    .header-textbox h1 {
        font-size: 20px;
    }

    .header-textbox p {
        font-size: 14px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }

    @media screen and (orientation: landscape) {
        .hero-section {
            height: 250px;
            width: 100%;
        }

        .left-column {
            width: 100%;
            height: 300px;
            padding: 0 20px;
        }

        .slider {
            height: 250px;
        }
    }
}

/* Tablets (768px to 991px) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .navbar .links, .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 99;
    }

    .hero-section {
        height: 40vh;
    }

    .left-centered-div {
        height: 60%;
        width: 80%;
        padding: 0;
        margin: 0;
    }

    .hero-section .content h1 {
        font-size: 40px;
    }

    .hero-section .content p {
        font-size: 16px;
    }

    .hero-section .content p br {
        display: none;
    }

    .new-content {
        flex-direction: column;
        height: auto;
        display: flex;
    }

    .left-column {
        width: 100%;
        height: 40vh;
        padding: 0 20px;
    }

    .new-content .left-column h2 {
        margin-bottom: 0;
        font-size: 50px;
    }

    .new-content .left-column p {
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
    }

    .new-content .left-column p br {
        display: none;
    }

    .right-column {
        width: 100%;
        height: 40vh;
        flex-direction: row;
    }

    .gallery {
        width: 80%;
        height: 50%;
    }

    .desc h5 {
        font-size: 14px;
    }

    /* SERVICES */

    .image-slider {
        height: auto;
    }

    .slider {
        height: 30vh;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .services {
        height: 15vh;
    }

    .services h1 {
        font-size: 40px;
    }

    .services-content {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .image-holder {
        width: 80%;
        height: 20%;
        padding: 0;
    }

    .desc {
        width: 90%;
        height: 80%;
        justify-content: flex-start;
    }

    .header-textbox {
        margin: 0;
        width: 100%;
    }

    .header-textbox h1 {
        font-size: 26px;
    }

    .header-textbox p {
        font-size: 16px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }

    @media screen and (orientation: landscape) {
        .hero-section {
            height: 350px;
            width: 100%;
        }

        .left-column {
            width: 100%;
            height: 400px;
            padding: 0 20px;
        }

        .right-column {
            width: 100%;
            height: 400px;
        }

        .desc h5 {
            font-size: 16px;
        }

        .slider {
            height: 250px;
        }
    }
}

/* Laptops (993px to 1199px) */
@media only screen and (min-width: 993px) and (max-width: 1199px) {
    
    .navbar {
        gap: 0;
    }

    .hero-section {
        height: 50vh;
    }
    
    .left-centered-div {
        height: 60%;
        width: 80%;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        margin: 0 auto; /* Center the container itself horizontally */
    }
    
    .hero-section .content h1 {
        text-align: left;
        font-size: 50px;
    }
    
    .hero-section .content p {
        font-size: 20px;
    }
    

    .hero-section .content p br {
        display: none;
    }

    .new-content {
        height: auto;
        display: flex;
    }

    .left-column {
        width: 50%;
        height: 50vh;
        padding: 0 20px;
    }

    .new-content .left-column h2 {
        margin-bottom: 0;
        font-size: 60px;
    }

    .new-content .left-column p {
        font-size: 16px;
        color: #001C30;
        font-family: 'Montserrat', sans-serif;
    }

    .new-content .left-column p br {
        display: none;
    }

    .right-column {
        width: 50%;
        height: 50vh;
    }

    .gallery {
        width: 50%;
        height: 30%;
    }

    .desc h5 {
        font-size: 14px;
    }

    /* SERVICES */

    .image-slider {
        height: auto;
    }

    .slider {
        height: 30vh;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .services {
        height: 15vh;
    }

    .services h1 {
        font-size: 50px;
    }

    .services-content {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .image-holder {
        width: 80%;
        height: 20%;
        padding: 0;
    }

    .desc {
        width: 90%;
        height: 80%;
        justify-content: flex-start;
    }

    .header-textbox {
        margin: 0;
        width: 100%;
    }

    .header-textbox h1 {
        font-size: 35px;
    }

    .header-textbox p {
        font-size: 18px;
    }

    /* CONTACTS */

    .contacts {
        height: auto;
        flex-direction: column;
    }

    .contacts-holder {
        height: 50%;
        width: 100%;
    }

    .contacts-content-holder {
        flex-direction: column;
        gap: 0;
    }

    .contacts-holder .contacts-header h2 {
        font-size: 24px;
    }

    .separation p {
        font-size: 14px;
        padding-left: 5px; 
    }

    .about-container {
        height: 30%;
        width: 100%;
    }

    .about-container .about-header h2 {
        font-size: 24px;
    }

    .about-container .about-holder p {
        font-size: 14px;
    }

    footer p {
        font-size: 10px;
    }

    @media screen and (orientation: landscape) {
        .hero-section .content h1 {
            font-size: 40px;
        }

        .hero-section .content p {
            font-size: 16px;
        }

        .slider {
            height: 350px;
        }
    }
}

/* Monitors (1200px and above) */
@media only screen and (min-width: 1200px) {
    
    .hero-section .content h1 {
        text-align: left;
        font-size: 80px;
    }
    
    .hero-section .content p {
        font-size: 24px;
    }
    
    .new-content .left-column h2 {
        font-size: 50px;
    }

    .new-content .left-column p {
        font-size: 18px;
    }
}