body {
    margin:0;
    font-family: "Poppins", sans-serif;
    height: 100vh;
    overflow-y: auto;
}

nav {
    background-color:#002c2e;
    padding: 10px 20px;
    justify-content: space-between;
    display:flex;
    position:fixed;
    top:0;
    width:100%;
    z-index:100;
    box-sizing: border-box;
}

nav .logo img{
    height:55px;
}

nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

nav .menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav .menu a:hover {
    background-color: #00d6b2;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3 ease-in-out, color 0.3s ease-in-out;
}

.services-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba (0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    top: 100%;
}

.dropdown-content a {
    color: #000000 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #ffffff !important;
    border-radius: 0px !important;
}

.services-dropdown:hover .dropdown-content {
    display: block; 
}

.content {
    margin-top: 82px;
    padding: 1%;
    flex-grow: 1;
    background: #ffffff;
    min-height: calc(100vh - 75px - 60px);
    box-sizing: border-box;
}
/* ----------------------------------------------------- Home Page --------------------------------------------------------------- */
.hero {
  position:relative;
  height: 85vh;
  overflow: hidden;
  margin-top: 1rem;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

.carousel-img.active {
  display: block;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.buttons {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  gap: 1.5em;
  flex-wrap: wrap;
}

.buttons a {
  background-color: #0c2c2c;
  color: white;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.buttons a:hover {
  background-color: #00d6b2;
}



/* ----------------------------------------------------- Home Page --------------------------------------------------------------- */
/* ----------------------------------------------------- About Us Page --------------------------------------------------------------- */
  .about-us-main-content {
    /* Adjust max-width and padding to match your site's container */
    max-width: 1100px;
    margin: 0 auto; /* Centers the content */
    padding: 40px 20px; /* Add padding top/bottom and sides */
    background-color: var(--neutral-white); /* Ensures white background */
    color: #333; /* Default text color */
}

.about-us-main-content h1,
.about-us-main-content h2,
.about-us-main-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8em;
}
 .about-us-main-content h1 { /* Style for the main page title */
     text-align: center;
     font-size: 2.5em; /* Adjust size as needed */
     margin-bottom: 1em;
 }

.about-us-main-content p {
    margin-bottom: 1em;
    line-height: 1.6;
}
 .about-us-main-content .intro-paragraph {
     text-align: center;
     font-size: 1.1em;
     max-width: 800px;
     margin: 0 auto 40px auto; /* Center and add bottom margin */
     color: #555;
 }


.about-us-main-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-us-main-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* --- Button Styles (Updated to match screenshot) --- */
.btn { /* General button styling */
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text) !important; /* Use !important sparingly, ensures override */
    padding: 10px 25px; /* Adjust padding */
    border: none;
    border-radius: 5px;
    font-size: 0.95em; /* Adjust size */
    font-weight: bold;
    /* text-transform: uppercase; */ /* Removed uppercase based on screenshot */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none !important; /* Remove underline from button links */
    line-height: 1.5; /* Ensure text vertical alignment */
}

.btn:hover {
    background-color: var(--button-hover-bg);
    color: var(--button-hover-text) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Optional: Add arrow like in screenshot */
.btn::after {
    content: ' →'; /* Add space before arrow */
    font-weight: bold;
    margin-left: 5px;
}

/* Secondary button style (optional, if needed elsewhere) */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-light) !important;
    border: 2px solid var(--primary-light);
    padding: 8px 23px; /* Adjust padding slightly because of border */
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--neutral-white) !important; /* Change text to white on hover */
    border-color: var(--primary-light);
}
.btn-secondary::after {
    content: ''; /* Remove arrow for secondary */
    margin-left: 0;
}


/* --- Section Styling --- */
.content-section {
    padding: 50px 0;
    border-top: 1px solid #eee; /* Use top border for separation */
}
 .content-section:first-of-type {
     border-top: none; /* Remove border above the first section */
     padding-top: 20px; /* Adjust padding if needed */
 }

.content-section.bg-light {
     background-color: #f8f8f8; /* Very light grey for subtle contrast */
     /* Adjust padding for background sections if needed */
     margin-left: -20px; /* Extend bg to container edges */
     margin-right: -20px;
     padding-left: 20px;
     padding-right: 20px;
}

.content-section.bg-dark {
    background-color: var(--primary-dark);
    color: var(--text-dark-bg);
     /* Adjust padding for background sections */
     margin-left: -20px; /* Extend bg to container edges */
     margin-right: -20px;
     padding-left: 20px;
     padding-right: 20px;
     border-top: none; /* Dark bg provides enough separation */
}
 .content-section.bg-dark h2, .content-section.bg-dark h3 {
     color: var(--primary-light);
 }
.content-section.bg-dark p {
    color: rgba(255, 255, 255, 0.9);
}


/* --- Specific Section Layouts --- */
.two-column {
    display: flex;
    gap: 40px;
    align-items: center;
}

.two-column .column {
    flex: 1;
}

.two-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for two-column layout */
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
        text-align: center;
    }
    .two-column img {
        margin-bottom: 20px;
    }
    /* Adjust background sections on mobile if needed */
    .content-section.bg-light, .content-section.bg-dark {
        margin-left: -10px; margin-right: -10px; padding-left: 10px; padding-right: 10px;
    }
}

/* --- Services List --- */
.services-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0; /* Add margin top */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.services-list li {
    background-color: var(--neutral-white);
    color: var(--primary-dark);
    padding: 25px; /* Increase padding */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee; /* Subtle border */
}

.services-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.15);
}

.services-list h3 {
    margin-top: 0;
    color: var(--primary-dark);
    font-size: 1.2em; /* Slightly larger */
    border-left: 4px solid var(--accent-color); /* Thicker border */
    padding-left: 15px;
    margin-bottom: 15px; /* Space below heading */
}
 /* Adjustments for services list on dark background */
 .content-section.bg-dark .services-list { margin-top: 0; } /* Remove margin if bg provides separation */
 .content-section.bg-dark .services-list li {
    background-color: #003f42; /* Slightly lighter than main dark bg */
    color: var(--neutral-white);
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
 }
 .content-section.bg-dark .services-list h3 {
     color: var(--primary-light);
     border-left-color: var(--neutral-white);
 }
 .content-section.bg-dark .services-list p { color: rgba(255, 255, 255, 0.85); }

#bonus-p {
margin-left: 1%;
}

/* --- Mission & Vision --- */
.mission-vision {
    text-align: center;
    padding: 40px 0;
}
.mission-vision .two-column { align-items: flex-start; } /* Align tops */

.mission-vision h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}

.mission-vision p {
    /* font-style: italic; */ /* Removed italic */
    font-size: 1.1em; /* Adjusted size */
    max-width: 800px;
    margin: 0 auto 1em auto;
    color: var(--text-light-bg);
}
.content-section.bg-dark .mission-vision p {
    color: var(--text-dark-bg);
}
/* Adjust mission/vision in dark mode if needed */
 .content-section.bg-dark .mission-vision h3 { color: var(--neutral-white); }


/* --- Final Call to Action --- */
.final-cta {
    text-align: center;
    padding: 40px 20px; /* Use container padding */
    /* Optional: Add a background like bg-light or a specific color */
    /* background-color: #e0f7f6; */ /* Example light accent background */
}
.final-cta h2 { font-size: 1.8em; } /* Adjust size */
.final-cta p { max-width: 600px; margin-left: auto; margin-right: auto; }


/* ----------------------------------------------------- About Us Page --------------------------------------------------------------- */



/* ----------------------------------------------------- Services Page --------------------------------------------------------------- */
.section {
  max-width: 1200px;
  margin: auto;
}

.heading-text {
  margin-top: 1%;
  text-align: center;
}

h2 {
  color: #002c2e;
}
.hero {
  text-align: center;
}

.columns {
  margin-top: 2rem;
}

.card {
  position: relative;
  display: flex;
  margin-bottom: 2%;
  background: white;
  border: 2px solid #dddddd;
  border-radius: 12px;
  padding: 2%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card img {
  width: 400px;
  height: auto;
}

#cybersecurity-card-info, #installations-card-info {
  margin-left: 2%;
  flex: 1;
}

#maintenance-card-info, #leasing-rental-card-info {
  margin-right: 2%;
  flex: 1;
}

.info-btn button {
  background-color: #57b9b1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  width: 150px;
  height: auto;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.info-btn button:hover {
  background-color: #3d827c;
}

#info-btn-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

#info-btn-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.highlight {
  background-color: #e0f8f6;
  border-left: 6px solid #00d6b2;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 8px;
}

/* ----------------------------------------------------- Services Page --------------------------------------------------------------- */



/* ----------------------------------------------------- Security and Testing Page --------------------------------------------------------------- */











/* ----------------------------------------------------- Security and Testing Page --------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.service-card h4 {
  color: var(--primary-color);
  margin: 20px;
  font-size: 1.4em;
}
.service-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  flex-grow: 1;
}
.service-desc.open {
  max-height: 500px;
  margin-bottom: 20px;
}
.service-desc p,
.service-desc ul {
  margin: 10px 0;
}
.service-desc ul li {
  margin-left: 20px;
  list-style-type: disc;
}
.service-card button {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.service-card button:hover {
  color: var(--primary-color);
}

#security-services .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: 1.1em;
}


/* ----------------------------------------------------- Maintenance Page --------------------------------------------------------------- */










/* ----------------------------------------------------- Maintenance Page --------------------------------------------------------------- */



/* ----------------------------------------------------- Installations Page --------------------------------------------------------------- */
.installations-main-content h1 {
  text-align: center;
  color: var(--primary-dark);
  font-size: 2.5em; /* Adjust size as needed */
  margin-bottom: 0.5em;
}
.installations-main-content h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5em;
  margin-top: 0; /* Reset top margin for card context */
}
.installations-main-content h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5em;
}

.installations-main-content .intro-paragraph {
  text-align: center;
  font-size: 1.15em; /* Slightly larger intro */
  max-width: 850px;
  margin: 0 auto 50px auto; /* Center and add bottom margin */
  color: #555;
  line-height: 1.6;
}

/* --- Button Styles (ensure these are defined in your main CSS) --- */
.btn {
 display: inline-block;
 background-color: var(--button-bg);
 color: var(--button-text) !important;
 padding: 10px 25px;
 border: none;
 border-radius: 5px;
 font-size: 0.95em;
 font-weight: bold;
 cursor: pointer;
 transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
 text-decoration: none !important;
 line-height: 1.5;
 margin-top: 15px; /* Add space above button in cards */
}
.btn:hover {
 background-color: #00d6b2;
 color: #000000 !important;
 text-decoration: none !important;
 transform: translateY(-2px);
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn::after {
 content: ' →';
 font-weight: bold;
 margin-left: 5px;
}

/* --- Installation Categories Layout (CSS Grid) --- */
.installation-categories {
 display: grid;
 /* Creates responsive columns: min 300px wide, max 1fr (fills space) */
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px; /* Space between cards */
 margin-bottom: 50px; /* Space below the grid */
}

/* --- Service Card Styling --- */
.service-card {
 background-color:#dddddd ;
 border: 1px solid var(--card-border);
 border-radius: 8px;
 padding: 30px;
 box-shadow: darkgrey;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 display: flex; /* Use flexbox for internal alignment */
 flex-direction: column; /* Stack content vertically */
}

.service-card:hover {
 transform: translateY(-8px); /* More pronounced lift */
 box-shadow: var(--card-hover-shadow);
}

.service-card h2 {
 font-size: 1.4em;
 border-bottom: 2px solid var(--accent-color); /* Accent line under heading */
 padding-bottom: 10px;
 margin-bottom: 15px;
}

.service-card p {
 line-height: 1.7; /* Slightly more line spacing */
 color: #444;
 flex-grow: 1; /* Allows paragraph to push button down */
}

.card-icon {
 font-size: 2.5em; /* Size for icon */
 color: #000000; /* Icon color */
 margin-bottom: 15px;
 /* Placeholder style - replace with actual icon element */
 height: 40px; /* Ensure space even without icon */
 line-height: 40px;
 font-weight: bold;
 /* background-color: #eee; // Temporary background for placeholder */
 /* width: 40px; text-align: center; border-radius: 50%; */
}

/* --- Final CTA & Background Section Styles (ensure defined in main CSS) --- */
.content-section { /* Used by CTA */
 padding: 50px 0;
}
.bg-light {
  background-color: #000000;
  /* Adjust padding/margin if needed for full-width feel within container */
  margin: 0 -20px; /* Assumes container padding is 20px */
  padding: 50px 20px;
}
.final-cta {
 text-align: center;
}
.final-cta h2 { font-size: 1.8em; color: var(--primary-dark); }
.final-cta p { max-width: 600px; margin-left: auto; margin-right: auto; color: #555; margin-bottom: 25px;}

 /* --- NEW: Image Section Styling --- */
 .image-section {
  margin: 60px 0; /* Add space above and below the image */
  text-align: center; /* Center the image */
}
.image-section img {
  max-width: 75%; /* Make image responsive */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: match card corner rounding */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); }/* Optional: add some shadow */

/* ----------------------------------------------------- Installations Page --------------------------------------------------------------- */





/* ----------------------------------------------------- Leasing and rental Page --------------------------------------------------------------- */
.hero-dlm {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.hero-dlm h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero-dlm p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.section {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color);
}
.section:last-child {
  border-bottom: none;
}

.section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2em;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}

.feature-text, .feature-image {
  flex: 1;
  min-width: 300px;
}

.feature-image img {
  display: flex;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0,1);
}

.image-placeholder {
  background-color: #f0f0f0;
  border: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  min-height: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  font-style: italic;
}

.image-divider {
  padding: 40px 0;
  text-align: center;
  background-color: #ffffff; 
}

.divider-image-style {
  display: block; 
  margin: 0 auto; 
  max-width: 700px; 
  width: 80%;       
  height: auto;     
  border-radius: 8px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

@media (max-width: 768px) {
  .divider-image-style {
      width: 90%; 
      max-width: 500px; 
  }
   .image-divider {
      padding: 30px 0; 
  }
}

.feature-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: center;
}

.benefit-item {
  background-color: var(--background-light);
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefit-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.cta-button:hover {
  background-color:  #00d6b2;
  color: var(--text-light);
  transform: scale(1.05);
}

.cta-section {
  background-color: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .hero-dlm h1 {
      font-size: 2em;
  }
  .section h2 {
      font-size: 1.8em;
  }
  .feature {
      flex-direction: column;
  }

  .feature:nth-child(odd) .feature-image,
  .feature:nth-child(odd) .feature-text,
  .feature:nth-child(even) .feature-image,
  .feature:nth-child(even) .feature-text {
      order: 0;
  }
  .feature-image {
       margin-bottom: 20px;
  }
}  

/* ----------------------------------------------------- Leasing and rental Page --------------------------------------------------------------- */




/* ----------------------------------------------------- Careers Page --------------------------------------------------------------- */
#careers-content{
  padding: 0;
}



.title-div {
  text-align: center;
  background-color: #e0e0e0;
  margin: 0;
  height: 200px;
  align-content: center;
}

.title-div h1 {
  font-size: 50px;
  margin: 0;
}

.title-div p {
  font-size: 25px;
}


.careers-images {
  display: flex;
  justify-content: space-between;
  padding: 1%;
}

.careers-images img {
  height: auto; 
  width: 49.5%;
  object-fit: cover;
}

.careers-subheading {
  padding: 0 0 0 1%;
}


.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin: 48px 0 16px;
  color: #002c2e;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 48px;
  color: #3d827c;
}

.jobs-container {
  margin-bottom: 20px; 
  padding: 0 1%;
}

.job-card {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden; /* To contain the floated icons */
}

.collapsible-header.job-header {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapsible-header.job-header:hover {
  background-color: #3d827c;
  color: #ffffff;
}

.collapsible-header.job-header:hover .collapse-icons i {
  color: #ffffff;
}

.job-title {
  font-size: 1.2em;
  margin: 0;
}

.plus-icon,
.minus-icon {
  margin-left: 10px;
  font-size: 1em;
  color: #555;
}

.collapsible-content.job-description {
  padding: 15px;
  background-color: #fff;
  display: none; 
}

.job-description p {
  line-height: 1.6;
  margin-bottom: 10px;
}


/* ----------------------------------------------------- Careers Page --------------------------------------------------------------- */




/* ----------------------------------------------------- Contact Page --------------------------------------------------------------- */
#contact-h1, #apply-h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #333
}

/* Contact & Application Forms */
form {
  max-width: 700px;
  margin: 2rem auto;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

form h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #333;
}

form div,
form fieldset {
  margin-bottom: 1.2rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="file"],
form textarea,
form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
}

.checkbox-group input {
  margin-right: 0.5rem;
}

form fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
}

form fieldset legend {
  font-weight: 600;
  color: #333;
  padding: 0 0.5rem;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#submit-form-button, #apply-button {
    background-color: #0c2c2c;
    color: white;
    padding: 1em 2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
    border: none;
  border-radius: 8px;
  cursor: pointer;
}

#submit-form-button:hover, #apply-button:hover {
  background-color: #00d6b2;
}









/* ----------------------------------------------------- Contact Page --------------------------------------------------------------- */




/* --------------------------------------------------------- Footer ------------------------------------------------------------------- */

footer {
    background-color:#002c2e;
    color:#FFFFFF;
    padding: 1% 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-around; 
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    width: 30%;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-section a:hover {
  color: #00d6b2;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 20px
}