    /* General Styles */

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}
* {
  font-family: 'Roboto', sans-serif; /* Apply Roboto font globally */
}
/* Banner Section */
.banner {
  background: url('https://goldeneyebeachdeck.com/wp-content/uploads/2024/11/Untitled-design-16.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.banner-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn-book-now {
  background-color: #ff7f50;
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
}

.btn-book-now:hover {
  background-color: #ff4500;
}

/* Divider Style */
.divider {
  height: 5px;
  background: #ff7f50;
  margin: 50px 0;
}

.divider-fancy {
  height: 3px;
  background: linear-gradient(90deg, #ff7f50, #ff4500, #ff7f50);
  margin: 50px 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2f4f4f, #4e6d6d);
  color: white;
  padding: 80px 0;
}

.cta-section h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-section .btn {
  background-color: #ff7f50;
  color: white;
  padding: 14px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
}

.cta-section .btn:hover {
  background-color: #ff4500;
}

/* Features Section */
.feature-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: #ff7f50;
  margin-bottom: 20px;
}

/* Gallery Section */
.owl-carousel .item img {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-carousel .item img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
  background-color: #fff;
}

#contact .col-md-6 {
  padding: 15px;
}

h5 {
  font-weight: bold;
  color: #333;
}

p {
  color: #555;
}

/* Font Awesome Icons */


    /* Divider Style */
    .divider {
      width: 50px;
      height: 4px;
      background-color: #00aaff;
      margin: 20px auto;
    }

    

    /* CTA Section */
    .cta-section {
      background-color: #f0f0f0;
      padding: 50px 0;
      text-align: center;
      border-radius: 15px;
      margin-top: 40px;
    }
    .cta-section h3 {
      font-size: 2.2rem;
      color: #00aaff;
    }
    .cta-section p {
      font-size: 1.2rem;
      color: #888;
      margin-bottom: 40px;
    }
    .cta-section .btn {
      font-size: 1.2rem;
      background-color: #00aaff;
      color: white;
      border-radius: 30px;
      padding: 12px 40px;
      text-transform: uppercase;
    }
    .cta-section .btn:hover {
      background-color: #007b99;
    }

    /* Book Now Button Styling */
    .book-now-btn {
      font-size: 1.3rem;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      background-color: #00aaff;
      color: white;
      transition: all 0.3s ease;
    }
    .book-now-btn:hover {
      background-color: #007b99;
    }

    /* Make the header sticky */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1050; /* Ensure it's above other content */
    background-color: #fff; /* Ensure the header has a white background */
}

/* Add shadow effect to the header */
.site-header.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive styling for navbar */
.navbar-light .navbar-nav .nav-link {
    color: #333; /* Dark text for links */
    padding: 0.5rem 1rem; /* Add some padding around links */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #007bff; /* Highlight link color on hover */
}

/* Mobile menu adjustments */
.navbar-toggler-icon {
    background-color: #fff; /* Change the color of the toggle icon */
}

.navbar-light .navbar-nav .nav-item.active .nav-link {
    font-weight: bold;
    color: #007bff;
}

/* Logo Styling */
.navbar-brand img {
    max-height: 40px;
    object-fit: contain;
}

/* Custom spacing for navbar */
.navbar-nav {
    gap: 1rem;
}


/* General Styles */
#contact {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-info h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.contact-details {
  font-size: 1.1rem;
  color: #666;
}

.contact-info {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
form input, form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

form input:focus, form textarea:focus {
  border-color: #ff7f50;
  outline: none;
}

form button {
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ff4500;
}

/* Gallery Section Styles */
#gallery {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Gallery Carousel */
.owl-carousel .item {
  position: relative;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.gallery-image:hover img {
  transform: scale(1.1); /* Zoom effect */
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.gallery-image:hover .image-overlay {
  opacity: 1;
  visibility: visible;
}

.image-overlay p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Font Awesome Icons */
.fas {
  margin-right: 10px;
}

/* CTA Section Styles */
.cta-section {
  background: url('https://goldeneyebeachdeck.com/wp-content/uploads/2024/11/Untitled-design-17.png') center/cover no-repeat; /* Background image */
  position: relative;
  color: #fff;
  background-size: cover; /* Ensure the background image covers the entire section */
  background-position: center center; /* Center the image */
  padding: 80px 0; /* Adjust the padding to give more space */
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay to improve text readability */
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .cta-title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.cta-section .cta-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

.cta-section .cta-btn {
  background-color: #ff7f50;
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.cta-section .cta-btn:hover {
  background-color: #ff4500;
  transform: translateY(-5px);
}

.cta-section .cta-btn:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 127, 80, 0.6);
}

.banner-content p {
    color: #fff;
}

section.the_footer_sec.py-md-5.py-4.text-light p {
    color: #ffff;
}

/*start css of gallary page*/
  .hero_section_gallary {
            background-image: url('https://goldeneyebeachdeck.com/wp-content/uploads/2024/11/Untitled-design-24.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero_section_gallary h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero_section_gallary p {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .gallery-item img {
            transition: transform 0.3s ease;
            border-radius: 8px;
            width: 100%;
            height: 100%;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .gallery-item {
            position: relative;
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 8px;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay h4 {
            font-size: 1.5rem;
        }

        .footer {
            background-color: #222;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer a {
            color: #f8b400;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }
/*end css of gallary page*/


/*start blog page */
        /* Page-specific class names */
        .blog-hero {
            background-image: url('https://goldeneyebeachdeck.com/wp-content/uploads/2024/12/beach-Paradise.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .blog-hero p {
            font-size: 1.2rem;
        }

        .blog-post-card {
            border: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .blog-post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-post-card-body {
            padding: 20px;
        }

        .blog-post-card-body h5 {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .blog-post-card-body p {
            font-size: 1rem;
            color: #555;
        }

        .btn-read-more {
            background-color: #f8b400;
            color: white;
            font-weight: bold;
        }

        .btn-read-more:hover {
            background-color: #e89f00;
        }

        .blog-footer {
            background-color: #222;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .blog-footer a {
            color: #f8b400;
            text-decoration: none;
        }

        .blog-footer a:hover {
            text-decoration: underline;
        }
/*end blog page*/

/*start about us page*/

        /* About Us Section */
        .about-us-hero {
            background-color: #ffffff;
            padding: 60px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .about-us-hero img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .about-us-hero .about-us-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-top: 20px;
        }

        /* Mission Section */
        .about-us-mission {
            margin-top: 60px;
            background-color: #f8f8f8;
            padding: 40px 0;
            text-align: center;
        }

        .about-us-mission h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f8b400;
            margin-bottom: 20px;
        }

        .about-us-mission p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.8;
        }

        /* Our Team Section */
        .about-us-team {
            margin-top: 60px;
        }

        .about-us-team h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
        }

        .team-member-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            overflow: hidden;
            text-align: center;
            background-color: #fff;
        }

        .team-member-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .team-member-card-body {
            padding: 20px;
        }

        .team-member-card-body h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }

        .team-member-card-body p {
            color: #777;
            font-size: 1rem;
        }
/*end about us page*/

/*start css for contact us */
 /* Contact Us Section */
        .contact-us-section {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 40px 20px;
        }

        .contact-us-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-us-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }

        .contact-us-header p {
            font-size: 1.1rem;
            color: #555;
        }

        /* Two-Column Layout for Form & Image */
        .contact-us-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .contact-us-image {
            flex: 1;
            max-width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .contact-us-form {
            flex: 1;
            max-width: 100%;
        }

        .contact-form-wrapper {
            margin-top: 20px;
        }

        /* Contact Details Section */
        .contact-details {
            margin-top: 40px;
            text-align: center;
        }

        .contact-details h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

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

        .contact-details .social-icons {
            margin-top: 30px;
        }

        .contact-details .social-icons a {
            margin: 0 15px;
            font-size: 1.5rem;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details .social-icons a:hover {
            color: #f8b400;
        }

/* Section Styling */
.about-us {
  background-color: #f8f9fa; /* Light background */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-us .section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive Image */
.about-us .img-fluid {
  transition: transform 0.3s ease-in-out;
}

.about-us .img-fluid:hover {
  transform: scale(1.05);
}

/* Columns */
.about-us .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.about-us .col-md-6 {
  padding: 1rem;
}

.about-us .col-md-6 p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495057;
}

/* Shadows & Round Corners */
.about-us .shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}




/*end css for contact us*/


/* About Us Hero Section */
.about-us-hero {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-us-hero .about-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-us-hero .about-us-text {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
}

.about-us-hero .about-us-image {
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
}

.about-us-hero .about-us-image:hover {
  transform: scale(1.05);
}

/* Mission Section */
.about-us-mission {
  background-color: #f8f9fa;
}

.about-us-mission-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-us-mission-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8;
}

/* Team Section */
.about-us-team {
  background-color: #fff;
}

.about-us-team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.team-member-card-body {
  padding: 1.5rem;
}

.team-member-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.team-member-card-body h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.team-member-card-body p {
  color: #777;
}

/* Blog Hero Section */
.blog-hero {
    background: url('https://goldeneyebeachdeck.com/wp-content/uploads/2024/12/beach-Paradise.png') no-repeat center center/cover;  /* Beach image as background */
    color: #fff;  /* Text color for contrast */
    padding: 6rem 0;  /* Increased padding for more breathing room */
    text-align: center;  /* Centering the content */
    position: relative;  /* Allow overlay on the background */
    background-size: cover;
}

.blog-hero::before {
    content: ''; /* Empty content to create overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);  /* Dark semi-transparent overlay to improve text visibility */
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;  /* Large and bold title */
    font-weight: 800;  /* Strong font weight */
    text-transform: uppercase;  /* Uppercase for emphasis */
    letter-spacing: 2px;  /* Letter spacing for a more modern feel */
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.25rem;  /* Subtle but readable paragraph text */
    font-weight: 400;  /* Normal weight for the paragraph */
    max-width: 800px;  /* Limit the width to prevent overly long lines */
    margin: 0 auto;  /* Center the text */
    line-height: 1.6;
}

.blog-hero .container h1,
.blog-hero .container p {
    transition: transform 0.3s ease;  /* Smooth transition for hover effects */
}

.blog-hero .container h1:hover,
.blog-hero .container p:hover {
    transform: translateY(-5px);  /* Subtle lift effect on hover */
}
section.blog-hero p {
    color: #fff;
}
.card-body.blog-post-card-body a:visited {
    color: #fff;
}

 /* Ensure images are centered on mobile */
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the images */
  }

  .gallery-grid .col-12 {
    display: flex;
    justify-content: center; /* Center each image inside its column */
    padding: 0; /* Remove extra padding from columns */
  }


/*start contact us form*/
/* Custom styling for form fields */
.wpcf7-form-control {
  border-radius: .375rem; /* Rounded corners */
  border: 1px solid #ced4da; /* Light border */
  padding: .75rem 1.25rem; /* Padding inside input */
  width: 100%; /* Make the form fields full width */
  font-size: 1rem; /* Adjust font size */
}

.wpcf7-submit {
  background-color: #007bff; /* Blue background */
  color: white; /* White text */
  border: none; /* No border */
  padding: .75rem 1.5rem; /* Padding */
  border-radius: .375rem; /* Rounded corners */
  font-size: 1rem; /* Adjust font size */
  cursor: pointer; /* Pointer cursor */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.wpcf7-submit:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.wpcf7-form {
  background-color: #f8f9fa; /* Light background for form */
  padding: 2rem; /* Add padding around the form */
  border-radius: .375rem; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Slight shadow */
}

/*end contact form */

/*start footer widget css*/

/* Ensure the container of the widget text is displayed properly */
.widget_text {
    padding: 20px;
    margin: 0;
}

/* Make sure the content inside the widget is responsive */
.widget_text .col-md-3 {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

/*end footer widget css*/

/*start masonary gallary*/
/* Masonry Grid Layout */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Creates a responsive grid */
    gap: 16px; /* Adds space between grid items */
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.masonry-item img:hover {
    transform: scale(1.05); /* Adds zoom effect on hover */
}

.gallery-item {
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

/*end masonary gallary*/
/*start single post css*/
/* Custom Styling for the Single Post Page */
.post-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 30px;
}

.post-card-body {
    padding: 20px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.post-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
    color: #333;
}

.comments-title::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #007bff;
    margin-bottom: 10px;
}

/* Styling for the Comment Form */
.comment-form {
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    resize: vertical;
}

.comment-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #0056b3;
}

/* Styling the comment display */
.comment {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.comment .comment-author {
    font-weight: bold;
}

.comment .comment-date {
    color: #6c757d;
    font-size: 0.875rem;
}

/*end single post css*/

/*start widget media*/
/* Adjust for larger screens */
@media (min-width: 768px) {
    .widget_text .col-md-3 {
        width: 25%;
    }
}

/* Style for the heading */
.widget_text .col-md-3 h6 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

/* Styling for the horizontal line */
.widget_text .col-md-3 hr {
    width: 60px;
    background-color: #f2a900;
    height: 2px;
    border: none;
    margin-bottom: 10px;
    margin-top: 0;
}

/* Text content */
.widget_text .col-md-3 p {
    color: #dcdcdc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Button styling */
.widget_text .col-md-3 .btn {
    background-color: transparent;
    color: #f2a900;
    border: 2px solid #f2a900;
    padding: 8px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.widget_text .col-md-3 .btn:hover {
    background-color: #f2a900;
    color: #fff;
}

/* For small screens */
@media (max-width: 767px) {
    .widget_text .col-md-3 {
        width: 100%;
        padding: 15px;
    }

    .widget_text .col-md-3 h6 {
        font-size: 1rem;
    }

    .widget_text .col-md-3 p {
        font-size: 0.85rem;
    }

    .widget_text .col-md-3 .btn {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}
/*end widget media*/


/* For mobile view, space out links a bit more */
@media (max-width: 767px) {
    .navbar-nav {
        gap: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .contact-info {
    padding: 15px;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }
  
  form input, form textarea {
    font-size: 1rem;
  }
  
  form button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}


/* Responsive Adjustments for Owl Carousel */
@media (max-width: 991px) {
  .owl-carousel .item {
    margin: 0 15px; /* Space between items */
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .gallery-image img {
    height: auto;
  }
}


/* Responsive Styles */
@media (max-width: 991px) {
  .cta-section .cta-title {
    font-size: 2rem;
  }

  .cta-section .cta-subtitle {
    font-size: 1rem;
  }

  .cta-section .cta-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-title {
    font-size: 1.8rem;
  }

  .cta-section .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-section .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

 /* Responsive Styles */
        @media (max-width: 768px) {
            .about-us-hero {
                padding: 40px 20px;
            }

            .about-us-mission p {
                font-size: 1rem;
            }

            .about-us-team h2 {
                font-size: 2rem;
            }

            .team-member-card {
                margin-bottom: 20px;
            }

            .team-member-card img {
                height: 200px;
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-us-row {
                flex-direction: column;
            }

            .contact-us-image {
                width: 100%;
                height: 250px;
            }

            .contact-us-form {
                width: 100%;
            }

            .contact-details h2 {
                font-size: 1.8rem;
            }

            .contact-details p {
                font-size: 1rem;
            }
        }

        /* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-us .section-title {
    font-size: 2rem;
  }

  .about-us .section-subtitle {
    font-size: 1rem;
  }

  .about-us .row {
    flex-direction: column;
    align-items: center;
  }

  .about-us .col-md-6 {
    margin-bottom: 2rem;
  }

  .about-us .col-md-6 p {
    font-size: 1rem;
  }
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 768px) {
  .about-us-hero .about-us-title {
    font-size: 2rem;
  }

  .about-us-hero .about-us-text {
    font-size: 1rem;
  }

  .about-us-mission-title {
    font-size: 1.75rem;
  }

  .about-us-mission-text {
    font-size: 1rem;
  }

  .about-us-team-title {
    font-size: 2rem;
  }

  .about-us-team .card {
    margin-bottom: 2rem;
  }

  .team-member-card img {
    height: 250px;
    object-fit: cover;
  }

  .about-us-hero .row {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0;  /* Reduced padding on smaller screens */
    }

    .blog-hero h1 {
        font-size: 2.5rem;  /* Smaller title on smaller screens */
        letter-spacing: 1px;  /* Reduced letter spacing for better readability */
    }

    .blog-hero p {
        font-size: 1rem;  /* Slightly smaller text for mobile */
        max-width: 90%;  /* Allow the text to use more space */
    }
}

/* For larger screens, arrange images in a 3-column layout */
  @media (min-width: 768px) {
    .gallery-grid .col-sm-6 {
      max-width: 50%;
    }
  }

  /* For extra large screens, use the default Bootstrap 3-column grid */
  @media (min-width: 992px) {
    .gallery-grid .col-md-4 {
      max-width: 33.33%;
    }
  }