@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
    --grade1:#002642;
    --grade2:#0095A9;
    --white:white;
    --light:#10DAE4;
    --banner-title: 3rem;
    --banner-text: 1.5rem;
    --title: 2.2rem;
    --sub-title: 1.5rem;
    --font-size: 1.1rem;
    --space1:1px;
}
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    @font-face {
    font-family: 'Minion Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Minion Pro Bold'), url('../font/MinionPro-Bold.woff') format('woff');
    }

    @font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('../font/georgiab.woff') format('woff');
    }

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
p{
  margin: 0px;
  font-size: 1.1rem;
}
.app-body{
  min-height: 90vh;
}

/* Nav start */
        .navbar-custom {
            background: linear-gradient(to right, var(--grade1), var(--grade2));
            padding: 1rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
        }
.logo-icon{
    width: 16rem;
}

        .navbar-nav {
            margin-left: auto;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1.5rem !important;
            transition: all 0.3s ease;
            letter-spacing: var(--space1);
        }

        .nav-link:hover {
            color: #e0fbfc !important;
        }

        .dropdown-menu {
            background: var(--grade1);
            /* background: linear-gradient(to right, var(--grade1), var(--grade2)); */
            border: none;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            color: white;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dropdown-item:hover {
            /* background: #006d77; */
            background: var(--grade2);
            color: #e0fbfc;
        }

        /* Show dropdown on hover for desktop */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
            
            /* Hide dropdown arrow on desktop */
            .dropdown-toggle::after {
                display: none;
            }
        }

        .navbar-toggler {
            border-color: white;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: transparent;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 5px;
            }
            .dropdown-menu {
                background: #004d61;
                margin-left: 1rem;
            }
        }
/* nav End */

/* Home Start */
.banner{
    padding: 12rem 1rem 10rem 1rem;
    background: linear-gradient(to right, var(--grade1), var(--grade2));
}
.gradient{
  background: linear-gradient(to left, var(--grade1), var(--grade2));  
}

.title{
    font-size: var(--title);
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}
.sub-title,.sub-title-f{
    font-size: var(--sub-title);
    font-weight: 600;
    /* font-family: "Open Sans", sans-serif; */
}
.sub-title-f{
    color: var(--light);
    /* font-family: "Open Sans", sans-serif; */
}
.banner-title{
    text-align: center;
    font-size: var(--banner-title);
    color: var(--white);
    font-weight: 600;
    letter-spacing: var(--space1);
    font-family: 'Georgia Bold';
    font-family: 'Minion Pro Bold';
}
.banner-title span{
    color: var(--light);
}
.banner-text,.banner-text-white{
    font-size: var(--banner-text);
    letter-spacing: var(--space1);
    font-weight: 400;
}
.banner-text-white{
    font-weight: 400;
}
.flex-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.Expertise-image{
    width: 15rem;
}
.itz-icon{
    width: 10rem;
}
.img1{
    position: relative;
    /* right: 2rem;
    top: -2rem; */
    width: 12rem;
}
.flex-img{
    display: flex;
    justify-content: right;
}
.img2{
    width: 15rem;
}

.box{
    outline: 2px solid var(--light);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:  2rem 1rem;
    color: var(--white);
}
.box:hover{
    background: linear-gradient(to right,var(--grade1),var(--grade2));
}
.box-2{
    border: 2px solid var(--grade1);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    min-height: 6rem;
    transition: all 0.5s ease-in-out;
}
.box-2:hover{
    transform: scale(95%);
}
/* home end */

/* Real estate page  */
.grade-box{
    background: linear-gradient(to right,var(--grade1),var(--grade2));
    border-radius: .5rem;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin: 0pc 1rem;
    transition: all 0.5s ease-in-out;
}
.grade-box:hover{
    transform: scale(95%);
}
.center-row{
    display: flex;
    justify-content: center;
}
.center-box{
    color: var(--white);
}
.gradient-border {
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
}
.gradient-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, rgba(70, 205, 255, 0.05) 0%, var(--light) 50%, rgba(70, 205, 255, 0.05) 100%);
}
.gradient-txt{
   position: relative; 
   padding-bottom: 0.8rem;
}
.gradient-txt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, rgba(70, 205, 255, 0.05) 0%, var(--light) 50%, rgba(70, 205, 255, 0.05) 100%);
}

/* Real estate page End */
.about-box{
    background: linear-gradient(to right,var(--grade1),var(--grade2));
    color: var(--white);
    border-radius: .6rem;
    padding: 2rem;
    width: 80%;
    text-align: center;
}
/* Footer */
footer{
    background: var(--grade1);
}
.footer-logo{
    width: 15rem;
    margin-bottom: 2rem;
}
address{
    color: var(--white);
    font-weight: 300;
}
.contact-link{
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    color: var(--light);
}
footer ul li{
    margin-bottom: 0.4rem;
}
.f-link{
    text-decoration: none;
    list-style: none;
    color: var(--white);
    cursor: pointer;
    font-weight: 300;
}
.f-link:hover{
    color: var(--light);
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
}
.footer-row div{
    width: max-content;
    margin: 0px 2rem;
}
@media (max-width: 993px){
    .col-lg-6,.col-lg-4{
        margin-bottom: 2rem;
    }
}
@media (max-width: 769px){
    .img1{
    top: 3rem;
    left: 0rem;
}
.col-md-6,.col-md-4,.col-md-5{
    margin-bottom: 2rem;
}
.about-box{
    width: 100%;
}
}