/* ------------------- Global ------------------- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  font-family: 'Alumni Sans Pinstripe', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Alumni Sans Pinstripe';
  src: url('AlumniSansPinstripe-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}

@font-face {
  font-family: 'Roboto';
  src: url('roboto.woff2') format('woff2');
  font-weight: 200; /* normal weight */
  font-style: normal; /* normal style */
  font-size: 24px;
}

h2, h3 {
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  margin-top: 30px;
  color: #29a7b8;
}

h2 {
font-size: 48px;
}

h2 {
font-size: 36px;
}

p {
font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #000000;
  margin: 5px; /* adds space above and below the paragraph */
  line-height: 1.6; /* improves readability */
}

a {
font-family: 'Roboto', sans-serif;
  font-size: 24px;
  margin: 5px; /* adds space above and below the paragraph */
  line-height: 1.6; /* improves readability */
  color: #29a7b8;
}

.highlight {
    color:#29a7b8;
    font-weight: 600;
    font-size: 48px;
}

a.tel-link {
  color: #29a7b8;
  text-decoration: none;
  font-weight: bold;
}

/***************************if logged in***************************/

#ifadminloggedin {
    color: #ffffff;
    position: fixed;
    bottom: 0;
    z-index: 1000000;
    width: 100%;
    background-color: #ff0000;
    text-decoration: none;
    font-size: 24px;
    line-height: 40px; /* vertical alignment */
    text-align: center;
}

#ifadminloggedin a{
color: #ffffff;
font-size: 24px;
}

/***************************login page***************************/
.login {
vertical-align: text-top;
float: left;
width: 47%; 
height: auto; 
padding: 10px; 
}

#cust_login_error {
padding:5px;
border:#e50000 1px solid;
color:#e50000;
background-color:#ffe5e5;
width:95%; 
margin-bottom: 5px;
display:none;
}

.existing_login {
width: 100%; 
border:#e50000 1px solid; 
padding:5px;
}

.recover {
border:#e50000 1px solid; 
background-color:#ffe5e5;
padding:5px;
width: 100%; 
margin-top: 15px;
}

#fpw_msg {
padding:5px;
border:#324F17 1px solid;
color:#324F17;
background-color:#F0FFF0;
width:95%; 
margin-bottom: 5px;
display:none;
}

#fpw_error {
padding:5px;
border:#e50000 1px solid;
color:#e50000;
background-color:#ffffff;
width:95%; 
margin-bottom: 5px;
display:none;
} 

.create_container {
vertical-align: text-top;
float: right;
width: 47%; 
height: auto; 
padding: 10px; 
margin-right: 12px;
}

.create {
border:#e50000 1px solid; 
padding: 5px;
width: 100%; 
}

#cust_signup_error {
padding:5px;
border:#e50000 1px solid;
color:#e50000;
background-color:#ffe5e5;
width:95%; 
margin-bottom: 5px;
display:none;
}

.only_small_screen {
display: none;
}

/***************************contact form***************************/
/* Form container */
.contactform {
max-width: 800px;
  margin: 40px auto;
  padding: 20px 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Title */
.contactform h1 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Business info */
.contactform ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}

.contactform li {
  margin: 3px 0;
}

/* Feedback messages */
#err_msg_contact, 
#success_msg_contact, 
#err_msg_contact_bot, 
#success_msg_contact_bot, 
#icon_processing {
  display: none;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
}

#err_msg_contact, #err_msg_contact_bot {
  background-color: #ffe5e5;
  border: 1px solid #e50000;
  color: #e50000;
}

#success_msg_contact, #success_msg_contact_bot, #icon_processing {
  background-color: #F0FFF0;
  border: 1px solid #324F17;
  color: #324F17;
}

/* Flex form layout */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* reCAPTCHA container */
.captcha_input_container {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

/* Button */
.button {
  background-color: #29a7b8;
  color: white;
  border: none;
  padding: 10px 0;
  width: 160px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #218997;
}

#btn_contactus {
  text-align: center;
}

/* ------------------- Horizontal Menu ------------------- */
/* Menu container */
.menu_div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: transparent;
  z-index: 1000;
}

/* Logo */
.menu_div img {
  max-height: 60px;
  height: auto;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
}

.hamburger a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 36px !important;
}

/* ------------------- Dropdown Menu ------------------- */
.dropdown {
  display: none; /* hidden by default */
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #29a7b8;
  text-align: center; /* center all text */
  z-index: 1000;
}

.dropdown.show {
  display: flex;
}

/* Main links and buttons */
.dropdown > a,
.dropdown > button,
.dropdown > .parent > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  min-height: 40px;
  font-size: 36px; /* control font size here */
  font-weight: bold;
  padding: 0 20px;
  margin: 0;
  color: white;
  background-color: transparent;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Parent with submenu */
.parent {
  flex-direction: column;
}

/* Submenu container */
.parent .submenu {
  display: flex; /* open by default on mobile */
  flex-direction: column;
  background-color: #3eafbf;
}

/* Submenu links */
.parent .submenu a {
  min-height: 40px;
  font-size: 36px;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: bold;
  padding: 0 20px;
  margin: 0;
  color: white;
  background-color: #3eafbf;
  text-decoration: none;
}

/* Show submenu when parent has "open" class */
.parent.open .submenu {
  display: flex;
}

/* Gradient button inside dropdown */
.dropdown button.gradient-button {
  height: 40px;
  padding: 0 20px;
  font-size: 30px !important; /* control button font size */
  line-height: 1;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto; /* center button */
  appearance: none;
  border: none;
  outline: none;
  background: linear-gradient(135deg, #29a7b8, #29a7b8, #ffffff);
  background-size: 300% 300%;
  animation: gradientShift 5s ease-in-out infinite;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Wave */
.menu_wave {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

/****************************** Header *****************************/
.header_container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.header_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: white;
  width: 100%;
  z-index: 0;
}

.header_content h1 {
  font-size: 64px;
  font-family: 'Alumni Sans Pinstripe', Arial, sans-serif;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  z-index: 0;
}

.header_content p {
  font-size: 42px;
  color: white !important;
  font-family: 'Alumni Sans Pinstripe', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: -10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  z-index: 0;
}

p .premium {
  color: #29a7b8;
  text-shadow: 0 0 8px white, 0 0 16px white !important;
}

.gradient-button {
  display: inline-flex; /* keeps it just as wide as the content + padding */
  align-items: center;
  justify-content: center;

  padding: 10px;
  font-size: 36px !important;
  line-height: 1;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: bold;

  background: linear-gradient(135deg, #29a7b8, #29a7b8, #ffffff);
  background-size: 300% 300%;
  animation: gradientShift 5s ease-in-out infinite;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  cursor: pointer;

  border: none;
  outline: none;

  /* remove any automatic width */
  width: 220px;
  margin: 0; /* remove auto centering if you want exact width */
}

/* ------------------- Main Content ------------------- */

.pagetitle {
  width: 90vw;
  margin: 150px auto 30px auto;
  display: flex;
  align-items: center; /* keeps lines vertically centered with text */
  justify-content: center;
  text-align: center;
  flex-wrap: nowrap; /* prevent lines from wrapping */
}

.pagetitle h1 {
  color: #29a7b8;
  font-size: 48px;
  margin: 0;
  white-space: normal; /* allows text to wrap inside the h1 */
  flex: 0 1 auto; /* allow wrapping without overflow */
  max-width: 70%; /* keeps space for side lines */
  word-break: break-word;
}

/* Lines */
.pagetitle::before,
.pagetitle::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #29a7b8;
  display: block;
  min-width: 30px;
}

.pagetitle::before {
  margin-right: 20px;
}

.pagetitle::after {
  margin-left: 20px;
}

.main-content {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep inner content left-aligned */
  text-align: left; /* text remains left-aligned */
  margin: 0 auto 30px auto; /* centers the div horizontally */
}

/* ------------------- Lists ------------------- */
ol {
list-style-position: inside;
list-style-type: decimal;
margin-top: 10px;
padding: 0px 0px 5px 0px;
font-size: 24px;
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #000000;

}

ul {
  list-style-position: outside;
  list-style-type: disc;
  margin-top: 10px;
  padding: 0 0 5px 30px; /* reduce this to move bullet closer to text */
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #000000;
}

/* ------------------- Content Area 1 ------------------- */

/* Outer container spans full viewport width */
.content1-outer-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.content1-outer-container h2 {
  margin-top: 30px;
  color: #29a7b8;
  font-size: 60px;
  margin: 20px 0;
}

/* Inner container centered with max width */
.content1-inner-container {
  width: calc(100% - 16vw); /* 8vw margins each side */
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Each box: stacked vertically on mobile */
.content1-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}

.content1-box img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.content1-box p {
  margin: 0;
  line-height: 1.2;
  max-width: 240px;
  font-size: 24px !important;
}

/* ------------------- Content Area 2 ------------------- */

.content2-outer-container {
  width: 100vw;
  margin: 0 auto;
  padding: 30px 20px;
  background: linear-gradient(to bottom right, white, white 70%, #29a7b8);
  text-align: center;
  color: white;
  box-sizing: border-box;
}

.content2-outer-container h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #29a7b8;
  text-align: center;
  position: relative;
  display: inline-block;
  max-width: 1600px;
}

/* Container must center the inline heading */
.content2-outer-container {
  text-align: center;
}

/* White lines on both sides */
.content2-outer-container h2::before,
.content2-outer-container h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px; /* adjust length */
  height: 2px;
  background-color: #29a7b8;
}

/* Left line */
.content2-outer-container h2::before {
  left: -120px; /* adjust spacing from text */
  transform: translateY(-50%);
}

/* Right line */
.content2-outer-container h2::after {
  right: -120px; /* adjust spacing from text */
  transform: translateY(-50%);
}

.content2-outer-container p {
  line-height: 1.2;
  margin: 0 auto 15px auto; /* center the block and add bottom margin */
  max-width: 1600px;
  text-align: center; /* text centered inside the block */
  font-size: 24px;
}

.content2-outer-container a {
  color: #29a7b8;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 540; /* medium */
  font-size: 24px;
}

.content2-outer-container a:hover {
  text-decoration: underline;
}

/* ------------------- Image Grid Container ------------------- */
.content2-image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Each Image Box */
.content2-image-box {
  position: relative;
  flex: 1 1 100%; /* mobile: full width */
  max-width: 380px; /* optional */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

/* Image styling */
.content2-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Text overlay */
.content2-image-box .image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px; /* smaller on mobile */
  font-weight: bold;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  width: 100%;
}

/* ------------------- Content Area 3 ------------------- */
.content3-outer-container {
  width: 100%; /* full screen width for background */
  padding: 40px 0;
  background: linear-gradient(to top right, white, white 70%, #29a7b8);
  box-sizing: border-box;
  text-align: center;
}

/* Heading with side lines */
.content3-outer-container h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #29a7b8;
  position: relative;
  display: inline-block;
}

/* White lines on both sides */
.content3-outer-container h2::before,
.content3-outer-container h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background-color: #29a7b8;
}

.content3-outer-container h2::before {
  left: -120px;
  transform: translateY(-50%);
}

.content3-outer-container h2::after {
  right: -120px;
  transform: translateY(-50%);
}

/* Inner content */
.content3-inner {
  width: 80vw;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* stacked on mobile */
  gap: 30px;
  box-sizing: border-box;
}

/* Each display centre: text above map on mobile */
.content3-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content3-item p {
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.content3-item iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* ------------------- Contact Area 1 ------------------- */
.contact1-outer-container {
  width: 100%; /* full screen width for background */
  padding: 40px 0;
  box-sizing: border-box;
  text-align: center;
}

/* Heading with side lines */
.contact1-outer-container h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #29a7b8;
  position: relative;
  display: inline-block;
}

/* White lines on both sides */
.contact1-outer-container h2::before,
.contact1-outer-container h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;       /* length of the line */
  height: 2px;
  background-color: #29a7b8;
  transform: translateY(-50%);
}

.contact1-outer-container h2::before {
  left: -180px;        /* reduce distance from text */
}

.contact1-outer-container h2::after {
  right: -180px;       /* reduce distance from text */
}

/* Text styling */
.contact-highlight {
  font-size: 28px;
  color: #29a7b8;
  font-weight: bold;
}

/* Each contact item container */
.contact1-item {
  margin-top: 30px;
}


.contact1-text p {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
}

.contact1-text a {
  color: #29a7b8;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 540;
  font-size: 24px;
}

.contact1-text a:hover {
  text-decoration: underline;
}

/* Map container */
.contact1-map iframe {
  flex: 0 0 auto;                /* map keeps its size */
  width: 380px;                  /* map width */
  height: 300px;                 /* map height */
  border: 0;
  border-radius: 10px;
  margin-top: 30px;
}

/* ------------------- Footer ------------------- */
.footer {
  position: relative;
  width: 100%;
  background: url('../files/footer-pattern.png') repeat-x top left;
  color: white;
  padding: 20px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  top: 100px; /* adjust to match image height */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #29a7b8;
  z-index: -1;
}

/* Top row: button + Facebook icon */
.footer-top {
  display: flex;
  flex-direction: column; /* stacked on small screens */
  align-items: center;
  gap: 10px;
}

/* Download button */
.footer-btn {
  height: 40px; /* keep height fixed */
  padding: 0 30px; /* only horizontal padding, remove vertical padding */
  font-size: 30px !important;
  font-weight: bold;
  line-height: 1;
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto; 
  appearance: none;
  border: none;
  outline: none;
  /* Gradient only on blue tones */
  background: linear-gradient(135deg, #29a7b8, #29a7b8, #29a7b8);
  background-size: 300% 300%;
  animation: gradientShift 5s ease-in-out infinite;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Facebook icon */
.footer-icon {
  width: 40px;
  height: 40px;
}

/* Links row */
.footer-links {
  display: flex;
  flex-wrap: wrap; /* wrap links on small screens */
  justify-content: center;
  gap: 5px;
  font-size: 24px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Copyright */
.footer-copy {
  font-size: 20px;
  font-weight: bold;
}


















/* ------------------- Desktop ------------------- */
@media screen and (min-width: 1005px) { 
    /* Hide hamburger on desktop */ .hamburger { display: none; } /* Menu container: logo left, menu right */ 
    .menu_div { 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 60px; 
        padding: 0 30px; 
        background: transparent; 
        z-index: 1000; } 
    
    .menu_div img { 
        max-height: 60px; 
        margin-top: -10px; } /* Dropdown container inside menu_div */ 

.dropdown {
    display: flex !important;   /* override mobile display:none */
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; /* align items left within dropdown */
    gap: 0px;
    margin: 0; 
    margin-top: -10px;
    flex-wrap: nowrap; 
    position: relative; 
    top: auto;
    width: max-content;          /* shrink to fit content */
    padding: 0 10px;             /* optional padding inside dropdown */
    background-color: transparent;
}

/* Ensure main links and button align vertically in the menu */
  .dropdown > a,
  .dropdown > button,
  .dropdown > .parent > a {
    height: 60px;                /* match menu_div height */
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown > a:hover,
  .dropdown > button:hover,
  .dropdown > .parent > a:hover {
    transform: scale(1.05); /* slight zoom */
  }

  /* Submenu stays below parent */
  .parent .submenu {
    position: absolute;
    top: 100%;
    left: 0;
  }

/* Gradient button inside dropdown */
.dropdown button.gradient-button {
  font-size: 28px !important; /* control button font size */
  width: 150px;
}
  
/* Parent container for submenu */
  .parent {
    position: relative;  /* submenu absolute relative to this */
  }

 /* Submenu */
.submenu {
  display: none;
  position: absolute;  /* absolute relative to parent */
  top: 100%;           /* directly below parent */
  left: 0;
  flex-direction: column; /* vertical stacking */
  background-color: #7ecad4;
  min-width: 150px;
  width: max-content;
  z-index: 999;
  display: flex; /* use flex so flex-direction works */
  flex-wrap: nowrap;
}

/* Hide by default */
.parent .submenu {
  display: none;
}

/* Show on hover */
.parent:hover .submenu {
  display: flex; /* must be flex to keep vertical layout */
}

/* Submenu links */
.submenu a {
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 28px !important;
  text-align: left;
}

/* Hover effect */
.submenu a:hover {
  background-color: #29a7b8;
}
  
  /****************************** Header *****************************/
.header_container {
  position: relative;
  width: 100%;
  
}

.header_content h1 {
  font-size: 140px;
}

.header_content p {
  font-size: 80px;
}

.premium {
  color: #18646e;
}

.gradient-button {
  appearance: none;
  border: none;
  outline: none;

  /* Remove fixed height to let padding control button size */
  height: auto;

  /* Padding: vertical | horizontal */
  padding: 10px 40px; /* taller left/right than top/bottom */

  font-size: 36px !important; /* force font size to apply */
  line-height: 1; /* prevent vertical stretching */
  font-family: 'Alumni Sans Pinstripe', sans-serif;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  background: linear-gradient(135deg, #29a7b8, #29a7b8, #ffffff);
  background-size: 300% 300%;
  animation: gradientShift 5s ease-in-out infinite;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.gradient-button:hover {
  transform: scale(1.05); /* slight zoom */
}

 /****************************** Content 1 *****************************/
.content1-inner-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .content1-box {
    flex: 1 1 calc(25% - 20px);
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    max-width: 400px;
  }

  .content1-box img {
    width: 160px;
    margin-bottom: 0;
    margin-right: 15px;
  }

  .content1-box p {
    font-size: 30px;
    line-height: 1.1;
  }

/****************************** Content 2 *****************************/
  .content2-outer-container h2 {
  font-size: 60px;
}

.content2-image-box .image-text {
  font-size: 60px;
}
  
/****************************** Content 3 *****************************/
 
   .content3-outer-container h2 {
  font-size: 60px;
}

    .content3-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }

  /* Sections 1 & 2 */
  .content3-item {
    flex: 1 1 calc(50% - 10px); /* 2 per row */
    flex-direction: column; /* keep text above map */
  }

  .content3-item p {
    flex: 1;
    text-align: center;
    font-size: 30px;
  }

  .content3-item iframe {
  flex: 0 0 auto; /* don’t stretch */
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  }
  
/* Group sections 3 & 4 */
  .group-34 {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /****************************** Contact Area 1 *****************************/

/* Outer container */
.contact1-outer-container {
  width: 80vw;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
  text-align: center;
}

/* Flex container for all items */
.contact1-inner {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap onto new lines */
  gap: 40px;
  justify-content: center; /* Centers the individual items */
  align-items: flex-start;
  padding: 0 10px; /* Add slight padding for very small screens */
}

/* Each contact item container */
.contact1-item {
  display: flex;                 /* enable flex layout */
  flex-direction: row;           /* row layout by default */
  flex-wrap: wrap;               /* allow wrapping on smaller screens */
  justify-content: center;       /* center content horizontally */
  align-items: flex-start;       /* align text and map to top */
  gap: 20px;                     /* spacing between text and map */
  box-sizing: border-box;
  padding: 20px;                 /* inner padding */
  width: 100%;                   /* let item fill parent container */
  max-width: 400px;              /* prevent overflow */
  margin-top: 0px;
}

/* Each contact item's inner content (stacked) */
.contact1-content {
  display: flex;
  flex-direction: column-reverse; /* Map on top, text below */
  justify-content: center;         /* Center content within .contact1-item */
  align-items: center;             /* Center horizontally */
  gap: 20px;                       /* Spacing between map and text */
  max-width: 400px;
}

/* Text container inside each item */
.contact1-text {
  flex: 1 1 auto;                /* text takes remaining space */
  text-align: center;
  min-width: 200px;              /* optional: minimum width for readability */
  height: 260px;
}

/* Map container */
.contact1-map iframe {
 margin-top: 0px;
}

}