/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

.mb-3 {
    margin-bottom: 10px !important;
}

body {
    max-width: 100%;
    overflow-x: hidden;
} 

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-right: 0;
}

.row>*{
    padding-right: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
}

/* Navbar Styling */
/* Navbar Styling */
#navbar {
    background-color: rgb(51, 51, 51);
width: 100%;
}

.navbar-img {
    width: 100%;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .navbar-img {
        content: url('public/images/navmobile.png');
    }
}

/* CSS for mobile screens */
@media (max-width: 768px) {
    #navbar .navbar {
        display: flex;
        flex-direction: row; /* Arrange items in a row */
        justify-content: space-between; /* Space items evenly */
        align-items: center; /* Center items vertically */
    }
    .navbar-text .break {
        display: block; /* Make the span behave like a block element, so it starts on a new line */
    }


    #navbar .navbar-brand {
        flex: 0 0 auto;
    }

    #navbar .navbar-text-container {
        flex: 1; /* Allow the text container to take up remaining space */
        text-align: right; /* Align the text to the right */
    }

    #navbar .navbar-text {
        font-size: 1.05rem; /* Adjust the text size as needed */
        margin: 0; /* Remove any default margins */
        
    }


    #navbar .brand-logo {
        width: 180px; /* Adjust logo size for mobile */
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    #navbar .navbar-text {
        font-size: 2rem; /* Adjust the text size for tablets */
    }
}

.form-floating-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .wealthlinecarosuelform-button {
    position: absolute;
    border-radius: 60px;
    width: 80%;
    top: -50px; /* Adjust based on desired positioning */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensures the button appears on top of other content */
    background-color: #333333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;

}
.wealthlinecarosuelform-button .phone-number {
    color: #ffbc04; /* Yellow color for the phone number */
}

/*New Form*/
.form-control {
    display: block;
    width: 90%;
    margin: 10px 16px;
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
form{
	padding: 0px 0px;
	border-radius: 17px;
	width: 100%;
	/* background-color: #343433; */
	height: auto;
}
input,select{
		    margin: 8px 0px;
		    border: 1px solid #424242;
		    border-radius: 5px;
		    padding: 10px 10px;
		    width: 85%;
		    color: #ffff;
		    background-color: #474747;
	}
select{
	  width: 90%;
	  height: 35px;
	  color: gray;
	  padding: 0px;
	}

input:focus,select:focus{outline: none;}
button{
	 width: 80%;
     border: none;
	background-color: #e93028;
    color: white;
    font-size: 18px;
    padding: 10px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 20px;
	text-transform:uppercase;
	font-weight: bold;
}
.check-box{
	display: grid;
	grid-template-columns: 10% 90%;
	align-items: self-start;
	font-size: 9px;
	margin-top: 6px;
	color: #0a0a0a;
	padding: 0px 10px;
	text-align: justify;
}

.btn-primary {cursor:pointer;background: linear-gradient(126deg, #feab03 0%, #fc8301 100%);color: #000000;width: 80%;border: none;p;padding: 8px 12px;ont-weight: 600;font-size: 16px;/* box-shadow: 0px 1px 0px 1px #7f7f7f; */margin: 10px 33px;}
.btn-primary:hover {background-color: #e96e00;}

/*new Form end/
  

  
/* Numbers Section Styling */
/* Container that ensures the section spans 150% width of the viewport */
#numbers {
    padding: 1rem 0 1rem;
    width: 100%; /* Make the section 150% of the viewport width */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #403c3c; 
    color: white;
}
@media (min-width: 769px) {
    #numbers {
        width: 152%; /* Increase width for larger screens */
    }
}

/* Ensures the content is constrained to the left 60% of the viewport */
.numbers-container {
    width: 60vw; /* Limit content width to 60% of the viewport width */
    margin-left: 0; /* Align content to the left side of the section */
    margin-right: auto; /* Create empty space on the right side */    
}

@media (max-width: 768px) {
    .numbers-container {
        width: 100%; /* Full width of the viewport */
        margin-left: auto; /* Center-align content */
        margin-right: auto; /* Center-align content */
    }
    
    /* Optional: Adjust padding for better appearance on small screens */
    .numbers-container {
        padding: 0 1rem;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-12 {
    
    max-width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.schemeTextA, .schemeTextB {
    text-align: center;
}

.text-yellow {
    color: ffbc04; /* Adjust to your color scheme */
}

.no-border {
    border: none; /* Remove border if any */
    padding: 1.2%;
}

.numbersp-text {
    margin-bottom: 0;
}


/* Main Section Styling */
#main {
    z-index: 10;
}

h2.poppins-bold {
    /* font-family: 'Poppins'; */
    font-weight: bold;
    text-align: left;
}
@media (max-width: 768px) {
    h2.poppins-bold {
        text-align: center; /* Center alignment for tablets and mobile screens */
    }
}

/* Main Section Styling */
/* Main Section Styling */
#main {
    z-index: 10;
}

.overlay-content {
    text-align: center;
    color: white; 
    background-image: url('public/images/bg.jpg'); 
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.background-div {
    position: relative;
    width: 100%;
    height: auto;
}

.background-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Initially hidden */
    z-index: 10;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    transition: opacity 1s ease;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}
/* For desktop screens */
@media (min-width: 769px) {
    .background-div {
        width: 152%; /* Wider container for desktop screens */
        height: 600px; /* Adjust as needed */
        overflow: hidden; /* Ensure content does not overflow */
    }
}

/* For smaller screens (tablets and mobiles) */
@media (max-width: 768px) {
    .background-div {
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Height adjusts automatically */
    }
}

/* Play Button Styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it is on top of the image */
}

.play-button img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    cursor: pointer; /* Change cursor to pointer for click action */
}

/* Ensure the play button is responsive */
@media (max-width: 768px) {
    .play-button img {
        width: 40px; /* Adjust size on smaller screens */
        height: 40px; /* Adjust size on smaller screens */
    }
}



.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it's on top */
}

.highlighted-text{
    border-radius: 20px;
    background-color: #333;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 20px;
}
@media (max-width: 767px) {
    .highlighted-text {
        font-size: 7.5px;
    }
}

.grid-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.image-column, .form-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Apply flex: 1 only for large screens and above */
@media (min-width: 992px) {
    .image-column, .form-column {
        flex: 1;
    }
}

.image-column {
    position: relative;
    width: 100%;
}

/* Ensure the image container is positioned relative to position the button absolutely */
.image-column {
    position: relative;
    width: 100%;
}

#motilal {
    height: 450px; /* Adjust to maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    display: block; /* Ensure it displays as a block element */
    margin-top: 73px;
}

/* Play button styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it is on top of the image */
}

.play-button img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    cursor: pointer; /* Change cursor to pointer for click action */
}

/* Responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    #motilal {
        height: 230px;
    }

    .play-button img {
        width: 50px; /* Adjust size on medium screens */
        height: 50px; /* Adjust size on medium screens */
    }
}

@media (max-width: 768px) {
    #motilal {
        height: 200px;
        margin: 15px;
    }

    .play-button img {
        width: 40px; /* Adjust size on small screens */
        height: 40px; /* Adjust size on small screens */
    }
}


/* Ensure the iframe (video) is styled correctly when it replaces the image */
.image-column iframe {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    border: none;
}




/* iPad screens */
@media (max-width: 1024px) and (min-width: 769px) {
    #motilal {
        height: 230px;
    }

    .image-column iframe {
        height: 400px; /* Ensure iframe height matches image height */
        width: 385px;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    #motilal {
        height: 200px;
    }

    .image-column iframe {
        height: 200px; /* Ensure iframe height matches image height */
        width: 355px;
    }
}


.form-column {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add margin to separate from image */
    width: 100%; /* Ensure the form column takes full width on small screens */
}

.topForm {
    margin: auto;
    margin-top: 0px;
    border: 1px solid #909090;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px; /* Ensure the form has a maximum width */
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (max-width: 768px) {
    .topForm {
        width: 90%; /* Adjust width on smaller screens */
    }
}
/* Form Heading */
.topForm h3 {
    margin-top: 7%;
    font-size: 20px;
    color: #faae1b;
    text-align: center;
    font-weight: 700;
    padding-bottom: 10px;
}

/* Form Inputs */
.topForm input.inText,
.topForm select.inText {
    background: #f3f3f3;
    border: none;
    font-size: 12px;
    color: #90908f;
    padding: 8px;
    width: calc(100% - 16px);
}

.topForm input.OtpinText {
    background: #FFFFFF;
    border: 1px solid #9d9ea0;
    font-size: 12px;
    color: #9d9ea0;
    text-align: center;
    width: calc(100% - 16px);
}



.topForm .form-check {
    margin-top: 10px;
}

.textpan {
    font-size: 12px;
    color: #90908f;
    text-align: center;
    margin-bottom: 13px !important;
}
/* Spacer Section Styling */
#spacer {
    background-color: #EFEFEF;
    padding: 20px 0; /* Add some padding to give space around the section */
}




/* Features Section Styling */
#features {
    width: 152%; /* Extend the section width to 150% */
    padding: 2% 0 2%;
    text-align: center;
    background-color: #f8f4f4;
    position: relative;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    padding-left: 7%;
    overflow: hidden;
}

.container {
    width: 60%; /* Restrict the content area to 60% of the section */
    margin-left: 0; /* Ensure the container is aligned to the left */
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three columns for larger screens */
    grid-template-rows: repeat(2, auto); /* Two rows */
    gap: 20px; /* Space between items */
    max-width: 100%; /* Ensure the container uses all available width */
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.feature-item img {
    width: 60px; /* Adjust size for visibility */
    height: auto;
    margin-right: 15px;
}

.feature-item p {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.solid-advice {
    font-size: 1.2rem; /* Adjust font size if needed */
    text-align: center;
    margin: 0 20px;
}

.solid-advice1 {
    font-weight: bold;
    background-color: #faae1b;
    color: #333333;
    padding: 10px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 0;
    font-size: 1.5rem;
    z-index: 10;
    position: relative;
}

.highlighted-text1 {
    background-color: #faae1b;
    color: #333;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 1024px) {
    #features{
        width: 100%;
    }

    .container {
        width: 100%; /* Adjust to fit the container on smaller screens */
        margin-left: 0;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns for tablets and mobile screens */
        grid-template-rows: repeat(3, auto); /* Three rows */
        gap: 10px; /* Adjust gap */
    }

    .feature-item img {
        width: 60px; /* Adjust image size for both tablets and mobile */
        height: auto;
        margin-bottom: 10px; /* Space between image and text */
    }

    .feature-item p {
        font-weight: 500;
        font-size: 14px; /* Adjust font size */
        color: #333;
        margin: 0;
    }
}

@media (max-width: 767px) {
    #features{
        width: 100%;
    }
    .highlighted-text1 {
        font-size: 15px;
    }
    .feature-item img {
        width: 30px; /* Adjust size for mobile screens */
    }
    .feature-item p {
        font-size: 10px; /* Adjust font size for mobile screens */
    }
    .feature-item {
        padding: 5px; /* Adjust padding for mobile screens */
    }
    .solid-advice {
        margin: 10px 0;
    }
}


/* Feature 2 Styling */
#features-2 {
    margin: 0 0 0 10%;
    background-color: #fff;
    width: 100%; /* Ensure full width */
}

#features-2 .container {
    padding: 0 1rem; /* Ensure padding for container */
}

#features-2 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

/* Text Section Styling */
#features-2 .text-section {
    text-align: center;
    font-size: xx-large;
    padding: 1rem;
}

#features-2 .text-section h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    color: #333;
}

/* Cards Section Styling */
#features-2 .card-section {
    position: relative;
    padding: 1rem;
}

#features-2 .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
    gap: 1rem 2.5rem;
    width: 100%;
    max-width: 960px;
}

/* Styling for card elements */
#features-2 .card {
    background: white;
    border-radius: 10px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border: none;
    height: 170px; /* Adjust height as needed */
}

#features-2 .card-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

#features-2 .card-text {
    font-size: 0.9rem;
    color: #333;
    padding: 0.5rem;
}
/* Ensure both containers are set to grid for mobile and tablet screens */
@media (max-width: 768px) {

    #features-2 {
        margin: 0;
    }

    .visible-cards,
    .kuch-cards {
        display: grid !important;
    }
}

/* Navigation Buttons Styling */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev-button {
    left: -3rem; /* Adjust as needed */
    z-index: 1000;
}

.next-button {
    right: -6rem; /* Adjust as needed */
    z-index: 1000;
}

.nav-button img {
    width: 30px; /* Adjust the size as needed */
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 767px){


    #features-2 .card-section {
        position: static; /* Remove positioning */
        padding: 1rem 0; /* Adjust padding */
    }

    #features-2 .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for mobile */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }

    /* Hide navigation buttons on smaller screens */
    .nav-button {
        display: none; /* Hide buttons on small screens */
    }
}

@media (max-width: 800px) {
    #features-2 .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }

    /* Hide navigation buttons on tablets */
    .nav-button {
        display: none; /* Hide buttons on tablets */
    }
}

@media (min-width: 768px) and (max-width: 1184px) {
    #features-2 .text-section h2 {
        font-size: 22px; /* Adjust font size for tablets */
    }

    #features-2 .card-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }
}

/* General Reset for sections */
section {
    margin: 0;
    padding: 0;
}






/* General Reset for sections */
section {
    margin: 0;
    padding: 0;
}

/* Carousel Styling */
#carousel {
    position: relative;
    width: 152%;
}
@media (max-width: 768px) {
    #carousel {
        width: 100%; /* Width for tablets and mobile screens */
    }
}
#redContainer {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-140%, 900%); /* Center it initially */
    width: 13vw; /* Responsive width, adjust as needed */
    height: 4vw; /* Responsive height, adjust as needed */
    background-color: transparent; /* Background color can be adjusted */
    cursor: pointer;
    z-index: 1000; /* Ensure it is on top of other elements */
}

#redContainer1 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-140%, 970%); /* Center it initially */
    width: 13vw; /* Responsive width, adjust as needed */
    height: 4vw; /* Responsive height, adjust as needed */
    background-color: transparent; /* Background color can be adjusted */
    cursor: pointer;
    z-index: 1000; /* Ensure it is on top of other elements */
}

.carousel-inner img {
    width: 100% !important; 
    margin: auto;
    height: auto;
}
@media (max-width: 768px) {
    .carousel-inner img {
        width: 100% !important;
        margin-bottom: 2%;
    }
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    position: absolute;
    margin-bottom: 4%; /* Position indicators below the carousel */
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* Space between indicators */
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    border: 2px solid black;
}

.carousel-slide {
    position: relative;
    display: inline-block;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; /* Adjust size to your preference */
    height: 30px; /* Adjust size to your preference */
    cursor: pointer;
    z-index: 10; /* Ensure itÃ¢â‚¬â„¢s on top of the image */
}

.carousel-indicators button {
    background-color: white; /* Default background color */
    border: 2px solid black; /* Black border */
    border-radius: 50%; /* Circle shape */
    width: 10px; /* Size of the indicator */
    height: 10px; /* Size of the indicator */
    padding: 0;
    opacity: 0.8; /* Slightly transparent for non-active indicators */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for background color */
}

.carousel-indicators button.active {
    background-color: black; /* Black background for the active indicator */
    opacity: 1; /* Fully opaque */
    transform: scale(1.2); /* Slightly larger for active indicator */
}

.carousel-text {
    position: absolute;
    bottom: 0px; /* Adjusted position to ensure text is above indicators */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    z-index: 10; /* Ensure the text is above other elements */
}

/* Media query for smaller screens */
/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .carousel-text {
        bottom: -20px; /* Adjust position for smaller screens */
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        margin-bottom: 7%; /* Position indicators below the carousel */
    }

    .carousel-indicators button {
        width: 2px; /* Smaller size for mobile */
        height: 2px; /* Smaller size for mobile */
    }
}

@media (max-width:480px){
    .carousel-indicators {
        margin-bottom: 7%; /* Position indicators below the carousel */
    }
}

/* Tablets (portrait and landscape modes) */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-text {
        bottom: -10px; /* Adjust position for tablets */
        padding: 1rem;
        font-size: 1.1rem;
    }

    .carousel-indicators {
        margin-bottom: 10%; /* Position indicators for tablets */
    }

    .carousel-indicators button {
        width: 6px; /* Adjust size for tablets */
        height: 6px; /* Adjust size for tablets */
    }
}




/* Awards Section */
.bg-rightway {
    background: url(../../public/images/rightway-background.png) no-repeat center;
    background-size: 152%;
    padding: 0;
    width: 100vw; /* Set section width to 150% of the viewport width */
}
.custom-container {
    width: fit-content; /* Restrict content width to 60% of the 150% section width */
    margin-left: 10%;
}
/* Tablet screens (min-width: 769px and max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .custom-container {
        width: fit-content; /* Restrict content width to 60% of the 150% section width */
    }
    .bg-rightway {
        background-color: #333333;
        width: 100% !important; /* Set width to 100% for tablets */
        background-size: 100%; /* Adjust background size to fit */
    }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
    .custom-container {
        width: fit-content; /* Restrict content width to 60% of the 150% section width */
        margin: auto;
    }
    .bg-rightway {
        background-color: #333333;
        width: 100% !important; /* Set width to 100% for mobile */
        background-size: 100%; /* Adjust background size to fit */
    }
}
/* Container adjustment to fit content within the section */


.awardsBg {
    font-size: 13px;
    min-height: 180px;
    padding: 20px;
    text-align: center;
    color: #fffefe;
    background: url(../../public/images/awards.png) no-repeat center;
    background-size: contain;
}

.awardsBg span {
    color: #faae1b;
    font-weight: 700;
}

.wealthlinecarosuel-button {
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlinecarosuel-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthlinefeatures-button {
    margin-right: 5%;
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16.3px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlinefeatures-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthline-button {
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthline-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthlineawards-button {
    font-weight: bold;
    background-color: #ffb400;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlineawards-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

/* Responsive adjustments */
@media (min-width: 1025px) {
    .awardsBg {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .awardsBg {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .awardsBg {
        font-size: 13px;
        padding-top: 30px;
    }
}

@media (max-width: 1024px) {
    .wealthlinecarosuel-button {
        width: fit-content; /* Optional: Center button horizontally */
    }
}

@media (min-width: 1025px) {
    .wealthlinecarosuel-button {
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 820px) and (min-height: 1024px) and (max-height: 1180px) {
    .wealthlinecarosuel-button {
        margin-bottom: 10%; /* Adjust the value as needed for spacing from above */
    }
}

@media (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) and (max-height: 1180px) {
    .wealthlinecarosuel-button {
        margin-bottom: 10px; /* Adjust the value as needed for spacing from above */
        margin: auto;
    }
}

@media (max-width: 480px) {
    .wealthlinecarosuel-button {
        margin-bottom: 4%; /* Adjust spacing for smaller mobile screens */
        margin: auto !important;
    }
}

@media (max-width: 1024px) and (min-height: 1024px) {
    .wealthlinecarosuel-button {
        margin-bottom: 2%; /* Adjust spacing for smaller mobile screens */
    }
}

/* Styling for contact-info1 */
.contact-info1 {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #faae1b;
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin: 0;
}

/* Center align the contact-info1 container */
.row.justify-content-center {
    justify-content: center;
}

/* Ensure proper spacing between sections */
.container-fluid.bg-rightway {
    width: 152%;
    padding: 0;
}
/* Carousel Section */
.carousel-section {
    /* Center the section by offsetting half of the extra width */
    /* /// */
    text-align: center;
    padding: 20px;
    background-color: #ffb400;
    position: relative;
    width: 152%;
}
@media (max-width: 768px) {
    .carousel-section {
        width: 100%; /* Full width of the viewport */
    }
}
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 65%;
}

.carousel-wrapper {
    
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 60%;
    flex: 0 0 calc(33.33% - 30px); /* Adjusted for desktop */
    margin: 0 15px;
    position: relative;
    box-sizing: border-box;
    transform: scale(0.85);
    transition: transform 0.5s ease, z-index 0.5s ease;
    border-radius: 15px; /* Default border-radius for all slides */
    overflow: hidden; /* Ensure that the border-radius affects child elements too */
}

.carousel-slide.zoom {
    transform: scale(1.0);
    z-index: 10;
    border-radius: 25px; /* Increased border-radius for the zoomed slide */
}

.carousel-slide img {
    height: auto;
    display: block; /* Ensure images don't have extra space below */
}
/* Indicators */
.carousel-indicators2 {
    display: flex;
    width: 100%;
    position: relative;
    background-color: #ffb400;
    padding-top: 20px;
    padding-left: 27%; /* Default value for desktop screens */
}

/* Tablet screens (min-width: 769px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .carousel-indicators2 {
        padding-left:40%; /* Adjust padding-left for tablets */
    }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 767px) {
    .carousel-indicators2 {
        padding-left: 35%; /* Adjust padding-left for mobile screens */
    }
}

.dot {
    height: 16px;
    width: 16px;
    margin: 0 8px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: white;
    border: none;
    transform: scale(1.2); /* Slightly larger active dot */
}

/* Contact Info */
.contact-info {
    font-weight: bold;
    background-color: #333333;
    color: #ffffff;
    padding: 10px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px; /* Adjusted for spacing */
    font-size: 20px;
    z-index: 10;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
        margin: 0 auto;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 20px); /* Show 1 slide at a time on tablets */
        margin: 0 10px;
    }

    .carousel-indicators2 {
        padding-top: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
    }

    .contact-info {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(100% - 20px); /* Show 1 slide at a time on mobile */
        margin: 0 10px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }

    .contact-info {
        font-size: 16px;
    }
}


/* Review section */
#review {
    width: 152%; /* Full width */
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f4f4;
    position: relative;
    overflow: hidden; /* Ensure background extends correctly */
}

/* Extend the background to 150% width */
#review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Adjust width for different screens */
    height: 100%;
    background-color: #f8f4f4;
    z-index: -1;
}

/* Container for the review content */
.review-container {
    width: 60%; /* Restrict content width to 60% */
    display: grid;
    margin: 0 4%;
    grid-template-columns: repeat(2, 0.5fr); /* Two columns for the cards */
    grid-template-rows: repeat(2, auto); /* Two rows for the cards */
    gap: 30px; /* Spacing between cards */
    position: relative; /* Ensure positioning context for review cards */
}

/* Title styling */
#review h2 {
    grid-column: 1 / span 2; /* Span across both columns */
    margin-bottom: 30px;
    text-align: left;
    margin: 1% 4%;

}

/* Individual review card styling */
.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Default shadow */
    max-width: 330px; /* Width of each review card */
    text-align: center; /* Center align text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transition for zoom and shadow effect */
    position: relative; /* Ensure positioning context for pseudo-elements */
}

.review-card:hover {
    transform: scale(1.1); /* More pronounced zoom effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Increase shadow on hover */
}

.review-card p {
    font-family: var(--font-poppins);
    font-weight: 400; /* Regular weight */
    font-size: 16px; /* Font size for reviews */
    line-height: 1.6;
    padding: 20px; /* Adjust padding to fit your design */
    margin: 0; /* Remove default margin for better alignment */
    position: relative;
    padding-left: 40px; /* Space for the left quotation mark */
    padding-right: 40px; /* Space for the right quotation mark */
}

.quote-img {
    position: absolute;
    width: 24px; /* Width of quotation marks */
    height: 24px; /* Height of quotation marks */
}

.open-quote {
    left: 10px; /* Position for the left quotation mark */
}

.quote-img:not(.open-quote) {
    right: 10px; /* Position for the right quotation mark */
}

.review-card span {
    display: block;
    margin-top: 10px;
    font-family: var(--font-poppins);
    font-weight: 600; /* Bold weight for names */
    font-size: 14px; /* Font size for names */
}

.review-card .designation {
    font-family: var(--font-poppins);
    font-weight: 400; /* Regular weight for job titles */
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .review-card {
       margin: auto;
    }

    #review::before {
        width: 150%; /* Adjust for smaller screens */
    }

    .review-container {
        width: 80%; /* Adjust width for tablets */
    }
}

@media (max-width: 480px) {
    #review::before {
        width: 200%; /* Adjust for mobile screens */
    }

    .review-container {
        width: 90%; /* Adjust width for mobile */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #review {
        width: 100%; /* Full width on smaller screens */
        padding: 30px 10px; /* Adjust padding for smaller screens */
    }
    #review h2{
        text-align: center;
    }

    .review-container {
        width: 90%; /* Adjust width for smaller screens */
        grid-template-columns: 1fr; /* One column layout for smaller screens */
        grid-template-rows: auto; /* Auto rows for a single column layout */
        margin: auto; /* Center the container */
    }
}
/* Footer styles */
footer {
    background-color: #9b9b9b;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping of content */
}

.footer-left {
    font-size: 14px;
}

.footer-right {
    font-size: 20px; /* Adjust the font size as needed */
    display: flex;
    align-items: center; /* Center icons vertically */
}

.footer-right a {
    color: white; /* Ensure icons are white */
    text-decoration: none; /* Remove underline from links */
    margin-left: 15px; /* Add space between icons */
}

.footer-right a:first-child {
    margin-left: 0; /* Remove left margin for the first icon */
}

/* Responsive Styles */
.footer-right {
    font-size: 20px; /* Adjust the font size as needed */
    display: flex;
    align-items: center; /* Center icons vertically */
}

.follow-text {
    margin-right: 15px; /* Space between text and first icon, matching icon spacing */
    font-size: inherit; /* Ensure font size is consistent with other text */
}

.footer-right a {
    color: white; /* Ensure icons are white */
    text-decoration: none; /* Remove underline from links */
    margin-left: 15px; /* Space between icons */
}

.footer-right a:first-child {
    margin-left: 0; /* Remove left margin for the first icon */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-right {
        font-size: 18px; /* Slightly reduce font size */
        margin-top: 15px; /* Add top margin to separate from footer-left */
        width: 100%; /* Make the right section full width */
        justify-content: flex-start; /* Align icons to the start */
    }

    .follow-text {
        margin-right: 10px; /* Adjust space between text and first icon for smaller screens */
    }

    .footer-right a {
        margin-left: 10px; /* Reduce space between icons */
    }
}

@media (max-width: 480px) {
    .footer-right {
        font-size: 16px; /* Further reduce font size */
    }

    .follow-text {
        margin-right: 8px; /* Further adjust space between text and first icon */
    }

    .footer-right a {
        margin-left: 8px; /* Further reduce space between icons */
    }
}


.disclaimer{
    background-color: #fff4f4;
    text-align: center;
}

.wealthline-carousal-form-container {
    margin: auto;
    font-weight: bold;
    margin-bottom: -12px;
    font-size: 16px;
    /* font-family: 'Poppins'; */
    left: 0;
    width: 75%; /* Make the container span the full width of the parent */
    background-color: black; /* Black background */
    color: white; /* White text color */
    padding: 2px 28px; /* Padding for spacing */
    border-radius: 60px; /* Rounded corners */
    display: flex; /* Flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 0.5rem; /* Space between text and phone number */
    transform: translate(0, 30%); /* Move the container down by half of its height */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow for better visibility */
}

/* Style for the wealthline text container */
.wealthline-text-container {
    text-align: center; /* Center text inside container */
}

/* Style for the wealthline text */
.wealthline-text {
    font-size: 24px;
    color: white; /* White color for the label text */
    display: block; /* Make sure the text spans full width */
}

/* Style for the phone number */
.phone-number {
    font-size: 32px;
    color: #ffb400; /* Yellow color for the phone number */
    font-weight: bold; /* Bold font for emphasis */
    display: block; /* Make sure the number is on its own line */
}




@media (max-width: 1024px) {
    .topForm {
        width: 160%; /* Adjust width as needed */
        max-width: 600px; /* Increase width */
        margin: 0 auto;
        padding: 1rem;
        height: auto; /* Adjust height as needed */
        position: relative; /* Ensure the form is positioned relative for stacking context */
        z-index: 2; /* Higher z-index to ensure it stays above other elements */
    }
    
    .form-row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .form-column {
        flex: 1;
        min-width: 0; /* Allow columns to shrink */
        padding: 0 1rem;
    }
    
    .form-column .mb-3 {
        margin-bottom: 1rem;
    }
    
    .form-footer {
        margin-top: -5%; /* Adjust margin to position correctly */
    }
    
    .wealthline-carousal-form-mobile-container {
        font-weight: bold;
        font-size: 16px;
        /* font-family: 'Poppins'; */
        left: 0;
        width: 90%;
        background-color: #333333;
        color: white;
        padding: 1rem;
        border-radius: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        position: absolute; /* Position absolutely to control stacking */
        top: 50%; /* Adjust top to position correctly */
        left: 50%;
        transform: translate(-100%, -100%); /* Center horizontally and vertically */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1; /* Lower z-index to place behind the form */
    }
    
    /* Hide the desktop view and tablet view by default */
    .desktop-view, .tablet-view {
        display: block !important;
    }
    
    /* Show the mobile view */
    .mobile-view {
        display: block !important;
    }
}

/* Styles for screens larger than 1200px */
@media (min-width: 1200px) {
    .desktop-view {
        display: block !important;
    }
    
    /* Hide the tablet view and mobile view */
    .mobile-view {
        display: none !important;
    }
}

/* Styles for screens between 768px and 1199px */
@media (min-width: 769px) and (max-width: 1199px) {
    .mobile-view {
        display: block !important;
    }
    
    /* Hide the desktop view and mobile view */
    .desktop-view {
        display: block !important;
    }
}

/* Styles for screens smaller than 768px */
@media (max-width: 767px) {
    .mobile-view,.tablet-view {
        display: block !important;
    }
    
    /* Hide the desktop view and tablet view */
    .desktop-view, .tablet-view {
        display: block !important;
    }
}


/*OTP Modal POPUP*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    position: relative;
    background-color: #f9af29;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 35% !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.modal-header {
    padding: 2px 16px !important;
    background-color: #f9af29;
    color: black !important;
}

 a.tag1{
	text-decoration:none;
}

.btn-1{
	    margin: 15px 0px;
    display: inline-block;
}

.quote-left{
	width: 25px;
    height: 25px;
    margin: 0px 10px 0px -10px;
}

.quote-right{
	width: 25px;
    height: 25px;
    margin: 0px -10px 0px 10px;
}

.carousel-indicators{
	margin-bottom:14px !important;
}
/* Check Box tick  */
.form-check-input {appearance: auto !important;}

/* Submitt Button*/
.btn1{
	background-color:#343434;
	font-size: 17px !important;
	 width: 97% !important; 
	/* margin: -10px -27px; */
}
.otpfield {width:94% !important;}

.btn:disabled{
	background-color:#343434 !important;
}

/* Mobile View */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding-right: 0;
}

.row>*{
    padding-right: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
}

/* Navbar Styling */
/* Navbar Styling */
#navbar {
    background-color: rgb(51, 51, 51);
width: 100%;
}

.navbar-img {
    width: 100%;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .navbar-img {
        content: url('public/images/navmobile.png');
    }
}

/* CSS for mobile screens */
@media (max-width: 768px) {
    #navbar .navbar {
        display: flex;
        flex-direction: row; /* Arrange items in a row */
        justify-content: space-between; /* Space items evenly */
        align-items: center; /* Center items vertically */
    }
    .navbar-text .break {
        display: block; /* Make the span behave like a block element, so it starts on a new line */
    }


    #navbar .navbar-brand {
        flex: 0 0 auto;
    }

    #navbar .navbar-text-container {
        flex: 1; /* Allow the text container to take up remaining space */
        text-align: right; /* Align the text to the right */
    }

    #navbar .navbar-text {
        font-size: 1.05rem; /* Adjust the text size as needed */
        margin: 0; /* Remove any default margins */
        
    }


    #navbar .brand-logo {
        width: 180px; /* Adjust logo size for mobile */
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    #navbar .navbar-text {
        font-size: 2rem; /* Adjust the text size for tablets */
    }
}

.form-floating-wrapper {
    position: sticky;
    top: 0;
    z-index: 99;
    margin-top: 120px;
  }

  .wealthlinecarosuelform-button {
    position: absolute;
    border-radius: 60px;
    width: 80%;
    top: -50px; /* Adjust based on desired positioning */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensures the button appears on top of other content */
    background-color: #333333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;

}
.wealthlinecarosuelform-button .phone-number {
    color: #ffbc04; /* Yellow color for the phone number */
}

  

  
/* Numbers Section Styling */
/* Container that ensures the section spans 150% width of the viewport */
#numbers {
    padding: 1rem 0 1rem;
    width: 100%; /* Make the section 150% of the viewport width */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #403c3c; 
    color: white;
}
@media (min-width: 769px) {
    #numbers {
        width: 152%; /* Increase width for larger screens */
    }
}

/* Ensures the content is constrained to the left 60% of the viewport */
.numbers-container {
    width: 60vw; /* Limit content width to 60% of the viewport width */
    margin-left: 0; /* Align content to the left side of the section */
    margin-right: auto; /* Create empty space on the right side */    
}

@media (max-width: 768px) {
    .numbers-container {
        width: 100%; /* Full width of the viewport */
        margin-left: auto; /* Center-align content */
        margin-right: auto; /* Center-align content */
    }
    
    /* Optional: Adjust padding for better appearance on small screens */
    .numbers-container {
        padding: 0 1rem;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-12 {
    
    max-width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.schemeTextA, .schemeTextB {
    text-align: center;
}

.text-yellow {
    color: ffbc04; /* Adjust to your color scheme */
}

.no-border {
    border: none; /* Remove border if any */
    padding: 1.2%;
}

.numbersp-text {
    margin-bottom: 0;
}


/* Main Section Styling */
#main {
    z-index: 10;
}

h2.poppins-bold {
    font-family: 'Poppins';
    font-weight: bold;
    text-align: left;
}
@media (max-width: 768px) {
    h2.poppins-bold {
        text-align: center; /* Center alignment for tablets and mobile screens */
    }
}

/* Main Section Styling */
/* Main Section Styling */
#main {
    z-index: 10;
}

.overlay-content {
    text-align: center;
    color: white; 
    background-image: url('public/images/bg.jpg'); 
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.background-div {
    position: relative;
    width: 100%;
    height: auto;
}

.background-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 80px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Initially hidden */
    z-index: 10;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    transition: opacity 1s ease;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}
/* For desktop screens */
@media (min-width: 769px) {
    .background-div {
        width: 152%; /* Wider container for desktop screens */
        height: 600px; /* Adjust as needed */
        overflow: hidden; /* Ensure content does not overflow */
    }
}

/* For smaller screens (tablets and mobiles) */
@media (max-width: 768px) {
    .background-div {
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Height adjusts automatically */
    }
}

/* Play Button Styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it is on top of the image */
}

.play-button img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    cursor: pointer; /* Change cursor to pointer for click action */
}

/* Ensure the play button is responsive */
@media (max-width: 768px) {
    .play-button img {
        width: 40px; /* Adjust size on smaller screens */
        height: 40px; /* Adjust size on smaller screens */
    }
}



.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it's on top */
}

.highlighted-text{
    border-radius: 20px;
    background-color: #333;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 20px;
}
@media (max-width: 767px) {
    .highlighted-text {
        font-size: 7.5px;
    }
}

.grid-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
	
}

.image-column, .form-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Apply flex: 1 only for large screens and above */
@media (min-width: 992px) {
    .image-column, .form-column {
        flex: 1;
    }
}

.image-column {
    position: relative;
    width: 100%;
}

/* Ensure the image container is positioned relative to position the button absolutely */
.image-column {
    position: relative;
    width: 100%;
}

#motilal {
    height: 450px; /* Adjust to maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    display: block; /* Ensure it displays as a block element */
    margin-top: 73px;
}

/* Play button styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it is on top of the image */
}

.play-button img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    cursor: pointer; /* Change cursor to pointer for click action */
}

/* Responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    #motilal {
        height: 230px;
    }

    .play-button img {
        width: 50px; /* Adjust size on medium screens */
        height: 50px; /* Adjust size on medium screens */
    }
}

@media (max-width: 768px) {
    #motilal {
        height: 200px;
        margin: 15px;
    }

    .play-button img {
        width: 40px; /* Adjust size on small screens */
        height: 40px; /* Adjust size on small screens */
    }
}


/* Ensure the iframe (video) is styled correctly when it replaces the image */
.image-column iframe {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    border: none;
}




/* iPad screens */
@media (max-width: 1024px) and (min-width: 769px) {
    #motilal {
        height: 230px;
    }

    .image-column iframe {
        height: 400px; /* Ensure iframe height matches image height */
        width: 385px;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    #motilal {
        height: 200px;
    }

    .image-column iframe {
        height: 200px; /* Ensure iframe height matches image height */
        width: 355px;
    }
}


.form-column {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add margin to separate from image */
    width: 100%; /* Ensure the form column takes full width on small screens */
}

.topForm {
    margin: auto;
    /* margin-top: 116px !important; */
    border: 1px solid #909090;
    background: #FFFFFF;
    padding: 2px 15px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px; /* Ensure the form has a maximum width */
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (max-width: 768px) {
    .topForm {
        width: 90%; /* Adjust width on smaller screens */
    }
}
/* Form Heading */
.topForm h3 {
    margin-top: 4%;
    font-size: 25px;
    color: #faae1b;
    text-align: center;
    font-weight: 700;
    padding-bottom: 0px;
}

/* Form Inputs */
.topForm input.inText,
.topForm select.inText {
    background: #f3f3f3;
    border: none;
    font-size: 12px;
    color: #90908f;
    padding: 8px;
    width: calc(100% - 0px);
}

.topForm input.OtpinText {
    background: #FFFFFF;
    border: 1px solid #9d9ea0;
    font-size: 12px;
    color: #9d9ea0;
    text-align: center;
    width: calc(100% - 16px);
}



.topForm .form-check {
    margin-top: 10px;
}

.textpan {
    font-size: 12px;
    color: #90908f;
    text-align: center;
}
/* Spacer Section Styling */
#spacer {
    background-color: #EFEFEF;
    padding: 20px 0; /* Add some padding to give space around the section */
}




/* Features Section Styling */
#features {
    width: 152%; /* Extend the section width to 150% */
    padding: 2% 0 2%;
    text-align: center;
    background-color: #f8f4f4;
    position: relative;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    padding-left: 7%;
    overflow: hidden;
}

.container {
    width: 60%; /* Restrict the content area to 60% of the section */
    margin-left: 0; /* Ensure the container is aligned to the left */
}

.container-form {
    width: 100%; /* Restrict the content area to 60% of the section */
    margin-left: 0; /* Ensure the container is aligned to the left */
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three columns for larger screens */
    grid-template-rows: repeat(2, auto); /* Two rows */
    gap: 20px; /* Space between items */
    max-width: 100%; /* Ensure the container uses all available width */
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.feature-item img {
    width: 60px; /* Adjust size for visibility */
    height: auto;
    margin-right: 15px;
}

.feature-item p {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.solid-advice {
    font-size: 1.2rem; /* Adjust font size if needed */
    text-align: center;
    margin: 0 20px;
}

.solid-advice1 {
    font-weight: bold;
    background-color: #faae1b;
    color: #333333;
    padding: 10px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 0;
    font-size: 1.5rem;
    z-index: 10;
    position: relative;
}

.highlighted-text1 {
    background-color: #faae1b;
    color: #333;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 1024px) {
    #features{
        width: 100%;
    }

    .container {
        width: 100%; /* Adjust to fit the container on smaller screens */
        margin-left: 0;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns for tablets and mobile screens */
        grid-template-rows: repeat(3, auto); /* Three rows */
        gap: 10px; /* Adjust gap */
    }

    .feature-item img {
        width: 60px; /* Adjust image size for both tablets and mobile */
        height: auto;
        margin-bottom: 10px; /* Space between image and text */
    }

    .feature-item p {
        font-weight: 500;
        font-size: 14px; /* Adjust font size */
        color: #333;
        margin: 0;
    }
}

@media (max-width: 767px) {
    #features{
        width: 100%;
    }
    .highlighted-text1 {
        font-size: 15px;
    }
    .feature-item img {
        width: 30px; /* Adjust size for mobile screens */
    }
    .feature-item p {
        font-size: 10px; /* Adjust font size for mobile screens */
    }
    .feature-item {
        padding: 5px; /* Adjust padding for mobile screens */
    }
    .solid-advice {
        margin: 10px 0;
    }
}


/* Feature 2 Styling */
#features-2 {
    margin: 0 0 0 10%;
    background-color: #fff;
    width: 100%; /* Ensure full width */
}

#features-2 .container {
    padding: 0 1rem; /* Ensure padding for container */
}

#features-2 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

/* Text Section Styling */
#features-2 .text-section {
    text-align: center;
    font-size: xx-large;
    padding: 1rem;
}

#features-2 .text-section h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    color: #333;
}

/* Cards Section Styling */
#features-2 .card-section {
    position: relative;
    padding: 1rem;
}

#features-2 .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
    gap: 1rem 2.5rem;
    width: 100%;
    max-width: 960px;
}

/* Styling for card elements */
#features-2 .card {
    background: white;
    border-radius: 10px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border: none;
    height: 170px; /* Adjust height as needed */
}

#features-2 .card-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

#features-2 .card-text {
    font-size: 0.9rem;
    color: #333;
    padding: 0.5rem;
}
/* Ensure both containers are set to grid for mobile and tablet screens */
@media (max-width: 768px) {

    #features-2 {
        margin: 0;
    }

    .visible-cards,
    .kuch-cards {
        display: grid !important;
    }
}

/* Navigation Buttons Styling */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev-button {
    left: -3rem; /* Adjust as needed */
    z-index: 1000;
}

.next-button {
    right: -6rem; /* Adjust as needed */
    z-index: 1000;
}

.nav-button img {
    width: 30px; /* Adjust the size as needed */
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 767px){


    #features-2 .card-section {
        position: static; /* Remove positioning */
        padding: 1rem 0; /* Adjust padding */
    }

    #features-2 .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for mobile */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }

    /* Hide navigation buttons on smaller screens */
    .nav-button {
        display: none; /* Hide buttons on small screens */
    }
}

@media (max-width: 800px) {
    #features-2 .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }

    /* Hide navigation buttons on tablets */
    .nav-button {
        display: none; /* Hide buttons on tablets */
    }
}

@media (min-width: 768px) and (max-width: 1184px) {
    #features-2 .text-section h2 {
        font-size: 22px; /* Adjust font size for tablets */
    }

    #features-2 .card-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
        grid-template-rows: repeat(4, auto); /* 4 rows to fit all 12 cards */
        gap: 1rem;
    }
}

/* General Reset for sections */
section {
    margin: 0;
    padding: 0;
}






/* General Reset for sections */
section {
    margin: 0;
    padding: 0;
}

/* Carousel Styling */
#carousel {
    position: relative;
    width: 152%;
}
@media (max-width: 768px) {
    #carousel {
        width: 100%; /* Width for tablets and mobile screens */
    }
}
#redContainer {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-140%, 900%); /* Center it initially */
    width: 13vw; /* Responsive width, adjust as needed */
    height: 4vw; /* Responsive height, adjust as needed */
    background-color: transparent; /* Background color can be adjusted */
    cursor: pointer;
    z-index: 1000; /* Ensure it is on top of other elements */
}

#redContainer1 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-140%, 970%); /* Center it initially */
    width: 13vw; /* Responsive width, adjust as needed */
    height: 4vw; /* Responsive height, adjust as needed */
    background-color: transparent; /* Background color can be adjusted */
    cursor: pointer;
    z-index: 1000; /* Ensure it is on top of other elements */
}

.carousel-inner img {
    width: 100% !important; 
    margin: auto;
    height: auto;
}
@media (max-width: 768px) {
    .carousel-inner img {
        width: 100% !important;
        margin-bottom: 2%;
    }
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    position: absolute;
    margin-bottom: 4%; /* Position indicators below the carousel */
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* Space between indicators */
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    border: 2px solid black;
}

.carousel-slide {
    position: relative;
    display: inline-block;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; /* Adjust size to your preference */
    height: 30px; /* Adjust size to your preference */
    cursor: pointer;
    z-index: 10; /* Ensure itÃ¢â‚¬â„¢s on top of the image */
}

.carousel-indicators button {
    background-color: white; /* Default background color */
    border: 2px solid black; /* Black border */
    border-radius: 50%; /* Circle shape */
    width: 10px; /* Size of the indicator */
    height: 10px; /* Size of the indicator */
    padding: 0;
    opacity: 0.8; /* Slightly transparent for non-active indicators */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for background color */
}

.carousel-indicators button.active {
    background-color: black; /* Black background for the active indicator */
    opacity: 1; /* Fully opaque */
    transform: scale(1.2); /* Slightly larger for active indicator */
}

.carousel-text {
    position: absolute;
    bottom: 0px; /* Adjusted position to ensure text is above indicators */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    z-index: 10; /* Ensure the text is above other elements */
}

/* Media query for smaller screens */
/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .carousel-text {
        bottom: -20px; /* Adjust position for smaller screens */
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        margin-bottom: 7%; /* Position indicators below the carousel */
    }

    .carousel-indicators button {
        width: 2px; /* Smaller size for mobile */
        height: 2px; /* Smaller size for mobile */
    }
}

@media (max-width:480px){
    .carousel-indicators {
        margin-bottom: 7%; /* Position indicators below the carousel */
    }
}

/* Tablets (portrait and landscape modes) */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-text {
        bottom: -10px; /* Adjust position for tablets */
        padding: 1rem;
        font-size: 1.1rem;
    }

    .carousel-indicators {
        margin-bottom: 10%; /* Position indicators for tablets */
    }

    .carousel-indicators button {
        width: 6px; /* Adjust size for tablets */
        height: 6px; /* Adjust size for tablets */
    }
}




/* Awards Section */
.bg-rightway {
    background: url(../../public/images/rightway-background.png) no-repeat center;
    background-size: 152%;
    padding: 0;
    width: 100vw; /* Set section width to 150% of the viewport width */
}
.custom-container {
    width: fit-content; /* Restrict content width to 60% of the 150% section width */
    margin-left: 10%;
}
/* Tablet screens (min-width: 769px and max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .custom-container {
        width: fit-content; /* Restrict content width to 60% of the 150% section width */
    }
    .bg-rightway {
        background-color: #333333;
        width: 100% !important; /* Set width to 100% for tablets */
        background-size: 100%; /* Adjust background size to fit */
    }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
    .custom-container {
        width: fit-content; /* Restrict content width to 60% of the 150% section width */
        margin: auto;
    }
    .bg-rightway {
        background-color: #333333;
        width: 100% !important; /* Set width to 100% for mobile */
        background-size: 100%; /* Adjust background size to fit */
    }
}
/* Container adjustment to fit content within the section */


.awardsBg {
    font-size: 13px;
    min-height: 180px;
    padding: 20px;
    text-align: center;
    color: #fffefe;
    background: url(../../public/images/awards.png) no-repeat center;
    background-size: contain;
}

.awardsBg span {
    color: #faae1b;
    font-weight: 700;
}

.wealthlinecarosuel-button {
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlinecarosuel-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthlinefeatures-button {
    margin-right: 5%;
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16.3px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlinefeatures-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthline-button {
    font-weight: bold;
    background-color: #333333;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthline-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

.wealthlineawards-button {
    font-weight: bold;
    background-color: #ffb400;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    margin-top: 20px; /* Adjust the value as needed for spacing from above */
}

.wealthlineawards-button:hover {
    opacity: 0.8; /* Optional: Adds a hover effect */
}

/* Responsive adjustments */
@media (min-width: 1025px) {
    .awardsBg {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .awardsBg {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .awardsBg {
        font-size: 13px;
        padding-top: 30px;
    }
}

@media (max-width: 1024px) {
    .wealthlinecarosuel-button {
        width: fit-content; /* Optional: Center button horizontally */
    }
}

@media (min-width: 1025px) {
    .wealthlinecarosuel-button {
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 820px) and (min-height: 1024px) and (max-height: 1180px) {
    .wealthlinecarosuel-button {
        margin-bottom: 10%; /* Adjust the value as needed for spacing from above */
    }
}

@media (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) and (max-height: 1180px) {
    .wealthlinecarosuel-button {
        margin-bottom: 10px; /* Adjust the value as needed for spacing from above */
        margin: auto;
    }
}

@media (max-width: 480px) {
    .wealthlinecarosuel-button {
        margin-bottom: 4%; /* Adjust spacing for smaller mobile screens */
        margin: auto !important;
    }
}

@media (max-width: 1024px) and (min-height: 1024px) {
    .wealthlinecarosuel-button {
        margin-bottom: 2%; /* Adjust spacing for smaller mobile screens */
    }
}

/* Styling for contact-info1 */
.contact-info1 {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #faae1b;
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin: 0;
}

/* Center align the contact-info1 container */
.row.justify-content-center {
    justify-content: center;
}

/* Ensure proper spacing between sections */
.container-fluid.bg-rightway {
    width: 152%;
    padding: 0;
}
/* Carousel Section */
.carousel-section {
    /* Center the section by offsetting half of the extra width */
    /* /// */
    text-align: center;
    padding: 20px;
    background-color: #ffb400;
    position: relative;
    width: 152%;
}
@media (max-width: 768px) {
    .carousel-section {
        width: 100%; /* Full width of the viewport */
    }
}
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 65%;
}

.carousel-wrapper {
    
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 60%;
    flex: 0 0 calc(33.33% - 30px); /* Adjusted for desktop */
    margin: 0 15px;
    position: relative;
    box-sizing: border-box;
    transform: scale(0.85);
    transition: transform 0.5s ease, z-index 0.5s ease;
    border-radius: 15px; /* Default border-radius for all slides */
    overflow: hidden; /* Ensure that the border-radius affects child elements too */
}

.carousel-slide.zoom {
    transform: scale(1.0);
    z-index: 10;
    border-radius: 25px; /* Increased border-radius for the zoomed slide */
}

.carousel-slide img {
    height: auto;
    display: block; /* Ensure images don't have extra space below */
}
/* Indicators */
.carousel-indicators2 {
    display: flex;
    width: 100%;
    position: relative;
    background-color: #ffb400;
    padding-top: 20px;
    padding-left: 27%; /* Default value for desktop screens */
}

/* Tablet screens (min-width: 769px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .carousel-indicators2 {
        padding-left:40%; /* Adjust padding-left for tablets */
    }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 767px) {
    .carousel-indicators2 {
        padding-left: 35%; /* Adjust padding-left for mobile screens */
    }
}

.dot {
    height: 16px;
    width: 16px;
    margin: 0 8px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: white;
    border: none;
    transform: scale(1.2); /* Slightly larger active dot */
}

/* Contact Info */
.contact-info {
    font-weight: bold;
    background-color: #333333;
    color: #ffffff;
    padding: 10px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px; /* Adjusted for spacing */
    font-size: 20px;
    z-index: 10;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
        margin: 0 auto;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 20px); /* Show 1 slide at a time on tablets */
        margin: 0 10px;
    }

    .carousel-indicators2 {
        padding-top: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
    }

    .contact-info {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(100% - 20px); /* Show 1 slide at a time on mobile */
        margin: 0 10px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }

    .contact-info {
        font-size: 16px;
    }
}


/* Review section */
#review {
    width: 152%; /* Full width */
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f4f4;
    position: relative;
    overflow: hidden; /* Ensure background extends correctly */
}

/* Extend the background to 150% width */
#review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Adjust width for different screens */
    height: 100%;
    background-color: #f8f4f4;
    z-index: -1;
}

/* Container for the review content */
.review-container {
    width: 60%; /* Restrict content width to 60% */
    display: grid;
    margin: 0 4%;
    grid-template-columns: repeat(2, 0.5fr); /* Two columns for the cards */
    grid-template-rows: repeat(2, auto); /* Two rows for the cards */
    gap: 30px; /* Spacing between cards */
    position: relative; /* Ensure positioning context for review cards */
}

/* Title styling */
#review h2 {
    grid-column: 1 / span 2; /* Span across both columns */
    margin-bottom: 30px;
    text-align: left;
    margin: 1% 4%;

}

/* Individual review card styling */
.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Default shadow */
    max-width: 330px; /* Width of each review card */
    text-align: center; /* Center align text */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transition for zoom and shadow effect */
    position: relative; /* Ensure positioning context for pseudo-elements */
}

.review-card:hover {
    transform: scale(1.1); /* More pronounced zoom effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Increase shadow on hover */
}

.review-card p {
    font-family: var(--font-poppins);
    font-weight: 400; /* Regular weight */
    font-size: 16px; /* Font size for reviews */
    line-height: 1.6;
    padding: 20px; /* Adjust padding to fit your design */
    margin: 0; /* Remove default margin for better alignment */
    position: relative;
    padding-left: 40px; /* Space for the left quotation mark */
    padding-right: 40px; /* Space for the right quotation mark */
}

.quote-img {
    position: absolute;
    width: 24px; /* Width of quotation marks */
    height: 24px; /* Height of quotation marks */
}

.open-quote {
    left: 10px; /* Position for the left quotation mark */
}

.quote-img:not(.open-quote) {
    right: 10px; /* Position for the right quotation mark */
}

.review-card span {
    display: block;
    margin-top: 10px;
    font-family: var(--font-poppins);
    font-weight: 600; /* Bold weight for names */
    font-size: 14px; /* Font size for names */
}

.review-card .designation {
    font-family: var(--font-poppins);
    font-weight: 400; /* Regular weight for job titles */
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .review-card {
       margin: auto;
    }

    #review::before {
        width: 150%; /* Adjust for smaller screens */
    }

    .review-container {
        width: 80%; /* Adjust width for tablets */
    }
}

@media (max-width: 480px) {
    #review::before {
        width: 200%; /* Adjust for mobile screens */
    }

    .review-container {
        width: 90%; /* Adjust width for mobile */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #review {
        width: 100%; /* Full width on smaller screens */
        padding: 30px 10px; /* Adjust padding for smaller screens */
    }
    #review h2{
        text-align: center;
    }

    .review-container {
        width: 90%; /* Adjust width for smaller screens */
        grid-template-columns: 1fr; /* One column layout for smaller screens */
        grid-template-rows: auto; /* Auto rows for a single column layout */
        margin: auto; /* Center the container */
    }
}
/* Footer styles */
footer {
    background-color: #9b9b9b;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping of content */
}

.footer-left {
    font-size: 14px;
}

.footer-right {
    font-size: 20px; /* Adjust the font size as needed */
    display: flex;
    align-items: center; /* Center icons vertically */
}

.footer-right a {
    color: white; /* Ensure icons are white */
    text-decoration: none; /* Remove underline from links */
    margin-left: 15px; /* Add space between icons */
}

.footer-right a:first-child {
    margin-left: 0; /* Remove left margin for the first icon */
}

/* Responsive Styles */
.footer-right {
    font-size: 20px; /* Adjust the font size as needed */
    display: flex;
    align-items: center; /* Center icons vertically */
}

.follow-text {
    margin-right: 15px; /* Space between text and first icon, matching icon spacing */
    font-size: inherit; /* Ensure font size is consistent with other text */
}

.footer-right a {
    color: white; /* Ensure icons are white */
    text-decoration: none; /* Remove underline from links */
    margin-left: 15px; /* Space between icons */
}

.footer-right a:first-child {
    margin-left: 0; /* Remove left margin for the first icon */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-right {
        font-size: 18px; /* Slightly reduce font size */
        margin-top: 15px; /* Add top margin to separate from footer-left */
        width: 100%; /* Make the right section full width */
        justify-content: flex-start; /* Align icons to the start */
    }

    .follow-text {
        margin-right: 10px; /* Adjust space between text and first icon for smaller screens */
    }

    .footer-right a {
        margin-left: 10px; /* Reduce space between icons */
    }
}

@media (max-width: 480px) {
    .footer-right {
        font-size: 16px; /* Further reduce font size */
    }

    .follow-text {
        margin-right: 8px; /* Further adjust space between text and first icon */
    }

    .footer-right a {
        margin-left: 8px; /* Further reduce space between icons */
    }
	
	/* Style for the wealthline text */
}


.disclaimer{
    background-color: #fff4f4;
    text-align: center;
	padding: 15px;
}

.wealthline-carousal-form-container {
    margin: auto;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Poppins';
    left: 0;
    width: 75%; /* Make the container span the full width of the parent */
    background-color: black; /* Black background */
    color: white; /* White text color */
    padding: 1rem; /* Padding for spacing */
    border-radius: 60px; /* Rounded corners */
    display: flex; /* Flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 0.5rem; /* Space between text and phone number */
    transform: translate(0, 30%); /* Move the container down by half of its height */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow for better visibility */
}

/* Style for the wealthline text container */
.wealthline-text-container {
    text-align: center; /* Center text inside container */
}

/* Style for the wealthline text */
.wealthline-text {
    font-size: 21px;
    color: white; /* White color for the label text */
    display: block; /* Make sure the text spans full width */
}
.wealthline-text1 {
    font-size: 1rem;
	line-height: 1rem;
    color: white; /* White color for the label text */
    display: block; /* Make sure the text spans full width */
}

/* Style for the phone number */
.phone-number {
    font-size: 32px;
    color: #ffb400; /* Yellow color for the phone number */
    font-weight: bold; /* Bold font for emphasis */
    display: block; /* Make sure the number is on its own line */
}

.phone-number1 {
    font-size: 1.25rem;
    color: #ffb400; /* Yellow color for the phone number */
    font-weight: bold; /* Bold font for emphasis */
    display: block; /* Make sure the number is on its own line */
}


@media (max-width: 1024px) {
    .topForm {
        width: 160%; /* Adjust width as needed */
        max-width: 600px; /* Increase width */
        margin: 0 auto;
        padding: 0.5rem;
        height: auto; /* Adjust height as needed */
        position: relative; /* Ensure the form is positioned relative for stacking context */
        z-index: 2; /* Higher z-index to ensure it stays above other elements */
    }
    
    .form-row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .form-column {
        flex: 1;
        min-width: 0; /* Allow columns to shrink */
        padding: 0 1rem;
    }
    
    .form-column .mb-3 {
        margin-bottom: 1rem;
    }
    
    .form-footer {
        margin-top: -5%; /* Adjust margin to position correctly */
    }
    
    .wealthline-carousal-form-mobile-container {
        font-weight: bold;
        font-size: 16px;
        font-family: 'Poppins';
        left: 0;
        width: 90%;
        background-color: #333333;
        color: white;
        padding: 0.5rem;
        border-radius: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        position: absolute; /* Position absolutely to control stacking */
        top: 50%; /* Adjust top to position correctly */
        left: 50%;
        transform: translate(-100%, -100%); /* Center horizontally and vertically */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1; /* Lower z-index to place behind the form */
    }
    
    /* Hide the desktop view and tablet view by default */
    .desktop-view, .tablet-view {
        display: block !important;
    }
    
    /* Show the mobile view */
    .mobile-view {
        display: block !important;
    }
}

/* Styles for screens larger than 1200px */
@media (min-width: 1200px) {
    .desktop-view {
        display: block !important;
		z-index: 1111;
    }
    
    /* Hide the tablet view and mobile view */
    .mobile-view {
        display: none !important;
    }
}

/* Styles for screens between 768px and 1199px */
@media (min-width: 769px) and (max-width: 1199px) {
    .mobile-view {
        display: block !important;
    }
    
    /* Hide the desktop view and mobile view */
    .desktop-view {
        display: block !important;
    }
	
	/* Style for the wealthline text */

}

/* Styles for screens smaller than 768px */
@media (max-width: 767px) {
    .mobile-view,.tablet-view {
        display: block !important;
    }
    
    /* Hide the desktop view and tablet view */
    .desktop-view, .tablet-view {
        display: block !important;
		position:fixed;
    }
}

.desktop-none {display:none;}
.footer-dv1 {display:none;}

.picture1 {position: fixed;z-index: 1005; width: 100%;} 
.mobile-img {display:none;}
.hide-mob-111 {display: contents;}

@media (max-width: 991px) {
	.desktop-none {display:block;}
	.carousel-indicators {z-index:0;}
	.topForm {bottom: 12% !important;
        width: 85% !important;
        z-index: 100;
        left: 7%;}
	.d-flex {display: block !important;}
	.wealthline-text {font-size:17px !important;width: 100px !important;}
	.phone-number {font-size:16px;}
	.copy-phone-number {left: 8% !important;position: fixed; top: 32% !important;}
	 .close-ic {position: absolute;
        width: 25px;
        top: -17px;
        left: -5%;
        z-index: 1;}
.topForm input.OtpinText {padding: 6px 2px;}
.modal-content {width:85% !important;}
.wealthline-carousal-form-container {text-align:left;width: 43%;border-radius: 30px; display:none;}
body {max-width: 100% !important; overflow-x: hidden !important;}
.btn1 {width: 97% !important;margin:0px !important;} 
.close {cursor:pointer;}

.font-13 {font-size:13px;}
.w-80 {width:95px;}
.w-150 {width:150px !important;}
		
		.btn1 {
    background-color: #343434;
    font-size: 14px !important;
    width: 97% !important;
	margin: 0px;
}

.footer-dv1 {border: 1px solid #666;
    border-radius: 15px;
    text-align: center;
    width: 84%;
    margin: 0 auto;
    bottom: 0;
	font-weight:bold;
	margin-left: 7%;
    position: fixed;
    background: #fff;
	line-height: 18px;
	overflow: hidden;
	box-shadow:1px 1px 3px 1px #333333;
	display:block;
	} 
	.black-clr {background:#666;color: #fff; padding:6px 0px;}
	
	#OpenAccount {display:none !important;}
	.topForm h3 {
    margin-top: 2%;
	}
	.desktop-img {display:none;}
	.mobile-img {display:block;}
	.hide-mob-111 {display:none;}
	.orange-txt {color: #ffb400; text-decoration:none;}
	#carousel {background: #efefef;}
	.modal {top:100px;}
	.schemeTextA h1, .schemeTextB h1 {font-size: 22px !important;}
}