/* CSS Document */
/* Basic Reset */
@import url("https://use.typekit.net/frz4pbs.css");
.intro ul {

}

header {
        border-bottom: 2px solid white; /* 2px thick white border */
    }

body {
    font-family: stevie-sans, sans-serif;
}

/* Navigation Bar Styling */
/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E121B;
    padding: 20px 20px;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative; /* Needed for dropdown positioning */
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: block; /* Ensures the link takes up the whole area */
}

.nav-links a:hover {
    color: #98CB41;
    background-color: #333; /* Darken the background on hover */
}

/* Dropdown container styles */
.dropdown {
    list-style: none;
    position: relative;
}

/* Hide dropdown by default */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1E121B;
    min-width: 200px;
    top: 100%; /* Position it below the parent item */
    left: 0;
    z-index: 1;
    text-align: left;
    padding: 0;
}

/* Show the dropdown when hovering over the parent */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for dropdown links */
.dropdown-content a {
    color: white;
    padding: 3px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #333; /* Darken on hover */
    color: #98CB41; /* Highlight the link */
}

/* Mobile menu toggle (hamburger icon) */
.menu-toggle {
    display: none; /* Initially hidden, shown only in mobile view */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 4px;
}

/* Main Content + Global Styles */
/* Global Styles */
body {
    font-family: stevie-sans, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a[href^="mailto:"] {
    color: #333;
    text-decoration: none;
}

a[href^="mailto:"]:hover {
    color: #7aa033;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') center/cover no-repeat;
    background-color: #1E121B;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
   	font-size: 3.5rem;
    margin-bottom: 15px;
	font-family: "stevie-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	color: white;
	text-transform: capitalize;
}

.hero h2 {
   	font-size: 3rem;
    margin-bottom: 15px;
	font-family: "stevie-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	color: white;
}

.hero .btn {
	display: inline-block;
	margin-top: 15px;
    padding: 12px 24px;
    background: #98CB41;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.hero .btn:hover {
    background: #7aa033;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
	color: #1E121B;
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.intro .btn {
	display: inline-block;
	margin-top: 15px;
    padding: 12px 24px;
    background: #98CB41;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.intro .btn:hover {
    background: #7aa033;
}

/* Consultation Section */
.consultation {
	text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.consultation h2 {
	text-align: center;
	font-size: 2rem;
    margin-bottom: 10px;
	color: #1E121B;
}
.consultation ul {
 	list-style: none;
  	padding-left: 0;
	align-items: left;
	margin-bottom: 0px;
}

.consultation li {
	position: relative;
	margin-bottom: 15px;
}

.consultation li::before {
  	content: "✔";
	padding-right: 15px;
  	color: #98CB41;
  	font-weight: bold;
}

.consultation p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.consultation h4 {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
	padding-top: 10px;
}


/* Testimonial Section */
.testimonials {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial {
    background: #98CB41;
    padding: 20px;
    margin: 20px auto;
    border-left: 5px solid #1E121B;
    max-width: 600px;
    font-style: italic;
	color: #1E121B;
}

/* Services/Features Section */
.services {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* About Page Styling */
/* Hero Section for About Page */
.hero-secondarypage {
  background-color: #1E121B; /* Or use a background image if you'd like */
  color: white;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-secondarypage h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "stevie-sans", sans-serif;
}

.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #1E121B;
  font-family: stevie-sans, sans-serif;
}

.about-page h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
}

.about-page h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #98CB41;
}

.about-page p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-page blockquote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid #98CB41;
  color: #333;
}

.about-differentiators ul {
  list-style: none;
  padding-left: 0;
}

.about-differentiators li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-differentiators li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #98CB41;
  font-weight: bold;
}

.closing-line {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #1E121B;
}

/* Services page styling */
/* Hero Section */
.hero-services {
  background-color: #1E121B; /* Or use a background image if you'd like */
  color: white;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-services h1 {
   	font-size: 3.5rem;
    margin-bottom: 15px;
	font-family: "stevie-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	color: white;
	text-transform: capitalize;
}

.hero-services h2 {
   	font-size: 3rem;
    margin-bottom: 15px;
	font-family: "stevie-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	color: white;
}

/* Services Section */
.services-page {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.services-page h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1E121B;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1E121B;
}

.service ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.service ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #666;
}

.service p {
    font-size: 1rem;
    color: #666;
}

/* Call-to-Action Section */
.cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.cta .btn {
	display: inline-block;
	margin-top: 15px;
    padding: 12px 24px;
    background: #98CB41;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.cta .btn:hover {
    background-color: #7aa033;
}

/* Contact Page Styling */
.contacts {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.contact-list {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact {
	background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.contacts h2 {
	font-size: 3rem;
    margin-bottom: 15px;
	font-family: "stevie-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
}

/* Footer Styling */
.site-footer {
  background-color: #1E121B;
  color: white;
  padding: 40px 20px;
  font-family: stevie-sans, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
  min-width: 280px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 7px;
}

.footer-slogan {
  font-size: 0.85rem;
  margin-bottom: 15px;
  max-width: 280px;
	font-style: italic;
	text-align: center;
}

.copyright {
	font-size: 0.7rem;
	font-style: italic;
	max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.social-icon:hover img {
  opacity: 0.8;
}

.footer-right {
  	flex: 2;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
  	min-width: 280px;
	margin-left: 150px;
}

.footer-menu {
  	display: flex;
  	gap: 40px;
  	flex-wrap: wrap;
  	align-items: flex-start; /* Ensures all column headers align to the top */
}

.footer-section h4 {
 	font-size: 1rem;
  	margin-bottom: 10px;
  	color: #98CB41;
  	line-height: 1.4;
  	min-height: 2.8em; /* Helps balance the two-line header spacing */
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
}


.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #98CB41;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        position: absolute;
        top: 70px; /* Position below the navbar */
        left: 0;
        background-color: #1E121B;
        padding: 10px;
    }

    /* When the menu is active, display the menu items */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* Mobile Dropdown behavior */
    .dropdown {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .dropdown-content {
        display: none;
        position: static;
        width: 100%;
        background-color: #1E121B;
        text-align: center;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    /* Style for dropdown items in mobile view */
    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
    }

    /* Hover effect for dropdown items */
    .dropdown-content a:hover {
        background-color: #333;
        color: #98CB41;
    }

    /* Mobile Menu Toggle (Hamburger Icon) */
    .menu-toggle {
        display: flex;
        cursor: pointer;
    }

    .menu-toggle span {
        background-color: white;
        height: 3px;
        width: 25px;
        margin: 4px;
    }

    /* Home Hero Section */
    .hero h1, .hero h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 20px;
    }

    /* Home Service List on Mobile */
    .service-list {
        flex-direction: column;
        align-items: center;
    }
/* Services page on Mobile */
    .hero-services {
        padding: 60px 20px;
    }

    .hero-services h1 {
        font-size: 2rem;
    }

    .hero-services h2 {
        font-size: 1.6rem;
    }

    .services-page {
        padding: 40px 20px;
    }

    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .cta {
        flex-direction: column;
        align-items: center;
    }

    .cta .cta-btn {
        margin-bottom: 10px;
    }

	/* About page on Mobile */
	  .hero-about {
    padding: 60px 20px;
  }

  .hero-about h1 {
    font-size: 2rem;
  }

  .about-page {
    padding: 40px 20px;
  }

  .about-page h2 {
    font-size: 1.5rem;
  }

  .about-page p, .about-differentiators li {
    font-size: 1rem;
  }
	
	/* Contact List on Mobile */
    .contact-list {
        flex-direction: column;
        align-items: center;
    }
	
    /* Footer on Mobile */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
	  margin-left: 0;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin-bottom: 10px;
  }

  .footer-slogan, .copyright {
    margin: 0 auto;
  }
}

/* For small screens */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 30px; /* Adjust logo size for small screens */
    }

    .nav-links a {
        font-size: 16px;
    }
}
