

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(44, 62, 80, 0.8); /* Dark semi-transparent background */
  color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
  border-radius: 5px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  color: #ffffff;
  background-color: slategrey;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.dropbtn:hover {
  background-color: #3498db;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ecf0f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 1;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #3498db;
  color: #fff;
}

/* Dropdown Checkbox */
#dropdown-checkbox {
  display: none;
}

#dropdown-checkbox:checked ~ .dropdown-content {
  display: block;
}

/* Banner Section */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('banner-image.jpg') center/cover no-repeat; /* Adjust the banner image */
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 60px; /* Offset for fixed navbar */
  position: relative;
} 
#typing-effect {
    font-size: 3em; /* Adjust font size as needed */
    font-weight: bold;
    color: #f1c40f; /* Bright color for better visibility */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow to create typing effect */
    border-right: 2px solid #f1c40f; /* Cursor effect */
    animation: blink 0.75s step-end infinite; /* Blinking cursor effect */
}
/* Responsive Styling */
@media (max-width: 768px) {
    #animated-heading {
        font-size: 2.5em; /* Slightly smaller font on mobile */
    }
}

@keyframes blink {
    50% {
        border-color: transparent; /* Hide cursor */
    }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.text-content {
  z-index: 2;
  max-width: 600px;
}

.text-content h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: white; /* Bright color for better visibility */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
}

.text-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.text-content button {
  background-color: dimgrey;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  
}

.text-content button:hover {
  background-color: #c0392b;
}

/* Image overlay on desktop */
.image-overlay {
  display: none;
}

.image-overlay img {
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* General Styles for Services Section */
.services {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 20px;
  text-align: center;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

/* Service Items Container */
.service-items {
  overflow: hidden; /* Hide overflow for the scrolling effect */
}

/* Flexbox for Service Scroll */
.service-scroll {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping for desktop view */
  animation: scroll 15s linear infinite; /* Mobile scroll effect */
}

/* Service Item Styles */
.service-item {
  min-width: 300px; /* Minimum width for each service item */
  margin-right: 20px; /* Spacing between items */
  text-decoration: none; /* Remove underline from links */
  color: #333; /* Text color */
  transition: transform 0.3s; /* Transition for hover effect */
}

.service-item:hover {
  transform: scale(1.05); /* Slightly scale up on hover */
}

.service-item img {
  width: 100%; /* Responsive images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners */
}

/* Service Text Styles */
.service-text {
  padding: 10px;
  font-size: 1em; /* Text size */
}

/* Media Queries */
@media (min-width: 768px) {
  /* Desktop Styles */
  .service-scroll {
    animation: none; /* Disable scrolling on desktop */
  }
}

/* Mobile Scroll Animation */
@keyframes scroll {
  from {
    transform: translateX(0); /* Start position */
  }
  to {
    transform: translateX(-100%); /* End position */
  }
}


/* Feedback Section */
.feedback-section {
  margin-top: 40px; /* Added gap between services and feedback section */
  background-color: whi; /* White background for the form */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Padding inside the box */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 600px; /* Maximum width for the section */
  margin: 40px auto; /* Center the section horizontally with gap */
}

/* Header styling */
.feedback-section h2 {
  color: #333; /* Darker text color for the heading */
  margin-bottom: 15px; /* Space below the heading */
  text-align: center;
}

/* Label styling */
.feedback-section label {
  display: block; /* Makes the label take a full line */
  margin-bottom: 5px; /* Space below each label */
  font-weight: bold; /* Bold text for labels */
}

/* Input and textarea styling */
.feedback-section input[type="text"],
.feedback-section input[type="email"],
.feedback-section textarea {
  width: 100%; /* Full width of the parent */
  padding: 10px; /* Padding inside inputs */
  margin-bottom: 15px; /* Space below each input */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 4px; /* Slightly rounded corners */
  font-size: 16px; /* Larger font for better readability */
  transition: border-color 0.3s; /* Smooth transition for focus effect */
}

/* Input focus styling */
.feedback-section input[type="text"]:focus,
.feedback-section input[type="email"]:focus,
.feedback-section textarea:focus {
  border-color: dodgerblue; /* Change border color on focus */
  outline: none; /* Remove default outline */
}

/* Button styling */
.feedback-section button {
  background-color:slategrey; /* Bootstrap primary blue color */
  color: white; /* White text color */
  border: none; /* No border */
  border-radius: 4px; /* Rounded corners */
  padding: 10px 15px; /* Padding around the button */
  cursor: pointer; /* Change cursor to pointer on hover */
  font-size: 16px; /* Button text size */
  transition: background-color 0.3s; /* Smooth background color transition */
}

/* Button hover effect */
.feedback-section button:hover {
  background-color: lightslategrey; /* Darker blue on hover */
}

/* Responsive Layout */
@media (min-width: 768px) {
  .banner-content {
    text-align: left;
    gap: 40px;
  }

  .text-content {
    text-align: left;
    max-width: 50%;
  }

  /* Show overlay image on desktop */
  .image-overlay {
    display: block;
  }

  /* Services Section */
  .service-items {
    flex-direction: row;
    justify-content: center;
  }
  
  .service-item {
    flex: 1;
    max-width: 300px;
  }
}

/* founder */

#about-founder {
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center; /* Center-align text for better readability */
}

/* Founder Profile Styles */
.founder-profile {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center align items vertically */
    flex-direction: column; /* Stack items on smaller screens */
    max-width: 1200px; /* Max width to keep content centered */
    margin: auto; /* Center the section */
}

.founder-photo {
    width: 100%;
    max-width: 300px; /* Limit photo size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make the photo circular */
    margin-bottom: 20px; /* Space below the photo */
}

.founder-details {
    padding: 0 20px; /* Add some padding to the text */
}

/* Heading Styles */
h2 {
    font-size: 2em; /* Larger font for the section heading */
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5em; /* Slightly smaller font for the founder name */
    margin: 10px 0;
}

/* Paragraph Styles */
p {
    line-height: 1.6; /* Improve readability */
    margin: 10px 0;
}
.founder-subtitle {
    font-size: 1.2em; /* Font size for the subtitle */
    color: #777; /* Gray color for the subtitle */
    margin-bottom: 20px; /* Space below the subtitle */
}

/* Responsive Styles */
@media (min-width: 768px) {
    .founder-profile {
        flex-direction: row; /* Arrange items in a row on larger screens */
    }
    
    .founder-photo {
        margin-right: 20px; /* Space between photo and details */
    }
    
    h2 {
        font-size: 2.5em; /* Increase size for larger screens */
    }
    
    h3 {
        font-size: 2em; /* Increase size for larger screens */
    }
}

/* Footer Styling */
.footer {
    background-color: dimgrey; /* Dark background color */
    color: #ffffff; /* White text color */
    text-align: center; /* Center text */
    padding: 12px 0; /* Padding for top and bottom */
    position: relative; /* Relative positioning */
    bottom: 0; /* Align at the bottom of the page */
    width: 100%; /* Full width */
}

.footer-content {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Horizontal padding */
}

.footer p {
    margin: 0; /* Remove default margin */
    font-size: 1rem; /* Font size for copyright text */
}

.social-links {
    margin-bottom: 10px; /* Space below social links */
}

.social-links a {
    display: inline-block; /* Display links as inline-block for better alignment */
    margin: 0 10px; /* Space between links */
    transition: transform 0.3s; /* Transition effect */
}

.social-links a:hover {
    transform: scale(1.1); /* Slightly scale up on hover */
}

/* Social Media Icon Styling */
.social-icon {
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer p {
        font-size: 0.9rem; /* Slightly smaller font on smaller screens */
    }

    .social-links a {
        margin: 0 5px; /* Less space between links on smaller screens */
    }

    .social-icon {
        width: 20px; /* Smaller icon size on mobile */
        height: 20px; /* Smaller icon size on mobile */
    }
}

@media (min-width: 769px) {
    .footer p {
        font-size: 1rem; /* Default font size for larger screens */
    }

    .social-links {
        margin-bottom: 15px; /* More space below social links */
    }
}