/* Home Page Image Slider Style Started Here */

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden; 
}

.slider-container {
    display: flex; 
    transition: transform 0.5s ease; 
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 500px; 
    object-fit: cover; 
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: white; 
    text-align: center;
    font-family: 'Georgia', serif;
}

/* Overlay Text Styling */
.overlay h1 {
    color: white;
    font-size: 42px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    margin-top: 0px;
    opacity: 0;
    transform: scale(0.8); 
    animation: fade-in-zoom 2.5s forwards; 
}

.overlay p {
    color: white;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    opacity: 0;
    animation: fade-in-zoom 2.5s forwards;
}

/* Fade-in Zoom Keyframes */
@keyframes fade-in-zoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/* Overlay Button Style */
.overlay ul {
    margin-top: 40px;  
    padding-left: 0;    
    list-style-type: none;
}

.overlay ul li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DAA520;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    
}

.overlay ul li a:hover {
    background-color: gray;
}

/* Mobile Optimized Styles*/
@media only screen and (max-width: 600px) {
    .image-slider {
        height: auto; 
    }

    .slide img {
        height: 250px; 
    }

    .overlay h1 {
        font-size: 20px; 
    }

    .overlay p {
        font-size: 15px; 
    }

    .overlay ul li a {
        padding: 8px 15px; 
        font-size: 14px;
    }

   
}

/* Home Page Image Slider Style Ended Here */


/*  Home Page Image and Description Style Sheet Start here  */

.section.active {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 20px; 
    background-color: white;
}

.content-wrapper {
    display: flex; 
    width: 100%; 
    background-color: white;
}

.description, .home-image {
    flex: 1; 
    padding: 10px; 
}

.description h1 {
    font-size:34px;
    font-weight: bold; 
    color: #b78727; 
    margin-bottom: 10px; 
    font-family: 'Georgia', serif;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.description p {
    font-size: 14px; 
    font-family: 'Georgia', serif; 
    color: #333; 
    margin-bottom: 10px; 
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

/*Added Text Slight Zoom In on Hover for All Tags*/
h1:hover, h2:hover, p:hover {
    transform: scale(1.02); 
    opacity: 0.8;
}

/* Home Image Styling */
.home-image img {
    max-width: 100%;
    height: 500px; 
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .section.active {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .content-wrapper {
        flex-direction: column; 
    }

    .home-image img {
        height: auto; 
        max-height: 300px; 
    }

    .description {
        padding: 20px 10px;
    }

    .description h1 {
        font-size: 20px; 
    }

    .description p {
        font-size: 14px; 
    }

    .container {
        width: 100%; 
        padding: 10px;
    }
}

/* Responsive Styles End */

/*  Home Page Image and Description Style Sheet End here  */

/* Home Page Display Blocks Style Sheet Start here  */

#projects-summary {
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    padding: 20px; 
    background-color: white; 
}

.project-box {
    background-color: #fff; 
    border: 1px solid #ccc; 
    border-radius: 8px;
    padding: 20px; 
    text-align: center; 
    margin: 10px; 
    flex: 1 1 200px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.project-box h3 {
    font-size: 18px; 
    color: #b78727; 
    margin: 0; 
    font-family: 'Georgia', serif;
}

.project-box p {
    font-size: 14px; 
    font-weight: bold; 
    color: grey; 
    font-family: 'Georgia', serif;
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    #projects-summary {
        flex-direction: column; 
        padding: 10px; 
        align-items: center; 
    }

    .project-box {
        flex: 1 1 100%;
        margin: 10px 0; 
        padding: 15px; 
        height: 200px; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        text-align: center; 
    }

    .project-box h3 {
        font-size: 18px; 
    }

    .project-box p {
        font-size: 20px; 
    }

    .container {
        width: 100%; 
        padding: 10px; 
    }
}

/*Responsive Styles End */
/* Home Page Display Blocks Style Sheet End here */


/* Home Page (Services Code) Style Sheet Start Here  */

/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
h2 {
    text-align: center;
    font-size: 28px;
    color: #b78727;
    margin-bottom: 50px;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
    font-family: 'Georgia', serif;
}
  
/* Services Section Styles */
.service-area {
    padding: 50px 20px;
    background-color: #f9f9f9;
}
  
.service-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
}
  
/* Service Card Styles */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: calc(33.33% - 20px); 
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
  
/* Image Styles inside the service card */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
  
/* Icon Styling */
.service-card i {
    font-size: 2rem;
    color: #0a74da;
    margin-bottom: 10px;
}
  
/* Headline Styles (h3) */
.service-card h3 {
    font-size: 18px; 
    font-weight: bold; 
    color: #b78727;
    font-family: 'Georgia', serif; 
    margin-bottom: 10px;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}
  
/* Description Styles (p) */
.service-card p {
    font-size:14px; 
    color: #666;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}
  
/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .service-boxes {
        flex-direction: column; 
        align-items: center;
    }

    .service-card {
        width: 100%; 
        margin-bottom: 20px; 
    }

    h2 {
        font-size: 1.5rem; 
        margin-bottom: 30px; 
        font-family: 'Georgia', serif;
    }

    
}

/*Responsive Styles Ended*/

/* Home Page (Services Code) Style Sheet End Here */



/* Home Page Display Work Process Style Sheet Code Started Here */
#work-process {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

#work-process h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.process-container {
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap; 
}

.process-step {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    text-align: center;
    flex: 1 1 calc(35% - 40px); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.process-step img {
    width: 90%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.process-step h3 {
    font-size: 18px;
    color: #b78727;
    margin: 10px 0;
    font-family: 'Georgia', serif;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.process-step p {
    font-size: 14px;
    color: #666;
    font-family: 'Georgia', serif;
    opacity: 1; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .process-container {
        flex-direction: column; 
        align-items: center; 
    }

    .process-step {
        flex: 1 1 100%; 
        margin: 10px 0; 
    }

    #work-process h2 {
        font-size: 24px; 
        margin-bottom: 20px; 
    }

    .process-step h3 {
        font-size: 16px;
    }
}

/* Responsive Styles Ended */

/* Home Page Display Work Process Style Sheet Code Ended Here*/



/* Home Page Reviews Section Style Sheet Code Started Here*/
/* Reviews Section Styling */
.reviews-section {
    padding: 40px 20px;
    background-color:white;
    text-align: center;
    width: 100%;
}

.reviews-section h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

/* Reviews Wrapper */
.reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Reviews Grid */
.reviews-grid {
    display: flex;
    transition: transform 0.5s ease-in-out; 
    width: 100%;
}

.review-box {
    min-width: 100%; 
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.reviewer-name {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

/* Scroll Buttons Styling */
.rev-scroll-btn {
    background-color: rgba(0, 0, 0, 0.6); 
    color: white;
    border: none;
    border-radius: 50%; 
    width: 50px;
    height: 50px;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

#rev-scroll-left {
    left: 10px; 
}

#rev-scroll-right {
    right: 10px; 
}

.rev-scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .reviews-section {
        padding: 20px 10px; 
    }

    .reviews-section h2 {
        font-size: 18px; 
        margin-bottom: 20px;
    }

    .review-box {
        padding: 15px; 
    }

    .review-text {
        font-size: 12px; 
    }

    .reviewer-name {
        font-size: 14px; 
    }

    .rev-scroll-btn {
        width: 40px; 
        height: 40px;
        font-size: 20px; 
    }
}

/*Responsive Styles Ended */
/* Home Page Reviews Section Style Sheet Code Ended Here */




/* Home Page Navigation Contact Section Style Sheet Code Start Here */

#contact.section {
    display: none;
    padding: 40px;
    background-color: white;
    font-family: 'Georgia', serif;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    gap: 30px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 15px;
    }
}

/* Contact Left Section */
.contact-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 768px) {
    .contact-left {
        width: 100%;
    }
}

.contact-left-title h2 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.contact-inputs {
    width: 100%;
    padding: 12px;
    font-size: 12px;
    border: 1px solid #b78727;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

.contact-inputs:focus {
    border-color: #b78727;
    outline: none;
}

textarea.contact-inputs {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.contact-left button[type="submit"] {
    padding: 12px 20px;
    background-color: #b78727;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-left button[type="submit"]:hover {
    background-color: gray;
}

/* Contact Right Section */
.contact-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 768px) {
    .contact-right {
        width: 100%;
        padding: 0;
    }
}

.contact-right h2 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.additional-item h3 {
    font-size: 15px;
    color: #b78727;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Georgia', serif;
}

.additional-item p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    font-family: 'Georgia', serif;
}

/* Icon Styling */
.footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Home Page Navigation Contact Section Style Sheet Code End Here */





/* Home Page Project Photo Gallery Style Sheet Ended Here */

  /* General styling for the gallery section */
  #index-page-gallery {
    padding: 40px;
    background-color:white;
    text-align: center;
  }
  
  /* Style for the heading of the gallery with zoom and fade-in effect */
  .home-gallery-title {
    font-size: 26px;
    font-weight: bold;
    color: #b78727;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    
    /* Initial state for the animation */
    opacity: 0;
    transform: scale(0.9);
    
    /* Animation properties */
    animation: fadeInZoom 1s ease-out forwards; 
  }
  
  /* Keyframes for zoom and fade-in effect */
  @keyframes fadeInZoom {
    0% {
      opacity: 0;
      transform: scale(0.9); 
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  
    .gallery {
      display: flex;
      overflow-x: auto;
      gap: 25px;
      padding: 50px;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }
  
    .gallery-item {
      flex-shrink: 0;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 400px; 
      height:200px ;
    }
  
    .gallery-item img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      object-fit: cover; 
    }
  
    .gallery-item:hover img {
      transform: scale(1.05);
    }

     /* Optional: Adjustments for small screen sizes */
  @media (max-width: 768px) {
    .gallery-item {
      width: 100%;  
      height: auto; 
    }
  }

  @media (max-width: 480px) {
    .gallery-item {
      width: 100%;  
      height: auto; 
    }
  }


  /* Home Page Project Photo Gallery Style Sheet Ended Here */


 
  /* Home Page Project Video Gallery Style Sheet Started Here */

  /* General styling for the gallery section */
#index-page-video-gallery {
  padding: 40px;
  background-color:white;
  text-align: center;
}

/* Style for the heading of the gallery with zoom and fade-in effect */
.home-video-gallery-title {
  font-size: 26px;
  font-weight: bold;
  color: #b78727;
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  
  /* Initial state for the animation */
  opacity: 0;
  transform: scale(0.9); 
  
  /* Animation properties */
  animation: fadeInZoom 1s ease-out forwards; 
}

/* Keyframes for zoom and fade-in effect */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.9); 
  }
  100% {
    opacity: 1;
    transform: scale(1); 
  }
}


  /* Video Gallery Section */
  .gallery-video {
    display: flex;
    overflow-x: auto;  
    gap: 25px;
    padding: 50px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  /* Individual Video Item */
  .videos-item {
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;  
    height: 225px; 
    background-color: #f3f3f3; 
    overflow: hidden;
  }

  /* Video Element */
  .videos-item video {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
  }

  /* Optional: Adjustments for small screen sizes */
  @media (max-width: 768px) {
    .videos-item {
      width: 100%;  
      height: 200px; 
    }
  }

  @media (max-width: 480px) {
    .videos-item {
      width: 100%;  
      height: 180px; 
    }
  }
 /* Home Page Project Video Gallery Style Sheet Ended Here */






/* Home Page Testimonial Style sheet Started Here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: white;
    color: #333;
}

.testimonial-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column; 
    padding: 20px;
}

/* Heading for Achievers */
h1 {
    font-size: 26px;
    color: #b78727;
    font-family: 'Georgia', serif;
    margin-bottom: 30px;
    text-align: center; 
}

.testimonial-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    height: 100%;
}

/* Testimonial */
.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 10px;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomInOut 30s infinite;
    width: 250px;
    min-width: 250px;
    transition: transform 20s ease-in-out, opacity 5s ease-in-out;
    text-align: center;
}

.testimonial:nth-child(1) {
    animation-delay: 0s;
}

.testimonial:nth-child(2) {
    animation-delay: 5s;
}

.testimonial:nth-child(3) {
    animation-delay: 10s;
}

.photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.details {
    text-align: center;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-family: 'Georgia', serif;
    color: #b78727;
}

.position {
    color: #78581a;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.testimonial-text {
    font-family: 'Georgia', serif;
    color: grey;
    font-size: 14px;
}

/* Keyframe animations */
@keyframes zoomInOut {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    10%, 30% {
        opacity: 1;
        transform: scale(1.1);
    }
    20%, 50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    /* Adjust layout to stack testimonials vertically in mobile view */
    .testimonial-container {
        flex-direction: column;
        width: 100%; 
        justify-content: flex-start;
        align-items: center;
    }

    .testimonial {
        width: 100%; 
        margin: 10px 0; 
        opacity: 1; 
        transform: scale(1); 
        height: 100%;
    }

    .photo {
        width: 80px; 
        height: 80px;
    }

    h3 {
        font-size: 18px; 
    }

    .position {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 10px; 
    }

    h1 {
        font-size: 20px; 
        margin-bottom: 20px; 
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        width: 100%; 
    }

    .testimonial {
        width: 100%; 
        margin: 10px 0; 
        opacity: 1; 
        height: auto; 
    }

    .photo {
        width: 60px; 
        height: 60px;
    }

    h3 {
        font-size: 14px; 
    }

    .position {
        font-size: 10px; 
    }

    .testimonial-text {
        font-size: 10px; 
    }

    h1 {
        font-size: 20px; 
        margin-bottom: 15px; 
    }
}

/* Home Page Testimonial Style sheet Ended Here */


/* Home Page Display Company Video like Achivers Video Started Here*/

/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top:50px ;
}

body, html {
    height: 100%;
    font-family: 'Georgia', serif;
}

/* Full-width video section */
.company-video-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
}

/* Styling for the h4 tag */
.company-video-section h4 {
    color: #b78727;
    font-size: 28px; 
    font-weight: bold;
    text-align:center;
    font-family: 'Georgia', serif;
    margin-bottom: 25px; 
    /* position: absolute; 
    top: 20%; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 2;  */
    width: 80%; 
}

/* Video Styling */
.company-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .company-video-section h4 {
        font-size: 14px; 
        top: 25%;
        width: 80%; 
        margin-bottom: 20px; 
    }

    /* Video adjustments for mobile */
    .company-video-section {
        height: 60vh; 
    }
    .company-video {
        height: 60vh; 
        width: 100%;
    }
}

/* Very small devices like phones in portrait mode (max-width: 480px) */
@media (max-width: 480px) {
    .company-video-section h4 {
        font-size:14px;
        top: 15%;
        width: 90%; 
        margin-bottom: 35px; 
    }

    /* Further adjust video container height for very small screens */
    .company-video-section {
        height: 55vh; 
    }
    .company-video {
        height: 55vh; 
        width: 100%;
    }
}


/* Home Page Display Company Video like Achivers Video Ended Here*/



/* <!-- Contact Form Modal Code Style Sheet Started  Here --> */

/* Modal Background */
    #contactModal {
        display: none; /* Initially hidden, will be displayed using JavaScript */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    /* Modal Content Box */
    .modal-register-content {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        max-width: 400px;
        width: 85%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        font-family: Arial, sans-serif;
    }

    /* Close Icon */
    .close-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.8em;
        color: #999;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-icon:hover {
        color: #333;
    }

    /* Modal Title */
    .modal-register-content h2 {
        color: #333;
        margin-bottom: 15px;
        font-size: 1.4em;
        font-weight: bold;
        font-family: 'Georgia', serif;
    }

    /* Input Fields */
    .fields-input {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
        font-size: 0.85em;
        color: #333;
        font-weight: bold;
        font-family: 'Georgia', serif;
    }

    /* Button Styles */
    .button {
        padding: 10px;
        width: 100%;
        border: none;
        border-radius: 5px;
        font-size: 0.85em;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-weight: bold;
        font-family: 'Georgia', serif;
    }

    /* Register Button */
    .register-button {
        background-color: #b78727;
        color:white;
        margin-top: 10px;
    }

    .register-button:hover {
        background-color:gray;
    }

/* <!-- Contact Form Modal Code Style Sheet Ended Here --> */