* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: Montserrat, sans-serif;
}






/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo-small {
    width: 140px;
    margin-left: -5%;
}

.navbar-navigation {
    display: flex;
    align-items: center;
    margin-left: -100px;
}



.navbar-icon {
    margin-left: -10%;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: rgb(28, 56, 99);
    font-size: 16px;
    line-height: 29px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px 15px;
    margin: 0 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link:focus {
    background-color: #245BAA;
    color: white;
    border-radius: 10px;
}

.navbar-icon .fa-2x {
    transition: filter 0.3s ease-in-out;
}

.navbar-icon:hover .fa-2x {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.9));
}

.navbar-icon .fa-phone-volume {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.navbar-hamburger {
    display: none;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 1600px) {

    /* Styles for desktop 13-14 inch screens */
    .navbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .navbar-navigation {
        margin-left: -100px;
    }
}

@media (max-width: 430px) {

    /* Styles for iOS phones */
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 9%;
    }

    .logo-small {
        width: 40%;
        margin-left: -21%;
    }



    .navbar-navigation {
        display: none;
        flex-direction: column;
        width: 150%;
        margin-top: 3%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
    }

    .navbar-navigation.visible {
        display: flex;
    }

    .navbar-hamburger {
        display: block;
        margin-right: 2%;
    }

    .navbar-icon {
        display: block;
        margin-right: -50%;
        margin-bottom: -2%;
    }
}
















.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F6F3E9;
    min-width: 200px;
    /* Adjust width as needed */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #245BAA;
    color: white;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .fas.fa-caret-down {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

.dropdown:hover .fas.fa-caret-down {
    transform: rotate(180deg);
}



























































.fa-phone {
    color: white;
    background-color: #3471B8;
    border-radius: 50%;
    padding: 10px;
}



.header-text {
    position: absolute;
    top: 5%;
    width: 100%;
}

.header-text-h2 {
    color: white;
    font-size: 50px;
    padding: 10px;
    text-align: center;
}

.header-text h3 {
    color: white;
    font-size: 30px;
    text-align: center;
}

.about-us {
    width: 100%;
    padding: 10px 10%;
    display: block;
    margin: 10px 0 30px 0;
}

.about-us h2 {
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 30px;
}

.about-us p {
    text-align: justify;
    line-height: 1.5;
    font-size: 1.1em;

}

.projects {
  
    padding: 5%;
}



.project-1-text h2 {
    padding: 10px 0;
    font-size: 40px;
    font-weight: 500;
}

.project-1-text p {
    padding: 0 0 20px 0px;
    font-size: 20px;
}

.project-1-img {
    border-radius: 10px;
    background-color: white;
    display: inline-block;
}

.project-1-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.project-details {
    padding: 10px;
    width: 100%;
}

.project-details h2 {
    padding: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #BC9A51;
    display: inline-block;
}

.project-details h3 {
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
    color: green;
    display: inline-block;
}

.project-details p {
    padding: 10px;
    display: inline-block;
}

.project-footer {
    padding: 10px 0 10px 10px;
}

.project-footer p {
    padding: 0px 0 10px 10px;
    display: inline-block;
}

.footer-p {
    margin-left: 20%;
}

.project-footer a {
    padding: 8px;
    border-radius: 7px;
    border: 1px solid #BC9A51;
    color: #BC9A51;
    background-color: transparent;
    margin-left: 10%;
    text-decoration: none;
}

.project-footer a:hover {
    box-shadow: 1px 1px 1px black;
    padding: 10px;
}

.footer {
    background-color: #181818;
    background-position: center;
    background-size: cover;
    position: relative;
}

.footer-h2 {
    text-align: center;
    font-weight: 500;
    color: white;
    padding: 20px;

}

.footer-form {
    width: 400px;
    margin-left: 23%;
    margin-right: auto;

}

.main-form {
    width: 400px;
    padding: 10px;
}

.input {
    padding: 10px;
    width: 100%;
    margin: 10px 0;
    border: none
}

.sub-btn-footer {
    padding: 10px;
    margin: 10px 0;
    color: white;
    background-color: #B59A51;
    border: none;
    width: 100%;
    cursor: pointer;
}

.sub-btn-footer:hover {
    opacity: 0.8;
}

.footer-logo {
    position: absolute;
    right: 25%;
    top: 28%;
    background-color: #b59a51a1;
    ;
    padding: 10px 80px 20px 10px
}

.footer-img {
    width: 120px;
    margin-top: 10px;
}

.footer-des p {
    text-align: center;
    color: white;
    padding: 10px;
}

.fa-xmark {
    visibility: hidden;
}

.fa-bars {
    visibility: hidden;
}

.pop {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.76);
    display: block;
}

.popuop-form {
    width: 400px;
    background-color: #E0D4B8;
    position: fixed;
    top: 20%;
    margin-left: 35%;
    margin-right: auto;
    padding: 10px;
    box-shadow: 2px 2px 2px black;

}

.popuop-form p {
    text-align: center;
    padding: 10px;
}

.popup-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%
}

.popup-1 {
    width: 100%;
}

.popup-inp {
    padding: 10px;
    width: 100%;
    margin: 10px 0;
}

.sub-btn-popup {
    padding: 10px;
    border: none;
    background-color: #B59A51;
    width: 100%;
    color: white;
    cursor: pointer;
}

.close-form {
    padding: 5px;
    font-size: 20px;

    display: inline-block;
    cursor: pointer;
}

.brochure-btn {
    position: fixed;
    bottom: 10px;
    right: 3px;
    background-color: #BC9A51;
    padding: 10px;
    width: auto;

    cursor: pointer;
    z-index: 100;
    visibility: visible;
}

.whats-app {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 10px;
    left: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #3471B8;
    z-index: 100;
}

.my-float {
    margin-top: 10px;
}

@media(max-width: 720px) {
    .logo {

        top: 2%;
        left: 2%;
        padding: 10px;
    }

    .fa-bars {
        position: fixed;
        right: 10px;
        top: auto;
        color: white;
        display: inline-block;
        font-size: 40px;
        padding: 10px;
        visibility: visible;
    }



    .fa-xmark {
        color: black;
        right: 20px;
        top: 10px;
        font-size: 40px;
        position: fixed;
        padding: 20px;
        display: inline-block;
        visibility: visible;
    }

    .header-text {
        position: unset;

        width: 100%;
    }

    .header-text-h2 {
        color: #B59A51;
        font-size: 30px;
        padding: 10px;
        text-align: center;
    }

    .header-text h3 {
        color: #B59A51;
        font-size: 30px;
        text-align: center;
    }

    .project-details p {
        padding: 10px;
        display: block;
    }

    .project-footer {
        padding: 10px 10px 10px 10px;
    }

    .project-footer p {
        padding: 0px 0 10px 10px;
        display: block;
    }

    .footer-p {
        margin-left: 20%;
    }

    .project-footer a {
        display: block;
        margin: 20px 0 10px 0;
        text-align: center;


    }

    .footer-p {
        display: block;
        margin: 0;
    }

    .main-form {
        margin: 0;
        padding: 10px;
        display: block;
        width: 100%;
    }

    .footer-form {
        margin: 0;
        padding: 10px;
        display: block;
    }

    .footer-logo {
        display: block;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        padding: 10px;
        position: unset;
        background-color: transparent;
        width: 50%;
    }

    .footer-logo p {
        color: white;
    }

    .footer-img {
        margin-top: 10px;
    }

    .pop {
        display: none;
    }

    .popuop-form {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-btn {
        position: fixed;
        bottom: 0px;
        background-color: #BC9A51;
        padding: 10px;
        width: 100%;
    }

    .whats-app {
        bottom: 0;
    }
}



.projects {
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
}

.pop {
    display: none;
}

nav {
    background-color: white;
    padding: 0 5%;
}

.nav-links li a {
    color: #3471B8;
}

.nav-call-btn {
    color: #3471B8;
}

.about-us h2 {
    color: #3471B8 !important;
}

.project-1-text h2 {
    color: #3471B8;
}

.project-details h2 {
    color: #3471B8;
}

.project-footer a {
    color: #3471B8;
    border: 1px solid #3471B8;
}

.sub-btn-footer {
    background-color: #3471B8;
}

.sub-btn-popup {
    background-color: #3471B8;
}

.project-1 {
    flex-basis: 32%;
    max-width: 32%;
    margin-top: 30px;

}



.footer-logo {
    background-color: white;
}

.footer-des p {
    font-size: 11px;
}

.footer-logo {
    right: 24%;
    top: 30%;
}

.brochure-btn {
    background-color: #3471B8;
    color: white;
    border: none;
}

.popuop-form {
    background-color: rgba(255, 255, 255, 0.637);
    border-radius: 5px;
}



.project-1-img img {
    height: 300px;
}

.footer-p {
    margin-left: 5%;
}

.project-footer a {
    margin-left: 0%;
    display: block;
    width: 80%;
    margin-left: 2%;
}



.about-us-image {
    width: 100%;

}

.about-us-text {
    padding: 20px;
}

.about-us-image img {
    width: 80%;
    padding: 20px 0 20px 20px;
    height: 450px;
    margin-left: 10%;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-1-img {
    display: block;
}

.about-us p {
    line-height: 30px;
}

.about-us-text h3 {
    padding: 10px 0;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 20px;
}

.gallery img {
    width: 100%;
}

.gallery-img {
    padding: 5px;
}

#more {
    display: none;
}











.about-us {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
   
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-text {
    font-size: 100%;
    font-weight: 200;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    color: #333;
    max-width: 80%;
    text-align: left;
    /* Ensure text is left-aligned */
}

.about-us-text h2,
.about-us-text h3 {
    font-family: Montserrat, sans-serif;
    color: #444;
}

.about-us-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    /* Center the heading */
}

.about-us-text h3 {
    font-size: 1.5em;
   
}

.about-us-text p {
    font-size: 1em;
   
    margin-bottom: 20px;
    color: #555;
}

.about-us-text ul {
    list-style-type: none;
    padding: 0;
}

.about-us-text li {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #666;
}

.about-us-text li b {
    color: #333;
}

#myBtn {
    font-family: Montserrat, sans-serif;
    background-color: #3471B8;
    color: white;
    border: none;
    padding: 10px 1px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 12%;
    margin: 20px auto 0;
    transition: background-color 0.3s;
    margin: 20px 0 0 0;
}

#myBtn:hover {
    background-color: #02346b;
    color: white;
    border: none;
}







































@media screen and (max-width:1350px) {
    .popuop-form {
        width: 96%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .project-1 {
        max-width: 100%;
        padding: 20px;
    }

    .project-1-img img {
        height: 350px;
    }

}

@media screen and (max-width:900px) {
    .project-1 {
        padding: 0;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;

    }

    .projects {
        display: flex;
        padding: 10px;
    }

    .project-1-img img {
        height: 270px;
    }



    .fa-bars {
        color: black;
        top: 10px;
    }

    .nav-call-btn {
        top: 20px;
        padding: 0 10px;
        margin-left: 10%;
        margin-top: 3%;
    }

    .project-1 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .footer-logo {
        width: 70%;
    }

    .nav-links {
        height: 100%;
        width: 50%;
        right: 0;
    }

    nav {
        padding: 0;
    }

    .footer-form {
        margin: auto;
        max-width: 100%;
    }

    .about-us p {
        text-align: center;
    }



    .about-us-image {
        flex-basis: 100%;
        max-width: 100%;
    }

    .about-us-text {
        flex-basis: 100%;
        max-width: 100%;
    }

    .about-us-image img {
        width: 100%;
        margin: 0;
    }

    .about-us p {
        text-align: justify;
    }
}

@media screen and (max-width:550px) {
    .residential-div h2 {
        padding-top: 9%;
    }

    #myBtn {
        width: 35%;
    }





    .gallery {
        display: flex;
        flex-wrap: wrap;
    }

    .gallery-img {
        max-width: 100%;
        flex-basis: 100%;
        height: 300px;
        margin-bottom: 10px;
    }

    .gallery-img img {
        height: 100%;
    }

    .about-us {
        padding: 10px;
    }

    .about-us-image img {
        padding: 0;
    }

    .nav-call-hamburger {
        margin-top: 3.5%;
    }
}







































.menu-wrp {
    background: #005baa;
    position: fixed;
    right: 0;
    top: 0;
    color: #fff;
    height: 100%;
    padding: 3em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: all 1s ease;
    z-index: 1001
}

.menu-wrp.active {
    transform: translateX(0%);
    overflow-y: auto !important
}

.menu-wrp .menuclose {
    position: absolute;
    top: 2em;
    right: 2em;
    cursor: pointer
}

.menu-wrp .tpr-logo {
    width: 100px;
    height: auto;
    display: block;
}

.menu-wrp ul {
    display: block;
    list-style: none;
    text-transform: uppercase;
}

.menu-wrp ul li {
    display: block
}

.menu-wrp ul li a {
    line-height: 2;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    line-height: 34px !important
}

.menu-wrp ul li a i {
    font-size: .8em;
    padding: 0 5px
}

.menu-wrp .submenu {
    background: rgba(0, 0, 0, .05) !important;
    padding: 1em
}

.menu-wrp .submenu li {
    font-size: .8em
}

.menu-wrp .bottom-wrp {
    padding: 0 0 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 1.5em;
}

.menu-wrp .bottom-wrp a,
.menu-wrp .bottom-wrp a:hover {
    color: #fff
}

.menu-wrp .bottom-wrp a strong {
    font-family: sans-serif
}

.menu-wrp .menuclose {
    position: absolute;
    top: 2em;
    right: 2em;
    cursor: pointer
}

.icon-close:before {
    content: "\e90b"
}

.menu-wrp .tpr-logo {
    width: 100px;
    height: auto;
    display: block;
}


.line-anim {
    position: relative
}

.line-anim:after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    transition: all .3s ease;
    background: rgba(255, 255, 255, 1);
}

.line-anim:hover:after,
.line-anim.active:after {
    width: 100%
}

.icon-dropdown:before {
    content: "\e91c"
}

.menu-wrp .submenu {
    background: rgba(0, 0, 0, .05) !important;
    padding: 1em
}


























/* Top Developers Starts here */

/* Base styles */
.residential-div {
    padding-bottom: 5%;
}

.builders-heading h2 {
    justify-content: center;
    font-size: 220%;
    font-weight: 550;
    font-family: Montserrat, sans-serif;
    color: #3471B8;
    line-height: 90px;
    text-align: center;
    /* Center align text */
}

.developers-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 10%;
}

.developer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 150px;
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(251, 246, 246);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 10px;
    /* Add margin to separate the icons */
}

.developer-icons img {
    max-width: 100%;
    max-height: 100%;
}

.project-1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.project-2 {
    flex-basis: 32%;
    max-width: 32%;
    margin-top: 30px;
}

.row {
    display: flex;
    flex-direction: row;
}

/* Responsive styles for mobile screens */
@media (max-width: 430px) {
    .developers-listing {
        flex-direction: column;
        /* Stack icons vertically */
        align-items: center;
        /* Center align icons */
    }

    .developer-icons {
        width: 90%;
        /* Adjust width for mobile */
        max-height: 90%;
        /* Allow height to adjust based on content */
        margin: 10px 0;
        /* Adjust margin for better spacing */
    }

    .builders-heading h2 {
        font-size: 180%;
        /* Adjust font size for mobile */
        line-height: 1.2;
        /* Adjust line height for better readability */
    }
}
























/* contact form start */
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Flex row */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

/* Columns */
.col-md-6 {
    flex: 0 0 50%;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.form-wrap {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-inner {
    padding: 20px;
}

.form-bg {
    padding: 30px;
    border-radius: 10px;
    margin-top: 10%;
}

.sub-title {
    font-size: 24px;
    color: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 130%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
}

.btn-default {
    background-color: #1D528F;
    /* Changed to blue */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #ffffff;
    /* Changed to white */
}

.btn-default:hover {
    background-color: #143e6d;
}

.contact-info {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.b-top-bot {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    margin: 20px 0;
}

.socialmediaicons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-right: -10%;
    margin-left: 10%;
    margin-top: 1%;
    margin-bottom: -9%;
}

.icnoo {
    width: 50%;
}


@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px;
    }

    .form-wrap,
    .contact-info {
        padding: 30px;
    }

    .form-bg {
        padding: 25px;
    }

    .sub-title {
        font-size: 22px;
    }

    .input-group {
        width: 100%;
    }

    .input-group input {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .btn-default {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info img {
        width: 120px;
        height: auto;
    }

    .sub-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .contact-form {
        margin-left: 0;
    }

    #btnButtonshort {
        margin-left: 0;
        font-size: 110%;
    }

    .input-group input {
        width: 120%;
        padding: 12px;
        font-size: 14px;
    }

    .form-control {
        height: auto;
    }

    .form-bg {
        margin-left: -20%;
    }

    .socialmediaicons {
        margin-left: -4%;
    }

    .btn-default {
        padding: 10px 18px;
        font-size: 14px;
    }

    .icnoo {
        width: 60%;
    }

    .contactustext {
        font-size: 150%;
    }
}


@media (max-width: 430px) {
    .emailspan {
        font-size: 70%;
    }


}






















@media (max-width: 768px) {
    #hot-Projects {
        flex-direction: column;
        flex-wrap: nowrap;
        /* Ensures tiles stack vertically */
        overflow-x: auto;
        /* Adds horizontal scroll if needed */
        align-items: center;
        /* Center align items horizontally */
    }

    .project-2 {
        flex: 1 1 80%;
        /* Adjust width percentage as needed */
        margin: 10px;
    }

    .project-10-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 270%;
        margin-left: -85%;
    }

    .project-details h1 {
        font-size: 20px;
    }
}


































.divider-area {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-section {
    background-color: rgba(232, 19, 19, 0.9);
    font-weight: bold;
    padding: 10px;
}

.divider-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dividerbigtext {
    font-size: 150%;

}

.dividersmalltext {
    font-size: 80%;
    margin-top: 2%;
}

.divider-section-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.divider-section-icon {
    margin: 0 10px;
}

.icon-bounce {
    animation: bounce 0.3s infinite alternate;
}


.divider-button {
    background-color: #fafbfd;
    color: #070707;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 3px solid #030303;
}


/* Media Queries */

/* For screens up to 1600px */
@media (max-width: 2100px) {
    .divider-section {
        margin-top: -6%;
        background-color: #1E4434;
    }

    .divider-section-heading {
        font-size: 150%;
        padding: 0.1%;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .divider-area {
        height: 25vh;
        text-align: center;
    }

    .dividerbigtext {
        font-size: 100%;
        text-align: center;
    }

    .dividersmalltext {
        font-size: 80%;
        margin-top: 2%;
        margin-bottom: 5%;
    }

    .divider-section {
        margin-top: -6%;
        background-color: #1E4434;
        padding: 15px 20px;
    }

    .divider-section-icons {
        margin-left: 10px;
    }
}

































.header-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.1);
    pointer-events: none;
}

.header-text {
    margin-top: 35%;
    position: relative;
    color: white;
    z-index: 1;
}

.header-text h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

.header-text p {
    font-size: 1.5em;
    margin: 0.5em 0;
}

@media (max-width: 576px) {
    .header-text {
        margin-top: 98%;
        position: relative;
        color: white;
        z-index: 1;
    }

    .header-text h1 {
        font-size: 1.5em;
        margin: 0.5em 0;
    }

    .header-text p {
        font-size: 1.2em;
        margin: 0.5em 0;
    }
}





















.banner {
  position: relative;
  background-image: url(../image/Banner.webp);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 89vh;
}

.mobileBannerText {
  display: none;
  color: white;
  font-weight: 350;
  line-height: 140%;
}

.highlight {
  font-weight: 900;
}

@media (max-width: 500px) {
  .banner {
    background-image: url(../image/mobilebanner.webp);
    background-size: cover;
  }
  .mobileBannerText {
    display: block;
    font-size: 2.3em;
    text-align: left;
    padding: 2%;
    margin-top: -90%;
  }
}








