body {
    background-color: #EDF6ED;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h1 {
    text-align: center;
    padding: 20px 0;
    color: #333;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.text-left, .text-right {
    flex: 1;
    padding: 0 20px;
}

.image-left, .image-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    border: 1cm solid #C8E3CA;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.text-left h2, .text-right h2 {
    margin-top: 0;
    color: #333;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.text-left p, .text-right p {
    text-align: justify;
    color: #666;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .text-left, .text-right, .image-left, .image-right {
        padding: 10px 0;
    }

    img {
        width: 100%;
        border-width: 0.5cm;
    }
}

img, video {
    width: 60%;
    border: 10px solid #C8E3CA;
    border-radius: 1cm;
    transition: transform 0.3s, box-shadow 0.3s;
}

img:hover, video:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Section Styles */
.section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #c8e3ca;
    display: block;
    margin: 10px auto;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

.contact__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact__mail-link {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    border: 2px solid #c8e3ca;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    opacity: 0;
    animation: fadeInUp 1s 1s forwards;
}

.contact__mail-link:hover {
    background-color: #c8e3ca;
    color: white;
}

.contact__socials {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1s 1.5s forwards;
}

.contact__social-icon {
    font-size: 2rem;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

.contact__social-icon:hover {
    color: #c8e3ca;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .contact__container {
        flex-direction: row;
        justify-content: center;
    }

    img,video{
       
    }
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-heading {
    animation: fadeInUp 1s ease-in-out;
}

.hover-effect {
    transition: transform 0.3s ease-in-out;
}

.hover-effect:hover {
    transform: scale(2);
    z-index: 10;
}

.video {
    transition: transform 0.3s ease-in-out;
}

.video.hover-effect:hover {
    transform: scale(2);
    z-index: 10;
}
/* Animation Styles */
@keyframes fadeInScaleUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animated-title {
    animation: fadeInScaleUp 2s ease-in-out;
}

/* Animation Styles */
@keyframes fadeInScaleUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animated-title {
    animation: fadeInScaleUp 2s ease-in-out;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .contact__container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    img, video {
        border: 6px solid #C8E3CA;
        border-radius: 0.5cm;
    }
}


   /* Modal styles */
   .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000; /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
    display: flex; /* Center the modal */
    justify-content: center; /* Center the modal horizontally */
    align-items: center; /* Center the modal vertically */
  }

  .modal-content {
    background-color: white;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Rounded corners */
  }

  .modal img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
    margin-bottom: 20px; /* Add some space below the image */
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .modal button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color:  rgb(26, 65, 81); /* Green background */
    color: white; /* White text */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
  }

  .modal button:hover {
    background-color:  rgb(19, 53, 67); /* Darker green on hover */
  }

  /* Added styles for text alignment and style */
  .modal p {
    text-align: justify;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
  }