
 /* --- Fonts --- */
 .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}
/* --- ---*/


* {
    font-family: 'Poppins', Poppins;
}

body {
    overflow-x: hidden;
}

.borderRadius {
    border-radius: 1.5rem !important;
    transition: border-radius 0.3s ease !important;
}

.borderRadius-btns {
    border-radius: 0.8rem !important;
}


/* --- nav bar --- */
.container {
    width: 100%;
    height: 100%;

    overflow-x: hidden;
}

.logo {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 2%;
}

.nav-item {
   margin-right: 40px;
}

.navbar {
   padding-right: 5%;
   padding-left: 5%;
}

.navbar-nav {
    margin-left: auto; /* Align the navbar items to the right */
}

.navbar-nav .nav-link.active {
    color: #007EB1 !important;
}

.navbar-scrolled {
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1); /* Add shadow when navbar is scrolled */
}

.navbar-collapse.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98); /* Adjust the background color and opacity as needed */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar-collapse.fullscreen .navbar-nav {
    flex-direction: column;
}

.navbar-collapse.fullscreen .nav-item {
    margin-bottom: 20px;
}

.navClose-button {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 25px;
}
/* --- --- */


/* --- portfolio section --- */
.home-content-btn {
    background-color: #007EB1;  
    font-size: 15px !important; 
    padding: 15px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.home-content-btn:hover {
    background-color: #006380; /* Change background color on hover */
}

.portfolio {
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-top: 10% !important;
}

.view-all {
    color: #007EB1 !important;
    text-decoration: none;
}

.portfolio-cards .card {
    background: linear-gradient(165.38deg, rgba(238, 242, 247, 0.75) 7.13%, rgba(178, 204, 228, 0.75) 91.73%);
    border: none;
    position: relative; /* Ensure positioning context */

}

.portfolio-cards img {
    height: 250px;
    width: auto;
    position: relative;
}

.portfolio-cards p {
    font-size: 13px !important; 
}

.card-btn {
    background-color: white;
    color: #007EB1;
    border: none;
    border-radius: 50%;
    z-index: 2; 
    position: absolute;
    bottom: 8%; /*30px*/
    right: 10%; /*30px*/
}

.card-btn:hover {
    background-color: #007EB1; /* Change background color on hover */
}

.card-btn:hover i{
    color: white;
}

.card-btn i{
    color: #007EB1;
}

.image-container {
    text-align: center; /* Horizontally center the image */
    align-items: center;
}

.custom-width-modal .modal-dialog {
    max-width: 55%; 
}

.modal-close-btn {
    margin-top: 1.25% !important;
    margin-left: 97.4% !important;
}

.des {
    color: #1E1C3199;
    font-size: 16px !important; 
}

.Ellipse {
    width: 150px;
    height: 150px;
    border-radius: 100% 0 0 0;
    overflow: hidden; /* Hide overflow outside the border-radius */

    background: linear-gradient(47.73deg, rgba(65, 88, 208, 0.4) 40.63%, rgba(80, 178, 200, 0.4) 58.44%, rgba(112, 255, 152, 0.236) 71.39%);
    
    position: absolute; /* Position relative to the card-container */
    bottom: 5px; /* Align to the bottom */
    right: 5px; /* Align to the right */

    -webkit-filter: blur(30px); /* Prefixed version for older WebKit-based browsers */
    filter: blur(30px); /* Standard version for modern browsers */

}
/* --- --- */


/* --- get in touch section --- */
.getInTouch {
    margin-top: 5%;
    margin-left: 7.5%;
    margin-right: 7.5%;
    height: fit-content !important;
}

.getInTouch .card {
    background: linear-gradient(79.42deg, #527FF6 26.94%, #50B2C8 71.39%, rgba(112, 255, 152, 0.4) 112.35%);
    border: none;
}

.getInTouch .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    padding-left: 15% !important;
    padding-right: 15% !important;
}

.gitRow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.getInTouch h3 {
    color: white;
}

.btn-div {
    display: flex !important;
    justify-content: center !important; /* Center content horizontally */
    align-items: center !important; /* Center content vertically */
    height: auto;

    top: 50% !important;
    bottom: 50% !important;
}

.getInTouch .btn {
    color: #007EB1; 
    background-color: white; 
    font-size: 15px !important; 
    padding: 15px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    border: none;
    
}

.getInTouch .btn:hover {
    background-color: #007EB1; /* Change background color on hover */
    color: white;
    border: none;
}

/* modal */
.custom-width-btn-modal .modal-dialog {
    max-width: 60%; 
}

.modal-topic {
    width: 65%;
}


.modal-btn {
    background-color: #007EB1 !important;  
    color: white !important;
}

.modal-btn:hover {
    background-color: #006380;
}

.circular-container {
    width: 15px;
    height: 15px;
    border-radius: 50%; /* This makes the container circular */
    background-color: #cbcbcb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5%;
    margin-left: 97%;
    border: none;
    padding: 10px;
}

.btn-close-btn {
    padding: none;
    color: white;
    border: none;
    border-radius: 50%; /* This makes the button circular */
    cursor: pointer;
    font-size: 12px !important;
    background-color: #cbcbcb;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* --- --- */


/* --- footer --- */
.footer {
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-top: 8%;
}

.f-cont {
    font-size: 15px;
    color: #222136B2;
}

.f-cont a {
    text-decoration: none !important;
    color: #222136B2 !important;
}

.btn-with-image {
    background-image: url('images/Vector.png'); 
    background-size: cover;
    background-position: center;
    padding: 12px; 
    border: none;
    color: transparent !important;
    text-align: center;
    background-repeat: no-repeat;

    -webkit-background-size: cover; /* Safari 3.0+ */
    -moz-background-size: cover;    /* Firefox 3.6+ */
    -o-background-size: cover;      /* Opera 9.5+ */

    background-color: transparent;  /* Fallback color */
    display: inline-block;          /* Ensure proper button display */
    cursor: pointer;                /* Ensure the cursor is a pointer */
}

.input-with-image .btn-with-image {
    position: absolute;
    left: 90%; 
    top: 50%;
    transform: translateY(-50%);
}

.fb {
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.btn-grp {
    width: max-content !important;
    text-align: center !important;
}

.icon-btn {
    border: 1px solid #007EB1 !important;
    border-radius: 100%;
    
    padding-top: 10px;
    padding-bottom: 10px;

    padding-left: 15px;
    padding-right: 15px;

    background-color: white;

    color: #007EB1;
}

.icon-btn:hover {
    background-color: #007EB1;
}

.icon-btn:hover i{
    color: white;
}

.icon-btn i {
    color: #007EB1;
    font-size: 15px;
}

.footer a {
    text-decoration: none !important;
    color: #222136B2 !important;
}
/* --- --- */


/* --- --- --- --- */

/* screen sizes smaller than 350px (mobile) */
@media (max-width: 351px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }


    .logo {
        margin-left: -20px;
    }


    .portfolio {
        padding-top: 30% !important;

        margin-left: 15px;
        margin-right: 15px;
    }

    .pro-cardTopic {
        text-align: left !important;
    }

    .modal-body .row {
        flex-direction: column;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 100%; 
    }

    .des {
        text-align: left;
    }

    .modal-close-btn {
        margin-top: 3% !important;
        margin-left: 94% !important;
    }

    .circular-container {
        margin-top: 1.5%;
        margin-left: 95%;
    }

    .getInTouch {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 50px;
    }

    .gitCard .row {
        flex-direction: column;
        display: flex;
        align-items: center;

        width: 100%;
    }

    .gitCard .col {
        width: 100% !important;
        display: flex;
        align-items: center;
    }

    .getInTouch .card-body {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .getInTouch h3 {
        font-size: large;
        text-align: center;
        width: fit-content;

        margin-bottom: 20px;
    }

    .getInTouch .btn { 
        font-size: small !important; 
        width: max-content !important;
    }

    .modal-topic {
        width: fit-content !important;
        text-align: left;
    }

    .modal-form {
        text-align: left !important;
    }

    .footer {
        margin-left: 15.5px;
        margin-right: 15.5px;
    }

    .footer .row {
        flex-direction: column !important;
    }

    .f-col {
        text-align: left; 
    }

    .f-col img {
        display: inline-block; /* Ensure the image behaves like an inline element */
    }

    .social-btns {
        display: flex;
        justify-content: left; 
        align-items: start; 
        flex-direction: column !important;
    }


    .f-cont {
        text-align: left !important;
    }

    .f-col {
        margin-left: -15px;
    }

    .modal-body .f-col {
        margin-left: -25px;
    }

}


/* screen sizes smaller than 500px (tab / mobile) */
@media (min-width: 351px) and (max-width: 500px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }

    .logo {
        margin-left: -22px;
    }



    .portfolio {
        margin-top: 30% !important;

        margin-left: 16px;
        margin-right: 16px;

        padding-left: 2px;
        padding-right: 2px;
    }

    .modal-body .row {
        flex-direction: column;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 100%; 
    }

    .des {
        text-align: left;
    }

    .modal-close-btn {
        margin-top: 3% !important;
        margin-left: 95% !important;
    }

    .circular-container {
        margin-top: 1.5%;
        margin-left: 95.5%;
    }

    .getInTouch {
        margin-left: 16px;
        margin-right: 16px;

        padding-left: 2px;
        padding-right: 2px;
    }

    .gitCard .row {
        flex-direction: column;
        display: flex;
        align-items: center;

        width: 100%;
    }

    .gitCard .col {
        width: 100% !important;
        display: flex;
        align-items: center;
    }

    .getInTouch .card-body {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .getInTouch h3 {
        font-size: large;
        text-align: center;
        width: fit-content;

        margin-bottom: 20px
    }

    .getInTouch .btn { 
        font-size: small !important; 
        width: max-content !important;
    }

    .modal-topic {
        width: fit-content !important;
        text-align: left;
    }

    .modal-form {
        text-align: left !important;
    }

    .footer {
        margin-left: 16.5px;
        margin-right: 16.5px;
    }

    .footer .row {
        flex-direction: column !important;
    }

    .f-col {
        text-align: left; 
    }

    .f-col img {
        margin-left: 0px;
        display: inline-block; /* Ensure the image behaves like an inline element */
    }

    .f-cont {
        text-align: left !important;
    }

    .f-col {
        margin-left: -15px;
    }

    .modal-body .f-col {
        margin-left: -25px;
    }
    

}


/* screen sizes between 500px and 540px (tab) */
@media (min-width: 500px) and (max-width: 541px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }

    .logo {
        margin-left: -20px;
    }


    .portfolio {
        margin-top: 25% !important;

        margin-left: 20px;
        margin-right: 20px;

        padding-left: 5px;
        padding-right: 5px;
    }

    .modal-body .row {
        flex-direction: column;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 100%; 
    }

    .des {
        text-align: left;
    }

    .getInTouch {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 5px;
        padding-right: 5px;
    }

    .gitCard .col {
        display: flex;
        align-items: center;
    }

    .gitCard .gitBtn {
        align-items: end !important;
    }

    .getInTouch .card-body {
        padding-left: 10% !important;
        padding-right: 10% !important;

        padding-top: 8% !important;
        padding-bottom: 8% !important;
    }

    .getInTouch h3 {
        font-size: x-large;
        text-align: center;
        width: fit-content;

        margin-bottom: 10px;
    }

    .getInTouch .btn { 
        font-size: medium !important; 
        width: max-content !important;
    }

    .modal-topic {
        width: fit-content !important;
        text-align: left;
    }

    .footer {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 10px;
        padding-right: 10px;
    }
    
    .footer .row {
        flex-direction: column !important;
    }

    .f-col {
        text-align: left; 
    }

    .f-col img {
        display: inline-block; /* Ensure the image behaves like an inline element */
    }


    .f-cont {
        text-align: left !important;
    }

    .f-col {
        margin-left: -15px;
    }

    .modal-body .f-col {
        margin-left: -25px;
    }

}

/* screen sizes between 541px and 767px */
@media (min-width: 541px) and (max-width: 767px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }

    .logo {
        margin-left: -30px;
    }


    .portfolio {
        margin-top: 18% !important;

        margin-left: 20px;
        margin-right: 20px;

        padding-left: 5px;
        padding-right: 5px;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 100%; 
    }

    .des {
        text-align: left;
    }

    .getInTouch {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 5px;
        padding-right: 5px;
    }

    .gitCard .gitBtn {
        align-items: end !important;
    }

    .getInTouch .card-body {
        padding-left: 10% !important;
        padding-right: 10% !important;

        padding-top: 8% !important;
        padding-bottom: 8% !important;
    }

    .getInTouch h3 {
        font-size: xx-large;
        text-align: left;
        width: fit-content;
    }

    .getInTouch .btn { 
        font-size: medium !important; 
        width: max-content !important;
    }

    .modal-topic {
        width: fit-content !important;
        text-align: center;
    }


    .footer {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 10px;
        padding-right: 10px;
    }

    
    .footer .row {
        flex-direction: column !important;
    }

    .f-col {
        text-align: left; 
    }

    .f-col img {
        display: inline-block; /* Ensure the image behaves like an inline element */
    }


    .f-cont {
        text-align: left !important;
    }

    .f-col {
        margin-left: -15px;
    }

    .modal-body .f-col {
        margin-left: -25px;
    }
}


/* screen sizes between 768px and 992px */
@media (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }


    .logo {
        margin-left: -30px;
    }

    .portfolio {
        margin-top: 18% !important;

        margin-left: 20px;
        margin-right: 20px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 100%; 
    }

    .des {
        text-align: left;
    }

    .getInTouch {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .gitCard .gitBtn {
        align-items: end !important;
    }

    .getInTouch .card-body {
        padding-left: 10% !important;
        padding-right: 10% !important;

        padding-top: 8% !important;
        padding-bottom: 8% !important;
    }

    .getInTouch h3 {
        font-size: xx-large;
        text-align: left;
        width: fit-content;
    }

    .getInTouch .btn { 
        font-size: large !important; 
        width: max-content !important;
    }

    .footer {
        margin-left: 20px;
        margin-right: 20px;

        padding-left: 15.5px;
        padding-right: 15.5px;
    }

    .input-with-image .btn-with-image {
        position: absolute;
        left: 94%; 
    }

    .footer-logo {
        margin-left: -15px !important;
    }
}


/* screen sizes between 992px and 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
    body {
        overflow-x: hidden !important;
    }

    .container-fluid {
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden !important;
    }


    .portfolio {
        margin-top: 13% !important;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 85%; 
    }

    .des {
        text-align: justify;
    }

    .getInTouch .card-body {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }


    .footer {
        margin-left: 7.5%;
        margin-right: 7.5%;
        margin-top: 8%;
    }
    
}


/* screen sizes bigger than 1024px */
@media (min-width: 1024px) and (max-width: 1400px) {
    body {
        overflow-x: hidden !important;
    }


    .portfolio {
        margin-top: 13% !important;
    }

    .model-body h5 p {
        text-align: center;
    }

    .custom-width-modal .modal-dialog {
        max-width: 70%; 
    }

    .des {
        text-align: justify;
    }

    .getInTouch .card-body {
        padding-left: 3.5% !important;
        padding-right: 1% !important;
    }

    
    .footer {
        margin-left: 4%;
        margin-right: 5%;
        margin-top: 8%;
    }
    
}
