/* Global Styles */
:root {
    --primary-color: #27488D;
    --secondary-color: #EE741D;
    --accent-color: #27488D;
    --text-color: #351804;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}


.wdth300 {
    width:60px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 59%;
    background: #27488d;
    right: -35px;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'lato', sans-serif;
    font-weight: 700;
}
.logo-imgv1 {
    width:150px;
}
/* Navbar Styles */
.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: white !important;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 50px;
}






.mobileview {
    display: none;
}

.desktopview {
    display: block;
}



@media only screen and (min-width:100px ) and (max-width:768px) {
    .mobileview {
        display: block;
    }

    .desktopview {
        display: none !important;
    }
}












.display-mobile {
        display: none;
    }

.navbar-nav .nav-link {
    color: #333;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Social Icons in Navbar */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 155, 95, 0.4);
    color: white;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: none;
}

.navbar.scrolled .logo-img {
    height: 42px;
}

/* Quick Navigation Bar */
.quick-nav-bar {
    background: linear-gradient(90deg, #0b3e27, #197149);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.quick-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.15);
    min-width: 100px;
    text-align: center;
    position: relative;
    
}

.navbar-toggler {

    margin-left:15px;
}

.sizev1 {
  width: 20px;
    height: 20px;
}

.quick-nav-item:last-child {
    border-right: none;
}

.quick-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.quick-nav-item span {
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
}

.quick-nav-item:hover,
.quick-nav-item.active {
    background: rgba(255,255,255,0.15);
    color: white;
}

.quick-nav-item.enquire-btn {
    background: var(--secondary-color);
    font-weight: 600;
}

.quick-nav-item.enquire-btn:hover {
    background: #1a2a3a;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
  
    margin-top: 76px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    border-color: white;
    width: 14px;
    height: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d3670;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 72, 141, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section / Overview */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
   
    margin: 0 auto;
}

.overview-label {
    font-size: 0.95rem;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.project-logo-wrapper {
    margin: 1rem 0;
}

.project-logo {
    max-width: 200px;
    height: auto;
}

.project-name {
    font-size: 2.5rem;
    color: #27488d;
    margin: 1.0rem 0;
    font-weight: 800;
    letter-spacing: 0px;
    text-align: center;
}


.project-namev1 {
    font-size: 1.0rem;
    color: #27488d;
    margin: 1.5rem 0;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
}


.project-meta {
    margin: 1rem 0;
    padding: 1.1rem 0;
   
}

.project-meta p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.project-meta span {
    color: var(--secondary-color);
    font-weight: 600;
}

.project-meta a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-meta a:hover {
    color: var(--secondary-color);
}

.project-description {
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}


.highlights-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.highlight-box {
    padding: 1rem 1.0rem;
   
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
  
    text-align: center;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.0rem;
}

.highlight-icon i {
    font-size: 2.8rem;
    color: #27488d;
}

.highlight-box h4 {
    font-size: 1.0rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-box {
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
   background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: #fff;
}

.amenities-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Amenities Slider */
.amenities-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.amenities-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.amenity-slide {
    min-width: calc(33.333% - 14px);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-slide:hover img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    color: white;
}

.amenity-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Amenity Navigation Arrows */
.amenity-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.amenity-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.amenity-nav.prev {
    left: 10px;
}

.amenity-nav.next {
    right: 10px;
}

/* Amenities List Section */
.amenities-list-section {
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.amitiesheading {
    font-size: 16px;
    color: #595959;
}


.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 0px 0;
    font-size: 0.9rem;
    color: #555;
    
    position: relative;
    padding-left: 25px;
}
.amenities-list li:before {
    content: '•';
    color: #818181;
    font-size: 1.0rem;
    position: absolute;
    left: 0;
    top: 0px;
}

/* Specification Section */
.specification-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.specification-header {
    margin-bottom: 3rem;
}

.specification-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.specification-title {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

/* Specification Tabs - Vertical (Desktop) */
.specification-tabs-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 2px solid #e0e0e0;
    /* Enable only vertical scrolling */
overflow-y: scroll;
overflow-x: hidden;

overscroll-behavior-y: contain;
scroll-behavior: auto;
    height: 360px;
}

.specification-tabs-vertical .spec-tab {
    background: transparent;
    border: none;
    padding: 18px 20px;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.specification-tabs-vertical .spec-tab:hover {
    color: var(--primary-color);
    background: #f8f9fa;
}

    .specification-tabs-vertical .spec-tab.active {
        color: #ffffff;
        border-left-color: var(--primary-color);
        background: linear-gradient(90deg, #0b3e27, #197149);
        font-weight: 600;
    }

/* Specification Tabs - Horizontal (Mobile) */
.specification-tabs-horizontal {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.specification-tabs-horizontal::-webkit-scrollbar {
    height: 4px;
}

.specification-tabs-horizontal::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.specification-tabs-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.specification-tabs-horizontal .spec-tab {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    white-space: nowrap;
}

.specification-tabs-horizontal .spec-tab:hover {
    color: var(--primary-color);
}

.specification-tabs-horizontal .spec-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

/* Specification Content */
.specification-content-wrapper {
    min-height: 300px;
}

.spec-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.spec-content.active {
    display: block;
}

.spec-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.spec-category:last-child {
    border-bottom: none;
}

    .spec-category h4 {
        font-size: 1.1rem;
        color: #000000;
        font-weight: 800;
        margin-bottom: 10px;
    }

.spec-category p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Specification Image */
.specification-image {
    position: sticky;
    top: 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.specification-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.specification-image:hover img {
    transform: scale(1.05);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-main-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Marquee Gallery */
.gallery-marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.gallery-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.gallery-track {
    display: flex;
    gap: 10px;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee-left .gallery-track {
    animation: scrollLeft 40s linear infinite;
}

.marquee-right .gallery-track {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.gallery-item-marquee {
    flex-shrink: 0;
    width: 500px;
    height: 250px;
    position: relative;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}


.gallery-item-marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



/* Pause animation on hover */
.gallery-marquee:hover .gallery-track {
    animation-play-state:running;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-main-title {
        font-size: 2rem;
    }
    
    .gallery-item-marquee {
        width: 300px;
        height: 250px;
    }
    
    .gallery-track {
        gap: 15px;
        animation-duration: 30s;
    }
    
    .marquee-left .gallery-track {
        animation-duration: 30s;
    }
    
    .marquee-right .gallery-track {
        animation-duration: 30s;
    }
}

@media (max-width: 576px) {
    .gallery-main-title {
        font-size: 1.8rem;
    }
    
    .gallery-item-marquee {
        width: 250px;
        height: 200px;
    }
    
    .gallery-track {
        gap: 10px;
        animation-duration: 25s;
    }
    
    .marquee-left .gallery-track {
        animation-duration: 25s;
    }
    
    .marquee-right .gallery-track {
        animation-duration: 25s;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
   background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

/* Social Icons */
.contact-social {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-social h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-title i {
    color: var(--primary-color);
}

.modern-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-contact-form label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modern-contact-form label i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.modern-contact-form .form-control {
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modern-contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(193, 155, 95, 0.15);
    outline: none;
}

.modern-contact-form select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    appearance: none;
}

.modern-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    margin-left: 0.5rem;
}

.btn-submit {
    background: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d3670;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 72, 141, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .btn-submit,
    .btn-whatsapp {
        width: 100%;
        margin: 0.5rem 0 !important;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
}

/* Map Section */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    background: linear-gradient(135deg, rgb(79 50 6 / 73%), rgb(0 0 0)), url(../images/b.jpg) center / cover;
}

.footer h5 {
    color: #f37920;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile Navbar */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 0.5rem 0.55rem;
        border-radius: 42px;
        background: #0e4e95;
        color: #fff;
        text-decoration: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(39, 72, 141, 0.25);
        outline: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2327488D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        padding: 0;
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem;
        text-align: left;
        color: var(--text-color);
        font-weight: 500;
        display: block;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #f8f9fa;
        color: var(--primary-color);
        border-radius: 8px;
    }
    
    .navbar-nav .nav-item:has(.social-icon) {
        border-bottom: none;
        padding: 1rem 0 0.5rem 0;
        text-align: center;
    }
    
    .social-icon {
        margin: 0.5rem;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .hero-slider {
       
        margin-top: 56px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
    }
    
    .quick-nav-bar {
        top: 56px;
    }
    
    .quick-nav-wrapper {
        justify-content: flex-start;
    }
    
    .quick-nav-item {
        padding: 0.8rem 1rem;
        min-width: 85px;
    }
    
    .quick-nav-item i {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .quick-nav-item span {
        font-size: 0.75rem;
    }
    
    .amenity-slide {
        min-width: 100%;
        height: 350px;
    }
    
    .amenity-overlay h3 {
        font-size: 1.1rem;
    }
    
    .amenity-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .amenities-main-title {
        font-size: 1.5rem;
    }
    
    .about-section,
    .features-section,
    .amenities-section,
    .gallery-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 576px) {



    .display-mobile {
        display: block;
    }

    .project-description {
    margin: 1rem 0;
   
}



.project-meta {
    margin: 0rem 0;
    padding: 0.5rem 0;
    border-top: 0px solid #ddd;
    border-bottom: 0px solid #ddd;
}



    .hidemob {
        display: none;
    }
    .align-items-center {
    align-items: normal!important;
}


.testimonials-page-header {

    margin-top: 56px!important;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 300;
}


.testimonials-page-header {
        height: 183px!important;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

    .logo-imgv1 {
    width: 101px;
}

    
   
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .btn-lg {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .project-logo {
        max-width: 150px;
    }
    
    .project-name {
        font-size: 1.4rem;
    }
    
    .overview-label {
        font-size: 0.85rem;
    }
    
    .project-description p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .highlights-title {
        font-size: 1.1rem;
    }
    
    .highlight-box {
      padding: 0.5rem 0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon i {
        font-size: 3.0rem;
    }
}


/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e4e95 0%, #123965 100%);
    color: white;
}
.plans-header {
    margin-bottom: 3rem;
}

.plans-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.plans-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-line {
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.divider-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.plans-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 1.5rem 0;
    letter-spacing: 1px;
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.plan-tab {
    background: rgb(255 255 255 / 0%);
    border: 0px solid rgba(255, 255, 255, 0.2);
    color: #bdbdbd;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
}

.plan-tab:first-child {
    border-radius: 5px 0 0 5px;
}

.plan-tab:last-child {
    border-radius: 0 5px 5px 0;
}

.plan-tab:hover {
    background: rgba(255, 255, 255, 0);
}

.plan-tab.active {
    background: #27488d00;
    border-color: #27488d00;
    color: #ffffff;
}

/* Plan Content */
.plan-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.plan-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wdth1000 {
    width:100%;
}

.plan-image-container {
    background: white;
    padding: 0rem;
    border-radius: 9px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    height: auto;
    overflow: hidden;
}

.plan-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.plan-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Micro Plans */
.micro-plan-box {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.micro-plan-box:hover {
    transform: translateY(-5px);
}

.micro-plan-box h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.micro-plan-box .plan-image {
    margin-bottom: 1rem;
}

.plan-details {
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.plan-details p {
    color: #555;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.plan-details strong {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .plans-title {
        font-size: 1.8rem;
    }
    
    .plan-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .plan-tab {
        border-radius: 5px !important;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .plan-image-container {
        padding: 0rem;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .micro-plan-box {
        margin-bottom: 1.5rem;
    }
    
    /* Specification Responsive */
    .specification-title {
        font-size: 1.5rem;
    }
    
    /* Hide vertical tabs on mobile */
    .specification-tabs-vertical {
        display: none !important;
    }
    
    /* Show horizontal scrolling tabs on mobile */
    .specification-tabs-horizontal {
        display: block !important;
    }
    
    .specification-image {
        margin-top: 30px;
        position: relative;
        top: 0;
    }
    
    .spec-category h4 {
        font-size: 1rem;
    }
    
    .spec-category p {
        font-size: 0.9rem;
    }
    
    .specification-content-wrapper {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .plans-label {
        font-size: 0.85rem;
    }
    
    .plans-title {
        font-size: 1.5rem;
    }
    
    .plan-tab {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}


/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-marquee {
    cursor: pointer;
}

.gallery-item-marquee:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item-marquee:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.1rem;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-caption {
        font-size: 0.95rem;
        padding: 15px 0;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .lightbox-close {
        top: 5px;
        right: 15px;
        font-size: 35px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
}


/* Walkthrough Section */
.walkthrough-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.walkthrough-header {
    margin-bottom: 3rem;
}

.walkthrough-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.walkthrough-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Video Container */
.video-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.video-info p {
    color: #666;
    margin: 0;
}

/* Virtual Tour Card */
.virtual-tour-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.virtual-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.tour-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tour-icon i {
    font-size: 2.5rem;
    color: white;
}

.virtual-tour-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.virtual-tour-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-block {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Video Gallery */
.video-gallery h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(193, 155, 95, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 5px;
}

.video-card:hover .play-button {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-info {
    padding: 1.5rem;
}

.video-card-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-card-info p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.video-card-info i {
    margin-right: 0.3rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .walkthrough-title {
        font-size: 2rem;
    }
    
    .virtual-tour-card {
        height: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .walkthrough-title {
        font-size: 1.8rem;
    }
    
    .walkthrough-subtitle {
        font-size: 1rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .tour-icon {
        width: 70px;
        height: 70px;
    }
    
    .tour-icon i {
        font-size: 2rem;
    }
    
    .video-modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .walkthrough-title {
        font-size: 1.5rem;
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .virtual-tour-card {
        padding: 1.5rem;
    }
}


/* Contact Page Styles */
.contact-page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(2, 17, 31, 0.404), rgba(22, 22, 22, 0.233)), url('../images/contact-header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.breadcrumb-custom {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.breadcrumb-custom i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.quick-contact-item:last-child {
    border-right: none;
}

.quick-contact-item:hover {
    background: var(--primary-color);
    color: white;
}

.quick-contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.quick-contact-item:hover i {
    color: white;
}

.quick-contact-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.quick-contact-item:hover h5 {
    color: white;
}

.quick-contact-item a,
.quick-contact-item p {
    color: #666;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.quick-contact-item:hover a,
.quick-contact-item:hover p {
    color: white;
}

/* Main Contact Section */
.main-contact-section {
    background: #f8f9fa;
}

.section-title-main {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.enhanced-contact-form .input-group-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.enhanced-contact-form .input-group-custom i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 2;
}

.enhanced-contact-form input,
.enhanced-contact-form select,
.enhanced-contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.enhanced-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.enhanced-contact-form input:focus,
.enhanced-contact-form select:focus,
.enhanced-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(193, 155, 95, 0.15);
}

.enhanced-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c19b5f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.btn-submit-custom,
.btn-whatsapp-custom {
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-submit-custom {
    background: var(--primary-color);
    color: white;
}

.btn-submit-custom:hover {
    background: #1d3670;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 72, 141, 0.4);
}

.btn-whatsapp-custom {
    background: #25D366;
    color: white;
}

.btn-whatsapp-custom:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Sidebar */
.contact-sidebar .info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-sidebar .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary-color);
}

.btn-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Map Section */
.map-section-full {
    margin-top: 3rem;
}

.map-section-full iframe {
    width: 100%;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-section-full iframe:hover {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: white;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .quick-contact-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .quick-contact-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .contact-page-header {
        height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .quick-contact-item {
        padding: 1.5rem;
    }
    
    .quick-contact-item i {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .btn-submit-custom,
    .btn-whatsapp-custom {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-title-main {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


/* Testimonials Page Styles */
.testimonials-page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(36, 24, 6, 0.219), rgba(2, 21, 39, 0.219)), url('../images/testimonials-header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

/* Stats Section */
.stats-section {
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-box {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    background: white;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-icon i {
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: white;
}

/* Testimonials Slider */
.testimonials-slider-section {
    background: #f8f9fa;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 2rem;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: white;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.stars {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.3rem;
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.client-details {
    text-align: left;
}

.client-name {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.client-designation {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.2rem;
}

.client-flat {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* Video Testimonials */
.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-testimonial-card:hover .video-thumb img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover .play-overlay i {
    transform: scale(1.2);
    background: white;
    color: var(--primary-color);
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #888;
    margin: 0;
}

/* CTA Section */
.testimonial-cta-section {
    background: linear-gradient(135deg, #29527f, #063161);
    padding: 80px 0;
    color: white;
}

.testimonial-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .stat-box:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .testimonials-page-header {
        height: 300px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 0 1rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-details {
        text-align: center;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-thumb {
        height: 200px;
    }
    
    .testimonial-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-cta-section p {
        font-size: 1rem;
    }
    
    .testimonial-cta-section .btn {
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
    }
    
    .quote-icon i {
        font-size: 2rem;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
    }
}


/* About Page Styles */
.about-page-header {
    position: relative;
    height: 590px;
    background: linear-gradient(135deg, rgb(4 25 47 / 28%), rgb(0 0 0 / 38%)), url(../images/about-header.jpg) center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

/* About Introduction */
.about-intro-section {
    background: white;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
       background: linear-gradient(135deg, #27488d, #27488d);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    flex: 1;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.highlight-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* About Image Grid */
.about-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 500px;
}

.grid-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.grid-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.experience-badge p {
    font-size: 1.2rem;
    margin: 0;
}

/* Vision & Mission Cards */
.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: white;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.vm-list {
    list-style: none;
    padding: 0;
}

.vm-list li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vm-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Why Choose Cards */
.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Values Cards */
.value-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27488d, #27488d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: white;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--primary-color);
}

.value-card h5 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.value-card:hover h5 {
    color: white;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.7);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #888;
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .about-page-header {
        height: 350px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-image-grid {
        height: 400px;
    }
    
    .experience-badge h3 {
        font-size: 3rem;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        height: 300px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .grid-img-1,
    .grid-img-2 {
        grid-column: 1;
        grid-row: auto;
        height: 250px;
    }
    
    .experience-badge {
        grid-column: 1;
        grid-row: auto;
        height: 200px;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .about-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .about-cta-section .btn {
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 576px) {



    .plan-image-container {

    height: auto!important;

}



    .border1 {
    border: 1px solid #0e4e95;
    background: #00000000;
    color: #0e4e95;
    border-radius: 0px;
    width: 76%;
}



    .border12 {
    border: 1px solid #0e4e95;
    
    color: #ffffff;
    border-radius: 0px;
    width: 76%;
}



    .about-title {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .vm-icon,
    .why-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .vm-icon i,
    .why-icon i {
        font-size: 1.8rem;
    }
}


/* Local Video Player Styles */
.local-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: all;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-overlay i {
    font-size: 5rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.video-play-overlay:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.video-wrapper:has(.local-video-player) {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper .local-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Error State */
.video-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 10px;
    display: none;
}

.video-error-message.show {
    display: block;
}

.video-error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.video-error-message h4 {
    margin-bottom: 0.5rem;
}

.video-error-message p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0e4e95 0%, #123965 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    /* filter: brightness(0) invert(1); */
    background: #fff;
    border-radius: 7px;
    padding: 4px;
}

.footer-desc {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--primary-color);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

/* RERA Badge */
.rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(39, 72, 141, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 1rem;
}

.rera-badge i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.rera-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-link-footer {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-footer:hover {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 5px 15px rgba(39, 72, 141, 0.4);
}

.social-link-footer i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.copyright-text strong {
    color: white;
}

.developer-text {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.developer-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-text a:hover {
    color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
    
    .developer-text {
        margin-top: 0.5rem;
    }
}



.float-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100
}

.my-float-whatsapp {
    margin-top: 10px
}



/* News Carousel Styles */
.news-carousel-active {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card-items {
    display: none;
    transition: all 0.5s ease-in-out;
}

.news-card-items:first-child {
    display: block;
}

.news-card-items .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.news-card-items .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-items .about-image:hover img {
    transform: scale(1.05);
}

.bdr11 {
    border-radius: 15px;
}

/* Fade animation for carousel items */
.news-card-items {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add navigation dots */
.news-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.news-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-carousel-dots .dot.active {
    background-color: #007bff;
    transform: scale(1.2);
}

/* Optional: Add navigation arrows */
.news-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.news-carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-carousel-nav.prev {
    left: 15px;
}

.news-carousel-nav.next {
    right: 15px;
}

.news-carousel-nav i {
    color: #333;
    font-size: 16px;
}
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #007bff;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
}

.notification-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #333;
}

/* Form Error States */
.input-group-custom.error input,
.input-group-custom.error select,
.input-group-custom.error textarea {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.input-group-custom.error i {
    color: #dc3545 !important;
}

/* Loading Button State */
.btn-submit-custom:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit-custom .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive Notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Form Focus States */
.input-group-custom input:focus,
.input-group-custom select:focus,
.input-group-custom textarea:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    outline: none;
}

.input-group-custom input:focus + i,
.input-group-custom select:focus + i,
.input-group-custom textarea:focus + i {
    color: #2c5aa0;
}

/* Success Animation */
@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.btn-submit-custom.success .fa-check {
    animation: checkmark 0.3s ease;
}
/* Alternative Contact Buttons */
.alternative-contact {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.alternative-contact p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-buttons {
    flex-wrap: wrap;
}

.contact-buttons .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-buttons .btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.contact-buttons .btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}