@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");

/* General Reset and Font */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Sen', sans-serif;
    box-sizing: border-box;
}

/* Header Styling */
.main-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: #000;
}

.social-links a {
    color: #b58e60;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Center Logo */
.center-logo .logo {
    max-height: 70px;
}

/* Mobile Menu */
.mobile-menu-icon {
    display: flex;
    font-size: 2rem;
    cursor: pointer;
}

/* Slide-in Mobile Menu */
.slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.slide-menu.slide-in {
    left: 0;
}

/* Hero Section */
.hero {
    background: url('obrazky/sri_lanka_beach_2.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* Booking Forms */
.booking-form, .additional-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input, .booking-form select,
.additional-form input {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.booking-form button, .additional-form button {
    padding: 15px;
    border: none;
    font-size: 16px;
    background-color: #b58e60;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s, transform 0.3s;
}

.booking-form button:hover, .additional-form button:hover {
    background-color: #000;
    transform: scale(1.05);
}

/* Hidden Forms */
.hidden {
    display: none;
}

/* Custom Checkbox Scaling and Alignment */
/* Hidden Forms */
.hidden {
    display: none;
}

/* Custom Checkbox - Small, Square, and Brown Theme */
.custom-checkbox {
    width: 16px;  /* Set a fixed small square size */
    height: 16px;
    appearance: none;  /* Removes default browser styling */
    border: 2px solid #b58e60;  /* Brown border to match theme */
    border-radius: 3px;  /* Optional: can remove for sharp corners */
    cursor: pointer;
    position: relative;
    outline: none;
}

/* Checkbox Checked State - Fills with Brown Color */
.custom-checkbox:checked {
    background-color: #b58e60;
    border-color: #b58e60;
}

/* Checkbox Tick (Custom Checkmark) */
.custom-checkbox:checked::before {
    content: "\2713";  /* Unicode for checkmark */
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* Form Text Styling */
.additional-form label,
.additional-form .form-check-label {
    color: #212529;  /* Dark text */
    font-size: 1rem; /* Match text height */
}

/* Link Styling */
.terms-link {
    color: #b58e60;  /* Matches button */
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #000;
}

/* Close Button */
.close-btn {
    font-size: 2rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design Adjustments */
@media (max-width: 900px) {
    .nav-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .mobile-menu-icon {
        display: block;
    }

    .left-nav {
        display: none;
    }

    .booking-form, .additional-form {
        width: 100%;
        max-width: 500px;
    }
}

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

    .booking-form input,
    .booking-form select,
    .additional-form input {
        padding: 12px;
    }

    .booking-form button,
    .additional-form button {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .booking-form input,
    .booking-form select,
    .additional-form input {
        padding: 10px;
        font-size: 14px;
    }

    .booking-form button,
    .additional-form button {
        padding: 12px;
        font-size: 14px;
    }
}



/* Vacation Section Styling */
.vacation-section {
    background-color: #fff;
    padding: 100px 0;
}

.map-background {
    background: url('obrazky/map_sri.png') no-repeat center top;
    background-size: contain;
    padding: 120px 0;
    margin-bottom: 20px;
}

.map-background h2 {
    font-family: 'Sen', sans-serif;
    font-size: 2.5rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.vacation-section .description {
    font-size: 1.1rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .map-background h2 {
        font-size: 2rem;
    }

    .vacation-section .description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .map-background {
        padding: 80px 0;
    }
}


/* Gallery Section Styling */
.gallery-section {
    background-color: #fff;
    padding: 100px 0;
}

.gallery-title {
    font-family: 'Sen', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;  /* Lightweight and elegant */
    color: #555;
}

.gallery-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Gallery Grid - Custom Widths */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    border-radius: 10px;
    height: 400px;  /* Maintain consistent height */
    object-fit: cover;
}

/* First Row Custom Widths */
.gallery-item.narrow img {
    width: 250px;  /* Narrower images */
}

.gallery-item.wide img {
    width: 550px;  /* Wider image */
}

/* Second Row (Standard Size) */
.gallery-item:not(.narrow):not(.wide) img {
    width: 350px;
}

/* Hover Effects */
.gallery-item a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item a:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Layout */
@media (max-width: 900px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item img {
        width: 100%;  /* Full width on smaller screens */
        height: auto;
    }

    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-description {
        font-size: 1rem;
    }
}


/* Core Features Section */
.features-section {
    background-color: #fff;
    padding: 80px 0;
}

.features-title {
    font-family: 'Sen', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #555;
}

.features-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 90px;  /* Icon size */
    height: auto;
}

.feature-text {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-title {
        font-size: 2rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .feature-icon {
        width: 70px;  /* Smaller icons for mobile */
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 100px 0;
}

.testimonials-title {
    font-family: 'Sen', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #555;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    max-width: 750px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: left;  /* Left-align the description */
}

/* Stars and Name Left-Aligned */
.stars {
    color: #b58e60;
    font-size: 1.4rem;
}

.testimonial-name {
    font-size: 1rem;
    color: #333;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
}

/* Carousel Controls Below for Mobile */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;  /* Default position */
    width: auto;
    filter: invert(50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: static;  /* Place controls below */
        display: inline-block;
        width: 50px;
    }
}


/* Q&A Section */
.qa-section {
    background-color: #fff;
    padding: 80px 0;
}

.qa-title {
    font-family: 'Sen', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #555;
}

.qa-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.7;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

.accordion-button {
    font-size: 1.1rem;
    color: #333;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #b58e60;  /* Brown for active state */
    background-color: rgba(181, 142, 96, 0.1);  /* Light brown background */
    border-left: 3px solid #b58e60;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Image Styling */
.qa-image {
    max-width: 90%;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .qa-section {
        text-align: center;
    }

    .qa-title {
        font-size: 2rem;
    }

    .qa-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .qa-image {
        margin-top: 30px;
        max-width: 100%;
    }
}


/* Footer Section */
.footer-section {
    background-color: #000;
    color: #fff;
}

.footer-brand {
    font-family: 'Sen', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-description {
    font-size: 1rem;
    color: #bbb;
    max-width: 350px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-contact-text {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
    max-width: 350px;
}

.footer-contact-info {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
}






/* About Hero Section */
.about-hero {
    background: url('obrazky/six_sencess.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section Styling */
.about-section {
    background-color: #fff;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #555; /* Softer title color */
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* User Rating & Button Row */
.about-section .d-flex {
    gap: 40px;
}

/* Booking Button Styling */
.booking-btn {
    border: none;
    background-color: #b58e60;
    color: white;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.booking-btn:hover {
    background-color: #000;
    transform: translateY(-3px);
}

/* Rating Block Styling */
.rating-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-block h1 {
    font-size: 3rem;
    color: #333;
}

.rating-block span {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-section p {
        font-size: 1rem;
        text-align: center;
    }

    .about-section .d-flex {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        flex-wrap: nowrap;
    }

    .rating-block h1 {
        font-size: 2.5rem;
    }

    .booking-btn {
        width: auto;
        padding: 12px 40px;
        font-size: 1rem;
    }
}


/* Services Section Styling */
.services-section {
    background-color: #fff;
    padding: 100px 0;
}

.services-section p.small {
    font-size: 0.875rem;
    color: #777;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #555;
}

.service-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Icon Styling */
.service-icon {
    width: 70px;
    height: auto;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .row-cols-md-4 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .row-cols-md-4 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-section h2 {
        font-size: 2rem;
    }
}


/* Video Section Styling */
.video-section {
    background-color: #fff;
    padding: 100px 0;
}

.video-section p.small {
    font-size: 0.875rem;
    color: #777;
}

.video-section h2 {
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 40px;
}

/* Video Wrapper to Maintain Aspect Ratio */
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-section h2 {
        font-size: 2rem;
    }

    .video-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .video-wrapper iframe {
        height: 200px;
    }
}


/* Why Choose Us Section */
.why-choose-us {
    background-color: #fff;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #555;
    font-weight: 400;
}

/* Tab Navigation */
.nav-tabs .nav-link {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    border: none;
}

.nav-tabs .nav-link.active {
    border-bottom: 2px solid #b58e60;
    color: #000;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Image and Text Spacing */
.img-fluid {
    border-radius: 10px;
}

.tab-pane p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.tab-pane img {
    transition: transform 0.3s ease;
}

.tab-pane img:hover {
    transform: scale(1.03);
}



.blog-listing {
    background-color: #fff;
}

.blog-card {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-img-wrapper {
    position: relative;
    flex-shrink: 0;
}

.blog-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.blog-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 50%;
}

.blog-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.blog-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b58e60;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-img {
        width: 100%;
        height: auto;
    }

    .blog-number {
        top: 8px;
        left: 8px;
        font-size: 0.9rem;
    }
}



/* Booking Section Styling */
.contact-booking {
    background-color: #fff;
    padding: 80px 0;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Booking Form Styling */
.booking-form-secondary .form-control, 
.booking-form-secondary .form-select {
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
}

.booking-btn {
    padding: 12px 40px;
    font-size: 1rem;
    background-color: #b58e60;
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: #000;
}

/* Custom Checkbox Styling */
.custom-checkbox-secondary {
    width: 18px;
    height: 18px;
    border: 2px solid #b58e60;
    cursor: pointer;
}

.custom-checkbox-secondary:checked {
    background-color: #b58e60;
}

/* Contact Details Styling */
.contact-details {
    margin-top: 60px;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-details p {
    margin-bottom: 5px;
    color: #555;
    font-size: 1rem;
}


/* Blog Detail Section */
.blog-detail {
    background-color: #fff;
    font-family: 'Sen', sans-serif;
    color: #333;
}

.blog-category {
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.blog-meta {
    font-size: 1rem;
    color: #777;
}

.blog-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
}

.blog-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Social Icons */
.social-icons img {
    width: 20px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.7;
}

/* Image Styling */
.img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Image Caption */
.image-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 30px;
}

/* Testimonial Section */
.testimonial-category {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
}

/* Centered Blockquote */
.blockquote {
    margin: 0 auto;
    text-align: center;
    max-width: 750px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }

    .blog-intro {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

    .image-caption {
        font-size: 0.85rem;
    }
}



/* Full Map Section */
.full-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container {
    position: relative;
    height: 600px;  /* Adjust height as needed */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.2);  /* Enhances dark theme effect */
}

/* Marker Styling */
.map-marker {
    position: absolute;
    top: 68%;  /* Adjust to point exactly on Kalametiya */
    left: 54%;  /* Horizontal adjustment for location */
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.marker-icon {
    width: 45px;
    height: 45px;
}

.marker-label {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 5px;
}


/* Preloader Full Screen */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;  /* Dark background for luxury feel */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for Logo and Glow */
.loader-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo */
.loader-logo {
    width: 100px;  /* Adjust to your desired size */
    animation: pulse 2s infinite ease-in-out;
}

/* Glow Effect */
.loader-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(181, 142, 96, 0.2); /* Soft brown to match the site's theme */
    box-shadow: 0 0 30px 15px rgba(181, 142, 96, 0.5);
    animation: glow 2s infinite ease-in-out;
}

/* Pulsing Animation for Logo */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Glowing Animation for Outer Circle */
@keyframes glow {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}
