@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

/********** Template CSS **********/
:root {
    --primary:#365fa1;
    --light: #EFF5FF;
    --dark: #39393b;
}

body {
    font-family: 'Inter', sans-serif;
}

.display-4 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.point-list {
    font-family: 'Inter', sans-serif;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.back-to-top {
    position: fixed;
    right: 32.5px;
    bottom: 45px;
    z-index: 99;
}

#whatsapp-btn {
    position: fixed;
    right: 32.5px;
    bottom: 100px;
    z-index: 99;
    background: #25D366;
    border-color: #25D366;
}


@media (max-width: 768px) {
    .back-to-top {
        position: fixed;
        right: 27px;
        bottom: 40px;
        z-index: 99;
    }
    
    #whatsapp-btn {
        position: fixed;
        right: 27px;
        bottom: 95px;
        z-index: 99;
        background: #25D366;
        border-color: #25D366;
    }

    .btn-lg-square {
        width: 44px;
        height: 44px;
    }
}

/*** Navbar ***/

.navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 8px;
    }

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    margin-top: 50px; /* Adjust the value as needed */
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 100px;
}


.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.paragraph {
    color: darkgrey;
    text-align: justify;
    font-size: 1.1rem; /* You can adjust this value as needed */
}

.flex-container {
    display: flex;
}

/*** Company Logo ***/
/* Ensure the container and row are full width */
.container.logo {
    width: 100%;
    padding: 0 15px; /* Prevent content from touching the edges */
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
}

/* Centering the logo and adding some margin for mobile responsiveness */
img {
    max-width: 100%; /* Ensure image is responsive */
    height: auto; /* Maintain aspect ratio */
}

/* For mobile view (under 768px), you might want the image centered and take up full width */
@media (max-width: 768px) {
    .container.logo {
        text-align: center; /* Center the image */
        margin-bottom: 0px;
    }
}

/*** Company Group ***/
.flex-container.group-text {
    justify-content: center;
    white-space: pre;      /* Preserves all spaces exactly as written */
    font-size: clamp(10px, 2vw, 16px); /* Dynamically adjusts font size */
    text-align: center;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    max-width: 1200px;
  }

@media (max-width: 768px) {
    .flex-container.group-text {
        justify-content: center;
        text-align: center; /* Center the image */
        font-size: clamp(5px, 2vw, 16px); /* Dynamically adjusts font size */
        margin-top: 10px;
        margin-bottom: 0px;
        max-width: 768px;
    }
}

/*** Header ***/
/* Ensure proper Flexbox layout */
.flex-container.header {
    justify-content: flex-start; /* Aligns elements to the left */
    gap: 0px; /* Remove extra space */
    padding: 10px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
    align-items: center; /* Keep image and text aligned */
}

/* Image section (left) */
.image {
    flex: 1.6;
    max-width: 55%;
}

/* Image inside the container */
.image img {
    max-width: 100%;
    height: 480px; 
    border-radius: 10px;
}

/* Text section (right) */
.text {
    flex: 1.8; /* Text takes more space */
    max-width: 52%;
}

/* Text styling */
.paragraph {
    color: #262525;
    text-align: justify;
    font-size: 1.2rem; /* Adjust font size as needed */
}

.text h1 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px; /* Adjust spacing as needed */
}

.text-content {
    flex: 1; /* The text will take up the remaining space */
    padding: 20px;
}

/* For mobile view (under 768px), you might want the image centered and take up full width */
@media (max-width: 768px) {
    .col-md-4 {
        text-align: center; /* Center the image */
        margin-bottom: 10px; /* Add some space below the image */
    }

    .flex-container.header {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align content */
        text-align: center;
        padding-bottom: 5px;
    }

    .image, .text {
        max-width: 90%; /* Allow content to take up more space */
        flex: none; /* Prevents flex from resizing */
    }

    .image img {
        height: auto; /* Adjust image height for better responsiveness */
        max-width: 100%;
        padding-bottom: 15px;
    }

}


/*** Experience ***/
/* Container for the columns */
.flex-container.experience {
    justify-content: center; /* Aligns elements to the left */
    gap: 30px; /* Remove extra space */
    padding: 10px;
    padding-bottom: 15px;
    width: 100%;
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
    align-items: center; /* Keep image and text aligned */
}

.text-column h1 {
    font-family: 'Inter', sans-serif;
    margin-top: 10px; /* Adjust space above h1 */}

.text.experience1 {
    align-self: flex-start; /* Aligns this item to the top */
    padding: 10px;
    flex: 0 4 auto;
}

.text.experience2 {
    align-self: flex-start; /* Aligns this item to the top */
    padding: 10px;
    flex: 0 5 auto;
}

/* Style the unordered list */
.point-list {
        list-style-type: disc; /* Adds bullet points */
        padding-left: 0; /* Removes additional spacing */
        margin-left: 20px; /* Adjusts the left margin for alignment */
        font-size: 19px;
        color: #333;
        font-family: 'Inter', sans-serif;
        line-height: normal;
        text-align: left;
}

@media (max-width: 768px) {
    .flex-container.experience {
        justify-content: center; /* Aligns elements to the left */
        flex-direction: column; /* Stack vertically */
        gap: 0px; /* Remove extra space */
        padding: 10px;
        width: 100%;
        max-width: 1200px; /* Prevent it from stretching too wide */
        margin: auto; /* Center the container */
        align-items: center; /* Keep image and text aligned */
    }    

    .point-list li {
        text-align: left; /* Ensure each list item is aligned left */
    }
    
    .text.experience1, .text.experience2 {
        max-width: 100%; /* Full width on mobile */
        align-self: flex-start; /* Aligns this item to the top */
        padding: 15px;
        padding-bottom: 0px;
        flex: 0 4 auto;
    }

    .text.experience1 h1 {
        text-align: center;
    }
}


/* What we offer */
.flex-container.offer {
    justify-content: center; /* Aligns elements to the left */
    gap: 30px; /* Remove extra space */
    padding: 10px;
    padding-bottom: 50px;
    width: 100%;
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
    align-items: center; /* Keep image and text aligned */
}

/* Styling for the service items */
.service-item {
    position: relative;  /* Ensure position context for inner content */
    text-align: center;
    display: flex;  /* Use flexbox for the service item */
    flex-direction: column;  /* Stack the content vertically */
    justify-content: flex-start;  /* Vertically center the content */
    align-items: center;  /* Horizontally center the content */
    height: 100%;  /* Make sure the item takes full height of the column */
    padding: 20px;
}

.service-item .rounded-circle {
    width: 100px !important; /* Adjust as needed */
    height: 100px !important;}

.service-item img {
        width: 80px; /* Adjust as needed */
        height: 80px;
}
    
.d-flex {
    display: flex;  /* Use flexbox */
    align-items: center;  /* Vertically center content */
    justify-content: center;  /* Horizontally center content */
    background-color: white;  /* White background for circle */
    border-radius: 50%;  /* Make the container a circle */
    width: 100px;  /* Circle width */
    height: 100px;  /* Circle height */
    margin-bottom: 20px;  /* Space below the circle */
}

.d-flex img {
    width: 90%;  /* Make the image take the full width of the circle */
    height: 90%;  /* Make the image take the full height of the circle */
    object-fit: cover;  /* Ensure the image covers the circle area, cropping if necessary */
}

p.mb-1 {
    text-align: left;  /* Align text to the left */
}

/* Styling the unordered list to add bullets and justify content */
.service-item ul {
    list-style-type: disc;  /* Adds bullet points */
    margin-left: 20px;  /* Indent the list from the left */
    text-align: left;  /* Align text to the left */
    padding-left: 0;  /* Remove padding from left */
}

.service-item li {
    margin-bottom: 10px;  /* Add spacing between points */
    font-size: 19px;  /* Increase font size by 1 */
    color: #333333;  /* Dark grey color for text */
}

ul.mb-1 {
    text-align: justify;
}

.paragraph.offer {
    text-align: center;
}

@media (max-width:762px) {
    .flex-container.offer {
        padding-bottom: 5px;
    }
}

@media (min-width: 992px) {
    .container.offer {
        max-width: 100% !important;
    }

    .paragraph.offer {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .paragraph.offer {
        text-align: justify;
    }
}

@media (min-width: 1400px) {
    .paragraph.offer {
        text-align: justify;
    }
}


/*** Contact ***/
.flex-container.contact {
    justify-content: center; /* Aligns elements to the left */
    gap: 0px; /* Remove extra space */
    padding: 20px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
    align-items: center; /* Keep image and text aligned */
}

.flex-container.blue-box {
    background-color: #2970bc !important; /* Set solid background color */
    justify-content: flex-start; /* Aligns elements to the left */
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 0px; /* Remove extra space */
    width: 100%;
    max-width: 1200px; /* Prevent it from stretching too wide */
    margin: auto; /* Center the container */
    align-items: center; /* Keep image and text aligned */
}
    
/* Set white color for the heading */
.contact-box.left h1 {
    font-family: 'Inter', sans-serif;
    color: white !important; /* Ensure the heading is white */
    margin-top: 0px !important; /* Remove the space above the heading */
    margin-bottom: 35px; /* Keep the space below the heading */
    text-align: left; /* Center the heading text */
}

#contact-group {
    font-size: 1.2em;
}

.contact-box.middle h4 {
    font-family: 'Inter', sans-serif;
    color: white !important; /* Ensure the heading is white */
    margin-top: 5px !important; /* Remove the space above the heading */
    text-align: left; /* Center the heading text */
}

.contact-info.left {
    text-align: center;
}

.contact-info.middle {
    text-align: left;
}

#location, #location ~ span {
    display: inline-block;
    vertical-align: middle;
}

.contact-box {
    display: flex;
    flex-direction: column; /* Stack text vertically */
    align-items: center;
}

/* Left Contact Box */
.contact-box.left {
    color: white !important; /* Set text color to white */
    justify-content: center; /* Center the content vertically */
    height: 100%; /* Ensure the left box takes full height */
    text-align: center; /* Center the text inside paragraphs and heading */
    font-size: 1.1em; /* Increase font size by 1 */
    width: 40%; /* Set the left box width to 50% of the parent container */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Middle Contact Box */
.contact-box.middle {
    color: white !important; /* Set text color to white */
    justify-content: flex-end; /* Center the content vertically */
    height: 100%; /* Ensure the left box takes full height */
    text-align: center; /* Center the text inside paragraphs and heading */
    font-size: 1.1em; /* Increase font size by 1 */
    width: 40%; /* Set the left box width to 50% of the parent container */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Right Contact Box */
.contact-box.right {
    width: 20%; /* Set the left box width to 50% of the parent container */
}

.img-fluid.whatsapp {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Set your desired maximum height in pixels */
}

.contact-info.middle .contact-phone {
    margin-bottom: 5px;
}

.contact-info.middle .contact-email {
    margin-bottom: 50px;
}

.contact-info.middle .contact-location {
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .flex-container.blue-box {
        display: flex;
        flex-direction: column; /* Stack vertically */
    }

    .contact-box.left h1 {
        font-family: 'Inter', sans-serif;
        color: white !important; /* Ensure the heading is white */
        margin-top: 0px !important; /* Remove the space above the heading */
        margin-bottom: 20px; /* Keep the space below the heading */
        text-align: left; /* Center the heading text */
    }

    .contact-box.left, .contact-box.middle, .contact-box.right {
        width: 100%;
        display: flex;
        flex-direction: column; /* Stack vertically */
    }

    #contact-group {
        font-size: 1.1em;
    }

    /* Left Contact Box */
    .contact-box.left {
        color: white !important; /* Set text color to white */
        justify-content: center; /* Center the content vertically */
        height: 100%; /* Ensure the left box takes full height */
        text-align: center; /* Center the text inside paragraphs and heading */
        font-size: 0.9em; /* Increase font size by 1 */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .contact-info.left {
        line-height: normal;
    }

    /* Middle Contact Box */
    .contact-box.middle {
        color: white !important; /* Set text color to white */
        justify-content: flex-end; /* Center the content vertically */
        height: 100%; /* Ensure the left box takes full height */
        text-align: center; /* Center the text inside paragraphs and heading */
        font-size: 0.9em; /* Increase font size by 1 */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .img-fluid.whatsapp {
        padding-top: 10px;
        padding-bottom: 10px;
        max-width: 100%;
        height: auto;
        max-height: 100px; /* Set your desired maximum height in pixels */
    }

    .contact-info.middle .contact-phone {
        margin-bottom: 5px;
    }
    
    .contact-info.middle .contact-email {
        margin-bottom: 15px;
    }
    
    .contact-info.middle .contact-location {
        margin-bottom: 15px;
    }
}

/*** Proud Member ***/
.flex-container.member {
    flex-direction: row;
    align-items: center;
    margin: auto;
    padding-top: 20px;
    max-width: 1160px; /* Prevent it from stretching too wide */
}

.flex-container.member-container-left {
    flex-direction: column;
    width: 62.5%;
}

.flex-container.member-container-right {
    flex-direction: column;
    width: 37.5%;
}

#member-title {
    align-self: flex-start;
}

.flex-container.member-img-inner {
    flex-direction: row;
    align-items: center;
    gap: 37.5px;
}

.member-column {
    display: flex;
    align-items: center;
}

#member-img {
    max-height: 100px;
}



@media (max-width: 768px) {
    .flex-container.member {
        flex-direction: column;
        align-items: left;
        margin: auto;
        padding: 20px;
        padding-top: 0px;
        max-width: 768px; /* Prevent it from stretching too wide */
    }
    
    .flex-container.member-container-left {
        flex-direction: column;
        width: 100%;
        padding-bottom: 20px;
    }
    
    .flex-container.member-container-right {
        flex-direction: column;
        width: 100%;
    }
    
    #member-title {
        align-self: flex-start;
        font-size: 0.98em;
    }
    
    .flex-container.member-img-inner {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .member-column {
        display: flex;
        align-items: center;
    }
    
    #member-img {
        height: 35px;
    }
}