.img-mod{
    /* border: 2px solid red; */
    width: 100vw;
    height: 80vh;
}
body{
    background-color: #f8f9fa;
}
/* Add to your CSS file */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure navbar is on top */
}

.header {
    margin-top: 70px; /* Adjust based on the height of your navbar */
    
}
/* Navbar ends */

/* Why us */
.why-us-section {
    background-color: #f8f9fa;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.why-us-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #007bff;
    position: relative;
}

.why-us-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    margin-bottom: 1rem;
}

.why-us-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #3DABFF;
}

.why-us-text {
    font-size: 1rem;
    color: #6c757d;
}

.why-us-connection {
    position: relative;
    margin-top: 3rem;
}

.why-us-connection i {
    /* color: #007bff; */
    animation: bounce 2s infinite;
}

.why-us-connection h2 {
    margin-top: 1rem;
    font-size: 1.75rem;
    color: #007bff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Why us end */

/* we are famous for images */

.custom-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    height: 40vh;
    transition: box-shadow 0.3s ease;
}

.custom-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.custom-card .card-title {
    color: #007bff;
}
/* we are famous for images Ends */
/* Blinking sections */
.blinking-section {
    background: linear-gradient(to right, #8e44ad, #3498db);
}

.blinking-text {
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
/* Blinking section Ends */

/* BAnking partners */
.card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.card-img-container img {
    transition: transform 0.3s ease;
}

.card-img-container:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-container:hover .overlay {
    opacity: 1;
}

.fs-4 {
    font-size: 1.5rem;
}
/* Banking oartners ends */

/* Bg start */

         
        .background-section {
            width: 100%;
            height: 100vh;
            background-image: url('img/bottomimg.webp');
            background-size: cover;
            background-blend-mode: multiply;
            background-color:  rgba(57, 179, 255, 1); /* Blue color with 50% opacity */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .background-section h1 {
            color: white;
            font-size: 3.2em;
            padding: 5%;
            /* padding: 222px; */
            text-align: center;
        }

/* Bg ends */
/* Two Images section starts */
.image-wrapper {
    position: relative;
    padding: 40px;
}

.main-image {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translateY(50%);
}

.project-info {
    padding: 40px;
}

.project-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.project-location {
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
}

.project-location i {
    margin-right: 10px;
    color: #007bff;
}

.project-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.project-status,
.booking-status {
    margin-bottom: 30px;
}

.project-status h3,
.booking-status h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.project-status ul,
.booking-status ul {
    list-style-type: none;
    padding-left: 0;
}

.project-status ul li,
.booking-status ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 5px;
}

.booking-status ul ul {
    margin-left: 20px;
}
/* Two images Ends */
/* Optional: Change color of carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}
/* Team members */
.feature-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 30px;
}

.feature-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 18px;
}

/* Team members ends */

/* Rate  */
.rates-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.rates-info h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.rates-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.contact-info i {
    font-size: 24px;
    color: #007bff;
    margin-right: 10px;
}

.contact-info span {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.call-to-action {
    text-align: center;
    padding: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.circle-button {
    display: inline-block;
    margin-bottom: 20px;
}

.btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #007bff;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.call-to-action p {
    font-size: 18px;
    margin-bottom: 0;
}
/* Rate ends */


/* Google Maps Section */
.contact-section {
    background-color: #f9f9f9;
    padding-top: 60px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 36px;
    color: #007bff;
}

.contact-info h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.office-address {
    margin-top: 20px;
}

.office-address h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.office-address address {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-map iframe {
    border-radius: 10px;
}


/* Team members */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}


.background {
    background: url('img/bottomimg.webp') no-repeat center center;
    background-size: cover;
    height: 79vh;
    width: 60vw;
    margin:auto;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content {
    text-align: center;
    background-color: rgba(0, 123, 255, 0.8); /* Bootstrap primary color with transparency */
    padding: 20px;
    /* border-radius: 10p   x; */
    width: 100%;
height: 90vh;
    max-width: 1000px;
}

.heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.speech-bubble {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    margin: 10px;
    max-width: 220px;
    /* margin-left: 50%; */
}

.speech-bubble-left:after, .speech-bubble-right:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.speech-bubble-left:after {
    left: 100%;
    border-left: 10px solid white;
}

.speech-bubble-right:after {
    right: 100%;
    border-right: 10px solid white;
    
}

.profile-image {
    width: 100%;
    height: auto;
    margin-top: 42px;
    max-width: 250px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}
.real-estate{
margin-top: 44px;
}

.finance-expert{
margin-top: 44px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        padding: 10px;
        width: 95%;
    }
    .heading {
        font-size: 28px;
        /* height: 10vh; */
    }
    .title {
        font-size: 20px;
    }
    .speech-bubble {
        max-width: 150px;
        padding: 8px 15px;
    }
    .profile-image {
        max-width: 200px;
    }
    .content{
        height: 70vh;
        width: 101vw;
    }
    .background{
        height:70vh;
        width: 101vw;
    }
    .profile-image{
 margin-top: -62%;   
}
.real-estate{
    margin-top: -74%;
    margin-left: -29px;   
    opacity: 0.9;
}
.md-shakti{
    margin-top: -82%;
    margin-left: -35px; 
    /* font-size: 16px; */
opacity: 0.9;
    }
    .new-md-shakti,.new-real-state{
        
        opacity: 0.9;
}
.finance-expert{
    /* position: relative; */
    /* margin-top: -10%; */
    opacity: 0.9;
    font-size: 16px;
}
.hotel{
    margin-right: -20px;
    /* margin-top: ; */
    font-size: 16px;
}

}

@media (max-width: 576px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    .col-md-4 {
        width: 100%;
        text-align: center;
    }
    .speech-bubble-left:after, .speech-bubble-right:after {
        display: none;
    }

}
/* Team members end */


/* Video Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
  }
  
  .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
  }
  
  .testimonial-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .testimonial-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  
  .embed-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  .embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007bff;
  }
    
/* Video Testimonials end */






/* Google maps section ends here */

/* Rates Card */

.card {
    border: none;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-10px);
}
.icon-box {
    font-size: 2rem;
    color: #007bff;
}
.card-title {
    font-weight: bold;
}
.card-text {
    margin-bottom: 0.5rem;
}
.card-footer {
    background-color: #f8f9fa;
    border-top: none;
}


/* Stokc images */

.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
}



  /* Stokc ends */


/*  Additional */

  /* Additional Ends */

  /* SideBar */

  .sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.sidebar-item i {
    margin-right: 5px;
}

.sidebar-item span {
    font-size: 14px;
}

.contact-us {
    background-color: #A390E4; /* Light Purple */
}

.whatsapp {
    background-color: #5CB85C; /* Green */
}

.call {
    background-color: #007BFF; /* Blue */
}


  /* SideBar Ends */



  /* Back to top */
  .scroll-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff; /* Change the button background color */
    color: #ffffff; /* Change the button text color */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-to-top-button:hover {
    background-color: #0056b3; /* Change the button background color on hover */
}

/* Back to top */



/* New */
.location-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
}

.location-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.office {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.office i {
    font-size: 24px;
    color: #007bff;
    margin-right: 10px;
}

.office-info h3 {
    margin: 0;
}

.office-info p {
    margin: 5px 0 0;
    line-height: 1.5;
}

/* New */
@media (max-width: 576px) {
    .card-title {
        font-size: 1.15rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
    .title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }

    .project-card img{
        width: 30vw;
        height: 30vh;
    }
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    .contact-icon {
        margin-bottom: 10px;
    }
    .contact-map iframe {
        height: 300px;
    }

    .hide-on-mobile {
        display: none;
    }
    .font-change{
        
 display: none;
  
    }
    .adjust{
        margin-left: 42px;
    }
    .adjust-phone{
        margin-left: 82px;
    }
    .img-mobile{
        height: 40vh !important;   
    }

}