:root {

    --primary: #1a3e72;

    --secondary: #f7931e;

    --light: #f8f9fa;

    --dark: #212529;

    --gray: #6c757d;

}



body {

    font-family: 'Poppins', sans-serif;

    color: var(--dark);

    overflow-x: hidden;

}



h1, h2, h3, h4, h5, h6 {

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;

}



.navbar {

    background-color: rgba(255, 255, 255, 0.0);

    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.00);

    padding: 15px 0;

    transition: all 0.3s;

}



.navbar.scrolled {

    padding: 10px 0;

    background-color: rgba(26, 62, 114, 0.98) !important;

}



.navbar.scrolled .nav-link {

    color: white !important;

}



.navbar.scrolled .navbar-brand img {

    filter: brightness(0) invert(1);

}



.navbar-brand img {

    height: 160px;

    transition: all 0.3s;

}



.nav-link {

    font-weight: 500;

    margin: 0 10px;

    position: relative;

    color: #fff !important;

}



.nav-link:after {

    content: '';

    position: absolute;

    width: 0;

    height: 2px;

    background: var(--secondary);

    bottom: 0;

    left: 0;

    transition: all 0.3s;

}



.nav-link:hover:after {

    width: 100%;

}



.hero-section {

    

    background-size: cover !important;

    background-position: center;

    background-attachment: fixed;

    color: white;

    padding: 200px 0 220px;

    position: relative;

}



.hero-content {

    max-width: 95%;

}

.hero-content h1{
    font-size: 6.5rem;
}



.hero-badge {

    background-color: var(--secondary);

    color: white;

    padding: 8px 20px;

    border-radius: 30px;

    font-weight: 600;

    display: inline-block;

    margin-bottom: 20px;

    font-size: 14px;

}



.section {

    padding: 100px 0;

}

.section-pink{

    background: #ffe8f6;

}

.section-title {

    position: relative;

    margin-bottom: 50px;

    color: var(--primary);

}



.section-title:after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -15px;

    width: 60px;

    height: 3px;

    background: var(--secondary);

}



.section-title.text-center:after {

    left: 50%;

    transform: translateX(-50%);

}



.feature-card {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: all 0.3s;

    height: 100%;

}



.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

}



.feature-img {

    height: 200px;

    overflow: hidden;

}



.feature-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s;

}



.feature-card:hover .feature-img img {

    transform: scale(1.1);

}



.feature-content {

    padding: 25px;

}



.feature-icon {

    font-size: 2.5rem;

    color: var(--secondary);

    margin-bottom: 15px;

}



.btn-primary {

    background-color: var(--primary);

    border-color: var(--primary);

    padding: 12px 30px;

    font-weight: 600;

}



.btn-primary:hover {

    background-color: #142f57;

    border-color: #142f57;

}



.btn-secondary {

    background-color: var(--secondary);

    border-color: var(--secondary);

    color: white;

    padding: 12px 30px;

    font-weight: 600;

}



.btn-secondary:hover {

    background-color: #e0851a;

    border-color: #e0851a;

    color: white;

}



.location-card {

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    margin-bottom: 30px;

}



.location-img {

    height: 120px;

    overflow: hidden;

}



.location-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.location-content {

    padding: 20px;

    background: white;

}



.location-time {

    color: var(--secondary);

    font-weight: 600;

}



.testimonial-card {

    background: white;

    border-radius: 10px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    position: relative;

    margin: 20px;

}



.testimonial-card:before {

    content: '\201C';

    position: absolute;

    top: 20px;

    left: 20px;

    font-size: 60px;

    color: rgba(26, 62, 114, 0.1);

    font-family: serif;

    line-height: 1;

}



.testimonial-img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 15px;

}



.contact-info {

    background: var(--primary);

    color: white;

    padding: 40px;

    border-radius: 10px;

    height: 80%;

}



.contact-icon {

    font-size: 1.5rem;

    color: var(--secondary);

    margin-right: 15px;

}



.map_contact{

    border-radius: 8px;

    border: 3px solid #6986b1 !important;

}



.form-control {

    padding: 15px;

    border-radius: 5px;

    margin-bottom: 20px;

}



footer {

    background-color: var(--primary);

    color: white;

    padding: 10px 0 30px;

    margin-top: 120px;

}



.footer-logo {

    margin-bottom: 20px;

}



.footer-links h5 {

    margin-bottom: 20px;

    position: relative;

    padding-bottom: 10px;

}



.footer-links h5:after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 40px;

    height: 2px;

    background: var(--secondary);

}



.footer-links ul {

    list-style: none;

    padding: 0;

}



.footer-links li {

    margin-bottom: 10px;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: all 0.3s;

}



.footer-links a:hover {

    color: white;

    padding-left: 5px;

}



.social-icons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    color: white;

    margin-right: 10px;

    transition: all 0.3s;

}



.social-icons a:hover {

    background: var(--secondary);

    transform: translateY(-5px);

}



.copyright {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: 20px;

    margin-top: 40px;

}



/* Slider Styles */

.project-slider .carousel-item {

    height: 600px;

}



.project-slider .carousel-item img {

    object-fit: cover;

    height: 100%;

}



.carousel-control-prev, .carousel-control-next {

    width: 50px;

    height: 50px;

    background: var(--primary);

    border-radius: 50%;

    top: 50%;

    transform: translateY(-50%);

    opacity: 1;

}



.carousel-control-prev {

    left: 30px;

}



.carousel-control-next {

    right: 30px;

}



.carousel-indicators [data-bs-target] {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    margin: 0 5px;

    border: none;

    background: rgba(255, 255, 255, 0.5);

}



.carousel-indicators .active {

    background: var(--secondary);

}



@media (max-width: 992px) {

    .hero-section {

        padding: 150px 0 100px;

        background-attachment: scroll;

    }

    

    .section {

        padding: 80px 0;

    }

    

    .project-slider .carousel-item {

        height: 500px;

    }

}



.investment-section {

    background: #ff9800;

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    color: #000;

    padding: 120px 0;

    text-align: center;

}



.investment-title {

    font-size: 60px;

    margin-bottom: 30px;

    position: relative;

    color: #FFF;

    font-weight: 600;

    text-align: left;

    display: block;

    padding-left: 5%;

}



.investment-title:after {

    content: '';

    position: absolute;

    left: 50%;

    bottom: -15px;

    transform: translateX(-50%);

    width: 90%;

    height: 1px;

    background: #fff;

}



.investment-content {

    max-width: 90%;

    margin: 0 auto;

    font-size: 22px;

    line-height: 1.8;

}



.highlight {

    color: #000;

    font-weight: 600;

}



@media (max-width: 768px) {
.hero-content h1{
    font-size: 2.5rem !important;
}
    .investment-title {

        font-size: 2rem;

    }
    .fixed-top{
        position: absolute;
    }
    .navbar.scrolled{
        background-color: rgb(26 62 114 / 0%) !important;
    }
    .navbar.scrolled .navbar-brand img{
        filter: none !important;
    }
    .navbar-toggler{
        display: none !important;
    }
    

    .investment-content {

        font-size: 1rem;

        padding: 0 20px;

    }

}

@media (max-width: 768px) {

    .hero-section {

        padding: 180px 0 80px;

    }

    

    .section {

        padding: 60px 0;

    }

    

    .project-slider .carousel-item {

        height: 400px;

    }

}



.gallery-section {

    padding: 60px 0;

    background: #fff8e3;

    margin: 0 auto;

}



.section-title {

    text-align: center;

    margin-bottom: 40px;

    color: var(--primary);

    font-size: 2.5rem;

    position: relative;

}



.section-title:after {

    content: '';

    position: absolute;

    left: 50%;

    bottom: -15px;

    transform: translateX(-50%);

    width: 80px;

    height: 3px;

    background: var(--secondary);

}



.swiper {

    width: 100%;

    height: 100%;

    padding: 20px 0;

}



.swiper-slide {

    text-align: center;

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.swiper-slide:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}



.gallery-item {

    display: block;

    text-decoration: none;

    color: var(--dark);

}



.gallery-image {

    width: 100%;

    height: 200px;

    object-fit: cover;

    display: block;

}



.gallery-title {

    padding: 15px 10px;

    margin: 0;

    font-size: 1rem;

    font-weight: 500;

}



.swiper-button-next, 

.swiper-button-prev {

    color: var(--primary);

    background: rgba(255, 255, 255, 0.8);

    width: 40px;

    height: 40px;

    border-radius: 50%;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.swiper-button-next:after, 

.swiper-button-prev:after {

    font-size: 1.2rem;

}



.swiper-pagination-bullet {

    background: var(--primary);

    opacity: 0.5;

    width: 12px;

    height: 12px;

}



.swiper-pagination-bullet-active {

    background: var(--secondary);

    opacity: 1;

}



.online-phone {

    background: #03E78B;

    color: #fff;

    padding: 20px 28px;

    font-size: 25px;

    border-radius: 100%;

    position: fixed;

    z-index: 9999;

    right: 10px;

    bottom: 10px;

}



@media (max-width: 768px) {

    .section-title {

        font-size: 2rem;

    }

    

    .gallery-image {

        height: 150px;

    }

}