@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

p {
    font-weight: 400;
    color: #111;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(images/banner.jpg);
    background-size: cover;
}

.banner .content {
    max-width: 900px;
    text-align: center;
}

.banner .content h2 {
    text-align: center;
    font-size: 4em;
    color: #fff;
}

.banner .content p {
    font-size: 1em;
    color: #fff;
}

.btn {
    font-size: 1em;
    color: #fff;
    background: rgb(86, 166, 201);
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 20px;
    transition: 0.5s;
}

.btn:hover {
    letter-spacing: 6px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky {
    background-color: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgb(0, 0, 0, 0.05);
}

header .logo {
    color: #fff;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}

header.sticky .logo {
    color: #111;
}

header .logo span {
    color: rgb(86, 166, 201);
}

header .navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: reverse;
}

header .navigation li {
    list-style: none;
    margin-left: 30px;
}

header .navigation li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}

header.sticky .navigation li a {
    color: #111;
}

header .navigation li a:hover {
    color: rgb(86, 166, 201);
}

.row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col150 {
    position: relative;
    width: 48%;
}

.titleText {
    color: #111;
    font-size: 2em;
    font-weight: 500;
    /* padding-left: 75px; */
    text-align: center;
}

.titleText span {
    color: rgb(86, 166, 201);
    font-weight: 600;
    font-size: 1.5em;
}

.row .col150 .imgbx {
    position: relative;
    width: 100%;
    /*min-height: 300px;*/
    height: 200%;
}

.row .col150 .imgbx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.project-card {
    flex: 1;
    max-width: 48%;
    text-align: center;
}

/* .project-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
} */

.project-link {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}

.project-link:hover {
    text-decoration: underline;
}

.contact-section {
    padding: 20px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

section {
    padding: 20px;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Adjust spacing between items */
}

.project-card {
    flex: 1 1 calc(50% - 20px);
    /* Each card takes 50% width minus gap */
    max-width: calc(50% - 20px);
    /* Prevents stretching */
    text-align: center;
}

.img {
    width: 100%;
    /* Makes images responsive */
    height: auto;
}