/********** Template CSS **********/
:root {
    --primary: #3e93cc;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body{
    scroll-behavior: smooth;
}
body, html {
    overflow-x: hidden;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}
@media (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .container-fluid, .navbar, .carousel {
        width: 100%;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
.hero-para{
    color: #000B1C;
}


/*** Facts ***/
.facts {
    background: linear-gradient(to bottom, #3e93cc, #10649b),    url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #3e93cc, #10649b),  url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}
.hero-section{
    padding: 110px 0 0 0;
}
.a{
    background-color: #3e93cc !important;
    text-decoration: none !important;
}
.panel-body img{
    width: 100px;
}
#amenities .panel:hover {
    background: rgb(234 229 210 / 80%);
   
}
#amenities .panel {
    background: #fff;
    /* border: 2px solid #141a34; */
    margin-bottom: 30px;
    padding: 20px 12px;
    border-radius: 10px;
    background: #f8f8f8 !important;
}
.panel-body {
    padding: 15px;
}
#amenities .panel img {
    width: 66PX;
    height: 66px;
}
#amenities-m .panel img {
    width: 66PX;
    height: 66px;
}
#amenities-m .panel {
    background: #fff;
    /* border: 2px solid #141a34; */
    margin-bottom: 30px;
    padding: 20px 12px;
    border-radius: 10px;
    background: #f8f8f8 !important;
}
#amenities-m .panel:hover {
    background: rgb(234 229 210 / 80%);
   
}
.why-choose-box{
    margin: 10px;
    border: 2px solid #0a0a0a;
    padding: 24px 15px;
    border-radius: 0px 0px 0px 0;
}
.large-icon{
    font-size: 3rem;
    margin-bottom: 18px;
}
.panel-body h4{
    font-size: 18px;
    margin-top: 4px;
}
.project-img img {
    width: 80%; 
    max-width: 210px; 
    display: block;
    margin: auto; 
}
.image-container img {
  
    height: auto;
   
    object-fit: contain;
    padding: 24px;
    width: 100% !important;
    height: 120px;
}
/* Style for the accordion items */
.accordion-item {
    border: 1px solid #ddd; /* Add a border to each item */
    border-radius: 5px; /* Rounded corners for a box-like appearance */
    margin-bottom: 1rem; /* Space between each accordion item */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Style for the accordion header */
.accordion-header {
    background-color: #f8f9fa; /* Light background color */
    padding: 8px; /* Padding inside the header */
    border-radius: 5px 5px 0 0; /* Rounded top corners */
}

/* Style for the accordion button */
.accordion-button {
    font-size: 1.25rem; /* Larger font size for headers */
    color: #343a40; /* Dark text color */
    background-color: #dddada;
}
.accordion-button:not(.collapsed){
    color: #343a40;
    background-color: #dddada;
}
/* Style for the accordion body */
.accordion-body {
    padding: 12px; /* Padding inside the body */
    background-color: #f8f8f8; /* White background for the body */
    border-top: 1px solid #ddd; /* Top border for separation */
}
.sub-head{
    font-size: 18px;
    text-align: left;
}
.form-head{
    font-size: 30px;
    color: #fff;
}
.form-sub-head{
    color: #fff !important;
    font-size: 16px;
}
.co-founder{
    font-size: 12px;
    font-weight: 700;
}
.hero-form{
    margin-top: 80px;
}
.register-form-wrapper {
  
    padding: 30px 30px;
    background: #3e93cc !important;
    border-radius: 5px 5px;
}
input.register-input, select.register-input {
    width: 100% !important;
    height: 52px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-bottom: 15px !important;
    color: #555 !important;
    border: 1px solid #f1f1f1 !important;
    background-color: #f9f9f9 !important;
    font-size: 16px !important;
    border-radius: 5px 5px 5px 5px !important;
}
button.register-submit {
    background: #000B1C;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    max-width: 535px;
    padding: 16px 0;
    text-transform: uppercase;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
    transition: all .50sease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50sease-in-out;
}
.dropdown-container {
    position: relative;
    
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.down_enquiry {

    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 10000; /* Match the z-index in your HTML */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.down_enquiry.visible {
    display: block;
    opacity: 1;
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    .hidden-xs{
        display: none !important;
    }
}
.hidden-lg {
    display: none;
}

@media (max-width: 768px) {
    #amenities .panel {
        background: #fff;
        /* border: 2px solid #141a34; */
        margin-bottom: 16px;
        padding: 6px 8px;
        border-radius: 10px;
        background: #f8f8f8;
    }
    .project-img img {
        width: 80%;
        max-width: 180px;
        display: block;
        margin: auto;
        margin-bottom: 20px;
    }
    .hero-form{
        margin: 10px 10px 10px 20px;
    }
    .team-item {
        position: relative;
       
        padding: 10px 0;
    }
    .hero-section {
        padding: 90px 0 0 0;
    }
    .image-container img {
  
        height: auto;
       
        object-fit: contain;
        padding: 4px;
        width: 100% !important;
        height: 100px  !important;
    }
    #amenities .panel img {
        width: 50PX;
        height: 60px;
    }
}
@media (max-width: 480px) {
    .form-head {
        font-size: 27px;
        color: #fff;
    }
}

/* For screens between 481px and 768px, set font size to 28px */
@media (min-width: 481px) and (max-width: 768px) {
    .form-head {
        font-size: 28px;
        color: #fff;
    }
}
/* For iPhone SE */
@media only screen
  and (max-device-width: 320px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .form-head {
        font-size: 27px;
        color: #fff;
    }
}

/* For iPhone XR */
@media only screen
  and (max-device-width: 414px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    .form-head {
        font-size: 28px;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .owl-carousel .item {
      width: 33.33%;  /* 3 images per row */
    }
    .sub-head{
        font-size: 18px;
        text-align: center;
    }
    .register-form-wrapper {
        padding: 38px 16px;
        background: #3e93cc !important;
        border-radius: 5px 5px;
    }
    .form-head {
        font-size: 23px;
        color: #fff;
        font-weight: 800 !important;
        line-height: 34px;
    }
  }
  
  /* Style for tablets and larger devices */
  @media (min-width: 768px) {
    .owl-carousel .item {
      width: 20%;  /* 5 images per row */
    }
   
  }
  .partners-carousel {
    width: 90%;
    margin: auto;
}
section#why-invest {
    background: #e9ded0;
    text-align: center;
}

.invest-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.plus-symbol {
    position: relative;
    width: 300px; /* Adjust size as needed */
    height: 300px; /* Adjust size as needed */
}

.plus-symbol::before,
.plus-symbol::after {
    content: "";
    position: absolute;
    background-color: #6d5624;
}

.plus-symbol::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus-symbol::after {
    height: 100%;
    width: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.quadrant {
    position: absolute;
    width: 50%;
    height: 50%;
}

.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
}

ul.invest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.invest-list li {
    display: flex;
    align-items: center;
    padding: 10px;
}

ul.invest-list li img {
    width: 40px; /* Adjust size as needed */
    margin-right: 10px;
}
.section-content {
    font-size: 1rem;
    color: #555;
}
.Who-we-serve-para{
    width: 70%;
}
.bg-a7a7a7{
    background-color: #a7a7a7;
}
.footer-text p{
    color: #000;
}
.register-form-wrapper-modal {
    padding: 40px 40px;
    background: #fff !important;
    border-radius: 5px 5px;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}
.modal-header .close {
    padding: 0px 10px;
    margin: 0rem 0rem 0rem auto;
}
.ylw-btn {
    /* color: #0d172c; */
    color: #000 !important;
    background-color: #3e93cc !important;
    border: 1px solid #3e93cc !important;
    cursor: pointer !important;
}
.btn-white {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #3e93cc;
    background-color: #ffffff;
    border: 1px solid #fff;
    box-shadow: 0px 8px 40px 0 rgba(0, 0, 0, 0.37);
    border-radius: 23px 23px;
    margin: 10px 10px;
    padding: 16px 26px;
    display: inline-block;
    transition: all 0.4sease-in-out;
    -webkit-transition: all 0.4sease-in-out;
}

.close {
    font-size: 1.7rem;
    color: #000;
    opacity: 1;
    border: none;
    background: #fff;
}
.modal-header {
    border: none;
    padding: 0rem;
    text-align: right;
}
.modal-body {
    padding: 1rem;
}
.headerModalpopup {
    padding-bottom: 20px;
    text-align: center;
}
/* Custom styling for multi-row layout */
.partners-carousel .owl-carousel .item {
    display: flex;
    justify-content: center;
    width: 100% !important; /* Ensure each item takes full width */
}

.partners-carousel .image-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    grid-template-rows: repeat(3, auto); /* 3 rows */
    gap: 18px;
    width: 100%;
    text-align: center;
}
.mobile-heading{
    text-align: left;
}
@media (max-width: 767px) {
    .col-xs-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .panel-body h4 {
        font-size: 12px;
        margin-top: 4px;
    }
    .partners-carousel .image-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 5 columns */
        grid-template-rows: repeat(3, auto); /* 3 rows */
        gap: 2px;
        width: 100%;
        text-align: center;
    }
    .Who-we-serve-para{
        display: none;
    }
    .mobile-heading{
        text-align: center;
    }
    .mobile-hero{
        font-weight: 800 !important;
        font-size: 40px !important;
        line-height: 48px !important;
    }
}
.navbar{
z-index: 1000;
}
/* Base styles for form inputs */
.form-control {
    font-size: 1rem; /* Adjust the font size as needed */
    padding: 0.5rem 1rem; /* Adjust padding for a more compact look */
    height: auto; /* Allow height to adjust based on padding and font size */
    line-height: normal; /* Ensure line height is normal */
    display: flex;
    align-items: center; /* Vertically center the text */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .form-control {
        font-size: 0.875rem; /* Reduce font size for mobile */
        padding: 0.3rem 0.75rem; /* Reduce padding for mobile */
        width: calc(100% - 20px); /* Adjust width to fit better on mobile */
    }

    .hero-for {
        padding: 1rem !important; /* Adjust padding for the form container on mobile */
    }

    .btn {
        font-size: 0.875rem; /* Reduce font size for buttons on mobile */
        padding: 0.5rem 1rem; /* Reduce padding for buttons on mobile */
    }
}


@media (max-width: 768px) {
  

    

    .form-sub-head {
        font-size: 1rem; /* Reduce font size for mobile */
    }

    .hero-for {
        padding: 1rem !important; /* Adjust padding for mobile */
    }
}

