/* navbar */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.titlee{
    text-align: center;
    justify-content: center;
    color: #2980b9;
    margin-top: 5px;
}

.project-title {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.navbar {
    background-color: #2f8d46;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-list {
    list-style-type: none;
    display: flex;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s;
}

.nav-item:hover {
    background-color: #1f6e33;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
    }

    .nav-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .project-title {
        font-size: 1.2rem;
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 12px;
    }
}
/* video */
 /* Video section styles */
 .video-section{
    text-align: center;
    margin-top: 20px;
}
.video-section video {
    max-width: 100%;
    height: auto;
}
/* crousel */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.project-overview {
    padding: 50px 0;
    background-color: #f4f4f4;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.project-description {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    height: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .project-overview {
        padding: 30px 0;
    }

    .carousel-btn {
        padding: 5px 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 24px;
    }

    .project-description {
        font-size: 14px;
    }

    .carousel-btn {
        padding: 3px 8px;
        font-size: 14px;
    }
}
/* ... (keep the previous CSS) ... */

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* project detils */
section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Project Details */
/* cerise */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.property-details {
    padding: 60px 0;
}

.property-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.property-image {
    flex: 1 1 400px;
    max-width: 100%;
}

.property-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.property-description {
    flex: 1 1 400px;
}

.property-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .property-container {
        flex-direction: column;
    }

    .property-image,
    .property-description {
        flex: 1 1 100%;
    }
}

.gallery-section {
    padding: 60px 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media query for larger screens */
@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, minmax(250px, 300px));
        justify-content: center;
    }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
.floor-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.floor-plan-item {
    flex: 1;
    max-width: calc(33.333% - 20px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floor-plan-item:hover {
    transform: translateY(-10px);
}

.floor-plan-item img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .property-details {
        flex-direction: column;
    }

    .property-image {
        max-width: 100%;
    }

    .floor-plans {
        flex-direction: column;
    }

    .floor-plan-item {
        max-width: 100%;
    }
}
/* table */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.property-table th,
.property-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.property-table th {
    background-color: #3498db;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-table tbody tr:hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
    .property-table thead {
        display: none;
    }
    
    .property-table, .property-table tbody, .property-table tr, .property-table td {
        display: block;
        width: 100%;
    }
    
    .property-table tr {
        margin-bottom: 15px;
    }
    
    .property-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .property-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        text-align: left;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        padding: 40px;
    }
    
    .property-table th,
    .property-table td {
        padding: 20px;
    }
}

@media screen and (min-width: 1800px) {
    body {
        font-size: 18px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    h1 {
        font-size: 3em;
    }
}
/* mikasa */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-image img:hover {
    transform: scale(1.05);
}

.project-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.project-features {
    list-style-type: none;
    margin-bottom: 30px;
}

.project-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #34495e;
}

.project-features i {
    margin-right: 10px;
    color: #3498db;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Large screens */
@media screen and (min-width: 768px) {
    .project-content {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .project-title {
        flex-basis: 100%;
        text-align: left;
    }

    .project-image {
        flex: 1;
        order: 2;
    }

    .project-description {
        flex: 1;
        order: 1;
    }
}

/* youtube */
.video-section {
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-wrapper {
    width: 30%; /* Adjusted size to fit 3 videos in a row */
    padding-bottom: 17%; /* Maintain aspect ratio */
    position: relative;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .video-wrapper {
        width: 45%; /* Two videos per row on medium screens */
        padding-bottom: 25%;
    }
}

@media screen and (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        align-items: center;
    }

    .video-wrapper {
        width: 100%; /* One video per row on small screens */
        padding-bottom: 56.25%; /* Standard 16:9 aspect ratio */
    }
}

/* amenities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.amenities-section {
    background: linear-gradient(135deg, #f6f9fc, #e9f2f9);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #3498db; /* Changed color to a vibrant blue */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.1rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.amenity-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.2);
}

.amenity-item:nth-child(3n+1) i {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item:nth-child(3n+2) i {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item:nth-child(3n) i {
    background: linear-gradient(135deg, #1abc9c, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

@media screen and (max-width: 768px) {
    .amenities-grid {
        display: block;
    }

    .amenity-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 20px;
        margin-bottom: 20px;
    }

    .amenity-item i {
        font-size: 2rem;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .amenity-item h3 {
        font-size: 1.2rem;
    }

    .amenity-item p {
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenity-item {
        padding: 40px;
    }

    .amenity-item i {
        font-size: 4rem;
    }

    .amenity-item h3 {
        font-size: 1.8rem;
    }

    .amenity-item p {
        font-size: 1.2rem;
    }
}
/* location */
.location-section {
    background: linear-gradient(135deg, #f6f9fc, #e9f2f9);
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #3498db;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-advantages h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-advantages ul {
    list-style-type: none;
    padding: 0;
}

.location-advantages li {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
}

.location-advantages i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Location Map Styling */
.location-map {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.location-map:hover {
    transform: scale(1.02);
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        order: -1;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-advantages h3 {
        font-size: 1.5rem;
    }

    .location-advantages li {
        font-size: 1rem;
    }

    .location-map img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .location-advantages h3 {
        font-size: 2.2rem;
    }

    .location-advantages li {
        font-size: 1.3rem;
    }
}

/* Animation for advantages */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-advantages li:nth-child(1) { animation-delay: 0.1s; }
.location-advantages li:nth-child(2) { animation-delay: 0.2s; }
.location-advantages li:nth-child(3) { animation-delay: 0.3s; }
.location-advantages li:nth-child(4) { animation-delay: 0.4s; }
.location-advantages li:nth-child(5) { animation-delay: 0.5s; }
.location-advantages li:nth-child(6) { animation-delay: 0.6s; }

/* contact us */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.left-side, .right-side {
    padding: 20px;
}

h2 {
    margin-bottom: 20px;
}

.company-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.address, .social-links {
    margin-bottom: 20px;
}

.address i, .social-links i {
    margin-right: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.social-links a {
    color: #333;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .left-side {
        order: 1;
    }

    .right-side {
        order: 2;
    }
}
/* master plan image */
.master-plan-container {
    width: 100%;
    max-width: 1200px; /* Adjust this value based on your design needs */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center; /* Centers the title and image */
  }
  
  .master-plan-title {
    font-family: Arial, sans-serif; /* Change as needed */
    font-size: 2.5rem; /* Adjust size as needed */
    color: #333; /* Adjust color as needed */
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word; /* Ensures long words don't overflow */
  }
  
  .master-plan-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 90vh; /* Prevents image from being taller than the viewport */
    object-fit: contain;
    margin: 0 auto; /* Centers the image */
  }
  
  /* Media Queries for different screen sizes */
  
  /* For small phones */
  @media screen and (max-width: 480px) {
    .master-plan-container {
      padding: 10px;
    }
    .master-plan-title {
      font-size: 1.8rem; /* Smaller font size for small screens */
    }
  }
  
  /* For tablets and iPads */
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .master-plan-container {
      padding: 30px;
    }
    .master-plan-title {
      font-size: 2.2rem; /* Adjusted font size for medium screens */
    }
  }
  
  /* For large desktop screens and TVs */
  @media screen and (min-width: 1920px) {
    .master-plan-container {
      max-width: 1800px; /* Larger max-width for very large screens */
    }
    .master-plan-title {
      font-size: 3rem; /* Larger font size for very large screens */
    }
  }
  /*footer  */
  .disclaimer-footer {
    flex-shrink: 0; /* Prevent the footer from shrinking */
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Queries */
@media screen and (max-width: 480px) {
    .disclaimer-footer {
        padding: 5px 10px;
    }
    .disclaimer-text {
        font-size: 0.7rem;
    }
}

@media screen and (min-width: 1920px) {
    .disclaimer-text {
        font-size: 0.8rem;
        max-width: 1800px;
    }
}


/* slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider {
    display: flex;
    width: 300%; /* 3 images (100% each) */
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover { background: rgba(0, 0, 0, 0.8); }

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
    }
    .slide {
        height: 60vh;
    }
    .slide img {
        height: 60vh;
    }
    .prev, .next {
        padding: 10px;
        font-size: 18px;
    }
}
/* read more button */
.read-more-btn {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #feb47b, #ff7e5f);
}
/* brochure */
.brochure-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1); /* Subtle transparent white */
    padding: 3vw;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 80vw;
    width: 100%;
    backdrop-filter: blur(10px);
}

.brochure-image {
    flex: 1;
    text-align: center;
}

.brochure-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.download-btn-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-btn {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    padding: 1.5vw 3vw;
    font-size: 1.5vw;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.download-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff6600, #ffcc00);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brochure-section {
        flex-direction: column;
        text-align: center;
    }

    .brochure-image,
    .download-btn-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .download-btn {
        font-size: 4vw;
        padding: 3vw 6vw;
    }
}

/* Extra Large Screens (TVs, Projectors) */
@media (min-width: 1800px) {
    .brochure-section {
        max-width: 60vw;
        padding: 4vw;
    }

    .download-btn {
        font-size: 2vw;
        padding: 2vw 4vw;
    }
}
/* icons */
   
  /* Bottom center social icons */
  .bottom-social-icons {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    z-index: 1000;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

  .bottom-social-icons a {
    color: #000;
    font-size: 22px;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .bottom-social-icons a:hover {
    transform: scale(1.2);
  }

  .bottom-social-icons a .fa-youtube { color: #ff0000; }
  .bottom-social-icons a .fa-instagram { color: #e1306c; }

  /* Vertical sticky text - adjusted right side center */
  .vertical-follow-text {
    position: fixed;
    top: 50%;
    right: -60px; /* shifted out to avoid cropping */
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    background: linear-gradient(to right, #e1306c, #ff0000);
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 24px 0 0 24px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    z-index: 1001;
    letter-spacing: 1px;
    user-select: none;
    cursor: pointer;
    animation: pulseGlow 2s infinite;
    white-space: nowrap;
  }

  @keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    }
    50% {
      box-shadow: 0 0 24px rgba(255, 0, 0, 1);
    }
  }

  /* Mobile adjustments */
  @media (max-width: 600px) {
    .bottom-social-icons {
      padding: 6px 16px;
      gap: 10px;
    }
    .bottom-social-icons a {
      font-size: 20px;
      padding: 8px;
    }
    .vertical-follow-text {
      font-size: 14px;
      padding: 10px 28px;
      right: -60px;
    }
  }

