/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3498db; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3498db; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3498db; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  display: flex;
  justify-content: flex-start; /* Aligns everything to the left */
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.left-content {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 20px; /* Space between logo and button */
}

.logo img {
  height: 50px; /* Adjust size as needed */
  margin-right: 10px; /* Space between logo image and text */
}

.sitename {
  font-size: 1.5rem; /* Adjust as needed */
  color: #333; /* Adjust color as needed */
}

.btn-getstarted {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  margin-left: 20px; /* Space between site name and button */
}

.btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header {
    flex-direction: column;
    align-items: center;
  }
  .btn-getstarted {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(blue);
  background-color: var(black);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(blue), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(blue), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(black);
  border-color: var(black);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
  margin-top: 20px;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: whitesmoke;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.card h2 {
  margin-top: 10px;
  font-size: 18px;
  color: #007acc;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card:hover h2 {
  color: #001320;
}

      /* Basic reset */
      * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }

      /* Full-page container for the overlay */
      .search-container {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.8);
          justify-content: center;
          align-items: center;
          z-index: 1000;
      }

      /* Full-width search bar */
      .search-bar {
          width: 80%;
          max-width: 600px;
          padding: 15px;
          font-size: 18px;
          border: none;
          border-radius: 5px;
      }

      /* Close button styling */
      .close-btn {
          position: absolute;
          top: 20px;
          right: 20px;
          color: #fff;
          font-size: 24px;
          cursor: pointer;
      }

      /* Open button styling */
      .open-btn {
          padding: 10px 20px;
          font-size: 16px;
          cursor: pointer;
          background-color: #333;
          color: #fff;
          border: none;
          border-radius: 5px;
      }

/* Contact Buttons */
.contact-buttons {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 15px;
padding-bottom: 10px;
}

.contact-buttons a {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: var(--contrast-color);
background-color: var(--accent-color);
padding: 10px 20px;
border-radius: 50px;
font-size: 16px;
font-family: var(--default-font);
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-buttons a:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button Specific */
.whatsapp-button {
background-color: #25D366;
}

.whatsapp-button:hover {
background-color: #1da857;
}

/* Gmail Button Specific */
.gmail-button {
background-color: #D44638;
}

.gmail-button:hover {
background-color: #a6362d;
}
.card-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-email,
.btn-whatsapp {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  color: #fff;
}

.btn-email {
  background-color: #3498db;
}

.btn-email:hover {
  background-color: #2980b9;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
}

.btn-email i,
.btn-whatsapp i {
  margin-right: 8px;
}
