/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #e3f2fd;
  }

  /* Smooth Scrolling */
html {
    scroll-behavior: smooth;
  }
  
  /* Header and Navigation */
header {
    background: #1976d2; /* Dark blue */
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001; /* Ensure the logo is above the main page */
  }
  
  .logo {
    width: 8.125rem;
    height: 8.125rem;
    margin-right: 0.625rem;
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    left: 1rem; /* Indent from the left edge */
    border-radius: 0 0 1.5rem 1.5rem; /* Circular bottom corners */
    overflow: hidden; /* Ensure the image respects the border radius */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fits nicely */
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 9rem; /* Adjust spacing to account for the logo overlap */
  }
  

  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 1rem;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #90caf9; /* Light blue */
  }
  
  .burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Responsive Navigation */
  @media (max-width: 48rem) {
    .burger-menu {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 4.375rem;
      right: 0;
      background: #1976d2; /* Dark blue */
      flex-direction: column;
      width: 100%;
      text-align: center;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 1rem 0;
    }
  }

/* Photo Cover Section */
.photo-cover {
    position: relative;
    height: 30rem; /* Adjust height as needed */
    overflow: hidden;
  }
  
  .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the section */
  }
  
  .cover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10; /* Ensure content is above the image */
  }
  
  .cover-logo {
    width: 8rem; /* Adjust size as needed */
    height: 8rem;
    margin-bottom: 1rem;
    border-radius: 0 0 1.5rem 1.5rem; /* Circular bottom corners */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  }
  
  .cover-title {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5); /* Add shadow to text */
  }
  
  .cover-description {
    font-size: 1.25rem;
    margin: 0.5rem 0 0;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5); /* Add shadow to text */
  }
  
  /* Responsive Styles for Photo Cover */
  @media (max-width: 48rem) {
    .photo-cover {
      height: 20rem; /* Adjust height for smaller screens */
    }
  
    .cover-logo {
      width: 6rem;
      height: 6rem;
    }
  
    .cover-title {
      font-size: 2rem;
    }
  
    .cover-description {
      font-size: 1rem;
    }
  }
  
 /* Main Page Styles */
.main-page {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3.125rem 1.25rem;
    background-color: #e3f2fd; /* Light blue */
    position: relative;
    z-index: 1000; /* Ensure the main page is below the logo */
    margin-top: 2rem; /* Remove the gap between header and main page */
  }
  
  .column-left {
    flex: 1;
    max-width: 50%;
    padding-right: 1.25rem;
  }
  
  .column-left h1 {
    font-size: 2.25rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 1.25rem;
  }
  
  .column-left p {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .column-right {
    flex: 1;
    max-width: 50%;
  }
  
  .column-right img {
    width: 100%;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  
  .cta-buttons .btn {
    display: inline-block;
    margin: 0.625rem 0.625rem 0.625rem 0;
    padding: 0.625rem 1.25rem;
    background: #2196f3; /* Medium blue */
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    transition: background 0.3s;
  }
  
  .cta-buttons .btn:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  /* Responsive Styles for Main Page */
  @media (max-width: 48rem) { /* 768px */
    .main-page {
      flex-direction: column; /* Switch to single column */
      padding: 2rem 1rem; /* Adjust padding for smaller screens */
    }
  
    .column-left,
    .column-right {
      max-width: 100%; /* Full width for single column */
      padding-right: 0; /* Remove padding */
      text-align: center; /* Center-align text */
    }
  
    .column-left h1 {
      font-size: 1.75rem; /* Smaller heading for mobile */
    }
  
    .column-left p {
      font-size: 1rem; /* Smaller text for mobile */
    }
  
    .cta-buttons .btn {
      display: block; /* Stack buttons vertically */
      margin: 0.625rem auto; /* Center-align buttons */
    }
  }
  
  /* Services Section Styles */
  .services {
    padding: 3.125rem 1.25rem;
    background-color: #e3f2fd; /* Light blue */
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.25rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 2.5rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
  }
  
  .service-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  
  .service-box h3 {
    font-size: 1.5rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 0.9375rem;
  }
  
  .service-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.25rem;
  }
  
  .service-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #2196f3; /* Medium blue */
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    transition: background 0.3s;
  }
  
  .service-btn:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  /* Footer Styles */
  footer {
    background: #1976d2; /* Dark blue */
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 2.5rem;
  }
  
  footer .social-media a {
    color: #fff;
    margin: 0 0.625rem;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  footer .social-media a:hover {
    color: #90caf9; /* Light blue */
  }
  
  /* Service Details Section Styles */

  .services {
    background-color: #1976d2;
  }

  .services h2 {
    color: #fff;
  }

  .service-details {
    padding: 3.125rem 1.25rem;
    background-color: #e3f2fd; /* Light blue */
    text-align: center;
  }
  
  .service-details h2 {
    font-size: 2.25rem;
    color: #ffffff; /* Dark blue */
    margin-bottom: 2.5rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .service-detail-box {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-detail-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  
  .service-detail-box img {
    width: 100%;
    height: 15rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
  }
  
  .service-detail-box h3 {
    font-size: 1.5rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 0.9375rem;
  }
  
  .service-detail-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Resource Grid Styles */
  .resources {
    padding: 3.25rem 1.25rem; 
    min-height: 50vh; 
    background-image: url('photos/Templates.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    text-align: center;
    color: #fff; 
  }
  
  .resources h2 {
    font-size: 2.25rem;
    color: #fff; /* White text for better contrast */
    margin-bottom: 1.25rem;
  }

  .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    padding: 6.25rem 2.25rem;
    margin: 2rem;
  }
  
  .resource-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .resource-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  
  .resource-box h2 {
    font-size: 1.5rem;
    margin: 0 0 0.625rem;
    color: #1976d2; /* Dark blue */
  }
  
  .resource-box p {
    font-size: 1rem;
    color: #555;
    margin: 0 0 1.25rem;
  }
  
  .download-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #2196f3; /* Medium blue */
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  .download-btn i {
    margin-left: 0.3125rem;
  }
  
  /* Contact Section Styles */
.contact {
    padding: 3.125rem 1.25rem;
    background-color: #e3f2fd; /* Light blue */
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.25rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 1.25rem;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 75rem;
    margin: 0 auto;
    gap: 1.25rem;
  }
  
/* Contact Form Styles */
.contact-form {
    flex: 1;
    max-width: 48%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  
  .contact-form label {
    display: block;
    margin: 0.625rem 0 0.3125rem;
    font-weight: bold;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 90%;
    padding: 0.625rem;
    margin-bottom: 0.625rem;
    border: 1px solid #ddd;
    border-radius: 0.3125rem;
    font-size: 1rem;
    font-family: Arial, sans-serif; /* Ensure consistent font */
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999; /* Light gray for placeholders */
    font-family: Arial, sans-serif; /* Ensure consistent font */
    font-size: 0.875rem; /* Smaller font size for placeholders */
    vertical-align: middle; /* Align placeholders vertically */
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 6.25rem; /* Set a minimum height for the textarea */
  }
  
  .contact-form button {
    padding: 0.625rem 1.25rem;
    background: #2196f3; /* Medium blue */
    color: #fff;
    border: none;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  .contact-info-box {
    flex: 1;
    max-width: 48%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .contact-info-box h3 {
    font-size: 1.5rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 1.25rem;
  }
  
  .contact-info-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.625rem;
  }
  
  .contact-info-box strong {
    color: #333;
  }
  
  /* Responsive Styles for Contact Section */
  @media (max-width: 48rem) {
    .contact-form,
    .contact-info-box {
      max-width: 100%;
    }
  
    .contact-container {
      flex-direction: column;
    }
  }

  /* Resource Page Styles */
.resource-page {
    padding: 3.125rem 1.25rem;
    background-color: #e3f2fd; /* Light blue */
    text-align: center;
  }
  
  .resource-page h1 {
    font-size: 2.25rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 1.25rem;
  }
  
  .resource-page p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 2.5rem;
  }
  
  .download-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
  }
  
  .download-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .download-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  
  .download-item h2 {
    font-size: 1.5rem;
    color: #1976d2; /* Dark blue */
    margin-bottom: 0.9375rem;
  }
  
  .download-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.25rem;
  }
  

  /* Resource Grid Styles */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr)); /* Adjust min width */
    gap: 1.25rem;
    padding: 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
  }
  
  .resource-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    padding: 1rem; /* Reduced padding */
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .resource-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
  
  .resource-box h2 {
    font-size: 1.25rem; /* Smaller font size */
    color: #1976d2; /* Dark blue */
    margin-bottom: 0.625rem;
  }
  
  .resource-box p {
    font-size: 0.875rem; /* Smaller font size */
    color: #555;
    margin-bottom: 1rem;
  }
  
  .download-btn {
    display: inline-block;
    padding: 0.5rem 1rem; /* Smaller padding */
    background: #2196f3; /* Medium blue */
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-size: 0.875rem; /* Smaller font size */
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  .download-btn i {
    margin-left: 0.3125rem;
  }
  
  /* Responsive Styles for Resource Grid */
  @media (max-width: 48rem) {
    .resource-grid {
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); /* Smaller min width for mobile */
    }
  
    .resource-box h2 {
      font-size: 1.125rem;
    }
  
    .resource-box p {
      font-size: 0.8125rem;
    }
  
    .download-btn {
      padding: 0.5rem 0.875rem;
      font-size: 0.8125rem;
    }
  }

  /* Hidden Boxes */
.resource-box.hidden {
    display: none;
  }
  
  /* More/Less Button */
  .more-btn {
    display: block;
    margin: 1.25rem auto;
    padding: 0.625rem 1.25rem;
    background: #2196f3; /* Medium blue */
    color: #fff;
    border: none;
    border-radius: 0.3125rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .more-btn:hover {
    background: #1e88e5; /* Darker blue */
  }
  
  .more-btn i {
    margin-left: 0.3125rem;
  }

  /* Visitor Counter Container */
.visitor-counter {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    border-radius: 1.5rem; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    font-family: 'Arial', sans-serif; /* Modern font */
    font-size: .5rem; /* Medium font size */
    font-weight: bold; /* Bold text */
    color: #fff; /* White text */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 1px; /* Slight letter spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  }
  
  /* Hover Effect */
  .visitor-counter:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
  }
  
  /* Visitor Count Number */
  .visitor-counter span {
    color: #ffd700; /* Gold color for the number */
    font-size: 1.5rem; /* Slightly larger font size */
    margin-left: 0.5rem; /* Space between text and number */
  }