/***********************************************
  RESET / BASE
 ***********************************************/
 @import url('https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap');

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

 

.badges {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
}
/* Badges */
.badges img {
  width: 55px;
  height: 55px;
  max-width: 16%;
  border-radius: 10px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.badges img:hover {
  transform: scale(1.1);
  filter: brightness(1.2); /* Slight glow effect */
}
/* Modal Overlay */
.modal-overlay {
  display: none; /* Hidden by default */
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /* Dark semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content img {
  max-width: 50%;
  max-height: 50%;
  border-radius: 20px; /* Optional: Rounded edges */
  animation: fadeIn 0.5s ease-in-out;
}

/* Animation for Modal Image */
@keyframes fadeIn {
  from {
      transform: scale(0.8);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {

  .content-container {
      flex-direction: column;
      text-align: center;
      padding: 1em;
      margin: 0 15px;
      width: 85%;
    
      margin-top: 135px;

      margin-bottom: -65px;
      
  }

  .badges {
      text-align: center;
      margin-bottom: 10px
  }
  .badges img {
      width: 12%;
      height: auto;
  }

  #title-container {
      font-size: 1.2em;
  }
}
 body {
  /* Hide horizontal scroll bars if the pinned sidebar is shifted off screen */
  overflow-x: hidden;
}
 html, body {
   width: 100%;

 }
 
 body {
   font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
   color: #fff;
   background: url('images/Windows-11-default-wallpaper.jpg') no-repeat center center fixed;
   background-size: cover;
   overflow-x: hidden; /* No horizontal scroll */
 }
 @media (max-width: 768px) {
   body {
        overflow-x: hidden;
    }
}
 /***********************************************
   TOP BAR
  ***********************************************/
 .top-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: rgba(0,0,0,0.5);
   padding: 0.8rem 1rem;
 }
 
 .top-bar-left,
 .top-bar-center,
 .top-bar-right {
   flex: 1;
   display: flex;
   align-items: center;
 }
 
 .top-bar-left {
   justify-content: flex-start;
 }
 .top-bar-center {
   justify-content: center;
 }
 .top-bar-right {
   justify-content: flex-end;
 }
 

 .site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* cleaner, subtler shadow */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 /* "Return to" link */
 .return-link {
   text-decoration: none;
   color: #fff;
   font-size: 0.95rem;
   background: rgba(0, 0, 0, 0.5);
   padding: 0.4rem 0.8rem;
   border-radius: 4px;
   transition: background 0.2s ease;
 }
 .return-link:hover {
   background: rgba(255,255,255,0.2);
 }
 /* Fix layout on mobile */
@media (max-width: 768px) {
    .top-bar {
      flex-direction: column;
      text-align: center;
    }
  
    .top-bar-left {
      width: 100%;
      text-align: left;
    }
  
    .return-link {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
      display: none;
    }
  
    .site-title {
      font-size: 1.4rem; /* Slightly smaller title */
    }
  }
  
 /***********************************************
   SITE TITLE
  ***********************************************/
 .site-title {
   font-size: 1.8rem;
   margin: 0;
   font-weight: 600;
   text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
 }
 
 /***********************************************
   HAMBURGER
  ***********************************************/
 .hamburger {
   width: 2.2rem; /* Slightly wider for spacing */
   height: 2rem;
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   cursor: pointer;
   margin-right: 10px; /* Some extra right padding from the edge */
 }
 
 @media (max-width:768px) {
    .hamburger {
        display: none;
    }
 }
 .hamburger span {
   display: block;
   height: 3px;
   background: #fff;
   border-radius: 2px;
 }
/***********************************************
  SECONDARY NAV BAR
***********************************************/
.sub-nav {
  background: rgba(0,0,0,0.5);
  width: 100%;
}
.sub-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/***********************************************
  HOME LINK (LEFT SIDE)
***********************************************/
.sub-nav-home {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  z-index: 11;
}

.sub-nav-home-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.sub-nav-home:hover .sub-nav-home-text {
  opacity: 1;
}


.sub-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  height: 64px;           /* explicit height so items can center */
  align-items: center;     /* vertical centering */
  position: relative;      /* for absolute positioning of menu */
  padding-bottom: 10px;  /* adjust as needed */
}

/* Logo inside Home link — let flex handle positioning */
.sub-nav-logo {
  position: static;     /* ← key fix */
  transform: none;
  flex: 0 0 auto;
}
/* Left image */
.sub-nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* menu is centered horizontally, independent of logo */
.sub-nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5rem;       /* spacing between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Make it responsive */
@media (max-width: 1400px) {
  .sub-nav-menu {
    gap: 6rem; /* slightly less spacing on smaller screens */
  }
}

@media (max-width: 1200px) {
  .sub-nav-menu {
    gap: 4rem;
  }
  
}

@media (max-width: 1000px) {
  .sub-nav-menu {
    gap: 2rem; /* keeps items together, prevents Contact from hitting edge */
  }
}

.sub-nav-menu li {
  position: relative;
}

.sub-nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;

  display: flex;           /* text + icon in a row */
  flex-direction: row;     /* keep icon to the right */
  justify-content: center; /* center text + icon horizontally inside menu item */
  align-items: center;     /* vertical alignment */
  gap: 0.3rem;             /* spacing between text and chevron */
  opacity: 0.95;
  height: 100%;            /* fill nav bar height */
  padding: 0;              /* remove extra padding */
}

.sub-nav-menu a i {
  font-size: 0.8rem;  /* keep chevron small and inline */
  display: inline-flex;
}

.sub-nav-menu a:hover {
  opacity: 1;
}


/***********************************************
  DROPDOWNS
***********************************************/
.dropdown {
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff; /* screenshot uses white */
  border-radius: 14px;
  padding: 1.5rem;
  width: 640px; /* 👈 wide like screenshot */
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  z-index: 999;
}
.has-dropdown:hover .dropdown {
  display: grid;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  background: #f7f7f7;
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.dropdown img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/***********************************************
  RESPONSIVE
***********************************************/
@media (max-width: 900px) {
  /* Keep sub-nav visible and slightly smaller */
  .sub-nav {
    padding: 0 0.5rem;
  }

  .sub-nav-inner {
    height: 50px; /* shrink nav height */
  }

  /* Home link text and logo smaller */
  .sub-nav-home-text {
    font-size: 0.8rem;
  }

  .sub-nav-logo img {
    width: 32px;
    height: 32px;
  }

  .sub-nav-menu {
    gap: 1rem;           /* keep previous mobile gap */
    font-size: 0.8rem;   /* previous mobile font */
    margin-left: 60px;   /* <-- pushes menu away from home/logo */
  }

  /* Dropdown scales to mobile width and single column */
  .dropdown {
    width: 95vw;
    grid-template-columns: 1fr;
    padding: 0.6rem;
  }

  .dropdown a {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

  .dropdown img {
    width: 40px;
    height: 40px;
  }
}

.welcome-left img,
#welcomeCaptionSmall,
#welcomeCaptionLarge {
  transition: opacity 0.5s ease;
}


/* WELCOME BOX CONTAINER */
.welcome-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  gap: 2rem;
  
  max-width: 1200px;
  margin: 3rem auto 2rem auto; /* top | right | bottom | left */
  flex-wrap: wrap;   /* for mobile responsiveness */
}

/* LEFT SIDE */
.welcome-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.welcome-left img {
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  height: auto;
  border: 3px solid #333;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.photo-caption {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.2rem;
  color: #555;
}
.photo-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  color: #222;
}

/* RIGHT SIDE */
.welcome-right {
  flex: 1;
  min-width: 250px;
  padding: 1rem 0;

  display: flex;            /* enable flex layout */
  flex-direction: column;   /* stack children vertically */
  justify-content: space-between; /* push top content up and button down */
  height: 100%;             /* fill parent container */
}
.welcome-right h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  color: #000000; /* blue highlight for attention */
}
.welcome-right p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #5a5858;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(50, 50, 50, 0.4); /* dark transparent */
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* subtle 3D depth */
  
  margin-top: auto;
  align-self: flex-end;
}

.contact-btn .btn-icon {
  margin-left: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.contact-btn:hover {
  background: #0077cc;
  color: #fff;
  transform: translateY(-2px);
}
.tech-banner42 {
  width: 100%;
  height: 100px; /* fits single line */
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tech-banner42 h2 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 900;
  color: transparent; /* text itself invisible */
  -webkit-text-stroke: 0;

  /* Knockout / punch-through effect */
  background: url('images/Windows-11-default-wallpaper.jpg') center / cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  white-space: nowrap; /* ensures single line */

  /* RESPONSIVE FONT SIZE */
  font-size: clamp(2.5rem, 8vw, 5rem); 
  /* min 2.5rem, scales with viewport width (8vw), max 5rem */
}



@media (max-width: 768px) {
  .welcome-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;          /* 🔽 reduce padding */
    gap: 1.2rem;               /* 🔽 reduce vertical gap */
  }

  .welcome-left img {
    max-width: 260px;          /* 🔽 slightly smaller image */
    max-height: 195px;
    margin-bottom: 0.4rem;
  }

  .photo-title {
    font-size: 1.15rem;        /* 🔽 slightly smaller title */
  }

  .photo-caption {
    font-size: 0.85rem;
  }

  .welcome-right {
    padding: 0;                /* 🔽 remove extra vertical padding */
  }

  .welcome-right h2 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;     /* 🔽 tighten spacing */
  }

  .welcome-right p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .contact-btn {
    font-size: 0.85rem;        /* 🔽 smaller button */
    padding: 0.45rem 0.8rem;
  }
}
@media (max-width: 1100px) {
  .welcome-box {
    padding: 1.4rem;
    gap: 1.3rem;
  }

  .welcome-left img {
    max-width: 320px;
    max-height: 240px;
  }

  .photo-caption {
    font-size: 0.85rem;
  }

  .photo-title {
    font-size: 1.15rem;
  }

  .welcome-right h2 {
    font-size: 1.55rem;
  }

  .welcome-right p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
  }
}
/* LEARN MORE LINK */
.learn-more-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0077cc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.learn-more-link:hover {
  color: #005fa3;
  text-decoration: underline;
  transform: translateX(2px);
}
 
/* Photo Grid Wrapper */
.photo-grid-wrapper {
  width: 100%;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop: 5 columns */
  grid-auto-rows: calc(100vw / 5 * 0.66); /* maintain 3:2 ratio */
  gap: 0; /* no gaps */
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Extra photos hidden initially (desktop) */
.photo-grid img.extra {
  display: none;
}

/* Show extra photos when grid is expanded */
.photo-grid.expanded img.extra {
  display: block;
}

/* Show More Button */
.show-more-wrapper {
  text-align: center;
  margin: 1rem 0;
}
#showMoreBtn {
  background: #fff;
  color: #1757b7 !important;       /* force text color */
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
wMoreBtn i {
  color: #000 !important;       /* force icon color */
}
#showMoreBtn:hover {
  background: #f0f0f0;
}


/* Footer Banner */
.footer-banner {
  width: 100%;

  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 2rem;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 2px;
}
/* Footer Banner Text Styling: Embossed Look */
.footer-banner h2 {
  font-family: 'Playfair Display', serif; /* classy, elegant font */
  color: #e0e0e0; /* light gray, not pure white */
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;

  /* Embossed effect */
  text-shadow: 
    1px 1px 1px rgba(0,0,0,0.7),   /* dark shadow bottom-right */
   -1px -1px 1px rgba(255,255,255,0.2); /* light highlight top-left */
}
.footer-banner .footer-icon {
  height: 1em; /* same height as text */
  width: auto;
  vertical-align: middle;
}
/* Scrolling Logo Banner */
.logo-marquee {
  width: 100%;
  overflow: hidden;

  padding: 1rem 0;
}
.logos {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}
.logos img {
  height: 80px;
  object-fit: contain;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */

/* Medium screens: shrink proportionally */
@media (max-width: 1200px) {
  .photo-grid {
    grid-template-columns: repeat(5, 1fr); /* keep 5 columns */
    grid-auto-rows: calc(100vw / 5 * 0.66);
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns for mobile */
    grid-auto-rows: calc(100vw / 4 * 0.66); /* maintain ratio */
  }

  /* Show all photos on mobile */
  .photo-grid img.extra {
    display: block !important;
  }

  /* Hide Show More button */
  .show-more-wrapper {
    display: none;
  }
}



.photostackback {
  background: rgba(0,0,0,0.5);
}
/***********************************************
  HERO (Unchanged from your existing)
***********************************************/
.hero {
    width: 100%;
    min-height: 70vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
  
  .time-date-container {
    text-align: center;
    margin-bottom: 2rem;
  }
  .time {
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
  }
  .date {
    font-size: 1.2rem;
    margin-top: 4px;
    text-shadow: 0 0 2px rgba(0,0,0,0.7);
  }
  





  
  /***********************************************
    WELCOME BOX & SERVICES
  ***********************************************/
  .welcome-box {
    padding: 2rem;
    border-radius: 8px;
    max-width: 1000px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
  }
  @media (max-width: 1200px) {
    .welcome-box {
      max-width: 650px;
    }
  }
  @media (max-width: 1100px) {
    .welcome-box {
      max-width: 600px;
    }
  }
  @media (max-width: 1024px) {
    .welcome-box {
      max-width: 550px;
    }
  }
  .welcome-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .services-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 65px;
    gap: 4rem;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
  }
  






  /***********************************************
    SERVICE ITEM (No rename, just additions)
  ***********************************************/
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* For the clickable cursor on hover: */
    cursor: pointer;
  
    /* Start hidden for the appear effect: */
    opacity: 0;
    transform: translateY(40px);
  }
  /* Hover: Orange glow + noticeable shake on the icon, plus orange text glow */
.service-item:hover {
    transform: scale(1.05); /* Slight overall scale-up */
  }
  
  .service-item:hover .service-icon {
    filter: drop-shadow(0 0 10px orange); /* Orange glow */
    animation: serviceShake 0.5s ease;    /* Trigger the shake */
  }
  
  /* The keyframes for the "noticeable" shake */
  @keyframes serviceShake {
    0%, 100% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(-5px);
    }
    40% {
      transform: translateX(5px);
    }
    60% {
      transform: translateX(-5px);
    }
    80% {
      transform: translateX(5px);
    }
  }
  
  .service-item:hover .service-text {
    color: orange;                /* Text turns orange */
    text-shadow: 0 0 5px orange;  /* Subtle orange glow behind the text */
  }
  /* Once in view, we animate in */
  .service-item-appear {
    animation: serviceSlam 1s ease forwards;
  }
  
  /***********************************************
    SERVICE ICON & TEXT
  ***********************************************/
  .service-icon {
    width: 35px;
    height: 35px;
    position: absolute;
    top: -45px;
    /* Remove circle cropping if any: */
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .service-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    /* Prevent default link style if we used an <a> approach, but here we do data-target */
    text-decoration: none;
    color: #fff;
  }
  
  /***********************************************
    SLAM + SHAKE + GLOW
  ***********************************************/
/* Keep your .service-item-appear class or any references to it, 
   but remove the permanent glow from the final keyframe: */
   @keyframes serviceSlam {
    0% {
      opacity: 0;
      transform: scale(0.6) translateY(40px) rotate(0deg);
      filter: none;
    }
    40% {
      opacity: 1;
      transform: scale(1.15) translateY(-10px) rotate(1deg);
    }
    60% {
      transform: scale(0.95) translateY(0px) rotate(-1deg);
    }
    80% {
      transform: scale(1.02) translateY(0px) rotate(0deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0) rotate(0deg);
      /* Remove permanent glow; set filter to none. */
      filter: none;
    }
  }
/***********************************************
  SIDE PULLOUT TAB
***********************************************/
.side-pullout-tab {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .pullout-handle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  .pullout-handle:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  
/***********************************************
  RIGHT PULL-OUT OVERLAY MENU
***********************************************/
.overlay-menu-58 {
    position: fixed;
    top: 6vh;             /* Leaves top 6% free */
    right: 0;
    height: 94vh;         /* Takes remaining 94% of viewport height */
    width: 400px;         /* Desktop width */
    background: #111;     /* Solid dark background */
    color: #fff;
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(100%); /* Hidden off-screen initially */
    transition: transform 0.4s ease;
    display: flex;        /* So we can push footer to bottom */
    flex-direction: column;
  }
  
  /* Slide in when open */
  .overlay-menu-58.open-58 {
    transform: translateX(0);
  }
  
  /* Content container */
  .overlay-content-58 {
    position: relative;
    padding: 2rem 1.5rem;
    flex: 1;  /* so the footer can be pinned at bottom */
    display: flex;
    flex-direction: column;
  }
  
  /* Overlay heading (underlined) */
  .overlay-title-58 {
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.3rem;
    margin-bottom: 1.2rem;
  }
  
  /* Close "X" at top-right */
  .close-overlay-58 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
  }
  .close-overlay-58:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Nav list */
  .overlay-nav-58 {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;  /* nav grows, pushing footer-list-78 to the bottom */
  }
  .overlay-nav-58 li {
    margin-bottom: 1rem;
  }
  .overlay-nav-58 li a {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    background: #222;
    border-radius: 6px;
    transition: background 0.2s ease;
    border: 1px solid #444;
  }
  .overlay-nav-58 li a:hover {
    background: #333;
  }
  
  /***********************************************
    FOOTER LIST (each item on its own row)
  ***********************************************/
  .footer-list-78 {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
  }
  .footer-list-78 li {
    margin-bottom: 0.8rem;
  }
  
  /* Each footer link / text block */
  .footer-link-78 {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    background: #222;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
    border: 1px solid #444;
  }
  .footer-link-78:hover {
    background: #333;
  }
  
  /***********************************************
    RESPONSIVE TWEAKS
  ***********************************************/
  /* On narrower screens (< 768px), overlay is full width */
  @media (max-width: 768px) {
    .overlay-menu-58 {
      width: 100%;
      right: 0;
      left: 0;
      top: 6vh;
      height: 94vh;
      transform: translateX(100%);
    }
    .close-overlay-58 {
      font-size: 2rem;
    }
    .overlay-nav-58 li a {
      font-size: 1rem;
    }
    .footer-link-78 {
      font-size: 0.95rem;
    }
  }
  
  /***********************************************
    SIDE PULLOUT TAB (Hamburger)
  ***********************************************/
  .side-pullout-tab {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pullout-handle {
    width: 45px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  .pullout-handle:hover {
    background: rgba(0, 0, 0, 0.7);
    width: 28px;
  }
 /***********************************************
  SIDEBAR
***********************************************/
/* Desktop: pinned on the right, always visible >=992px */
.sidebar {
    background: rgba(0, 0, 0, 0.5);
    width: 70%;
    margin-left: auto;
    transform: translateX(110%); /* for smaller screens initially */
    transition: transform 0.3s ease;
    padding: 2rem 1rem;
    box-sizing: border-box;
    position: absolute; /* let it be absolute so it can shift for desktop vs mobile */
    right: 0;
    top: 58.5px; /* aligns under top bar on desktop */
    height: auto;
  }
  
  .sidebar ul {
    list-style: none;
    margin-top: 1rem;
  }
  
  .sidebar ul li {
    margin-bottom: 0.5rem;
  }
  
  .sidebar ul li a {
    display: block;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #333;
    transition: background 0.2s ease;
  }
  
  .sidebar ul li a:hover {
    background: rgba(255,255,255,0.2);
  }
  
  /* The 'open' class we toggle in JS */
  .sidebar.open {
    transform: translateX(0);
  }
  
  .return-to-top {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  
  /* Desktop: show sidebar by default at widths >= 992px */
  @media (min-width: 992px) {
    .sidebar {
      width: 20%;
      transform: none; /* no transform => always visible */
      position: absolute;
      right: 0;
      top: 58.5px;
      height: auto;
    }
  }
  /* Desktop pinned sidebar ≥992px */
@media (min-width: 992px) {
    .sidebar {
      width: 20%;
      transform: none; /* always visible */
      display: block;  /* ensure it's shown on desktop */
      position: absolute;
      right: 0;
      top: 58.5px;
      height: auto;
    }
  }
  
  /* Hide sidebar on mobile <992px entirely */
  @media (max-width: 991px) {
    .sidebar {
      display: none; /* no toggling on mobile => hidden */
    }
  }
  /* For widths below 992px => we want to slide from top */
  @media (max-width: 991px) {
    .sidebar {
      display: none; /* hide by default on mobile */
      width: 100%;
      top: 0;       /* pinned at the top */
      left: 0;      /* pinned at the left edge */
      transform: translateY(-100%); /* slide down from top */
      transition: transform 0.3s ease;
    }
  
    .sidebar.open {
      display: block;
      transform: translateY(0); /* fully visible */
    }
  }

  /* 1) A new class that slides the sidebar out of view */
.sidebar-closed {
  transform: translateX(110%) !important;
  transition: transform 0.3s ease; /* Smooth sliding */
}

/* If you want the sidebar to be hidden entirely, you could do: 
   .sidebar-closed { display: none !important; } 
   But let's keep the slide effect as requested. */

/* The rest of your existing pinned sidebar rules remain the same:
   e.g., .sidebar { position: absolute; right: 0; top: 58.5px; etc. } 
*/
/***********************************************
  LEFT PULL-OUT OVERLAY MENU (v58)
***********************************************/
.overlay-menu-58 {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;            /* Full vertical height */
    width: 400px;            /* Fixed width on desktop */
    background: rgba(0, 0, 0, 0.9); /* #333 with 90% opacity */
    color: #fff;
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(-100%); /* Initially hidden off-screen to the left */
    transition: transform 0.4s ease;
    display: flex;           /* So we can arrange content vertically */
    flex-direction: column;
  }
  
  /* When toggled open */
  .overlay-menu-58.open-58 {
    transform: translateX(0); /* Slide in fully */
  }
  
  /* The container for your content inside the overlay */
  .overlay-content-58 {
    position: relative;
    padding: 2rem 1.5rem;
    flex: 1;                 /* So it grows/shrinks, pushing footer down */
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Left-align the text */
    justify-content: flex-start;
  }
  
  /* Optional heading at top (e.g. "My Hybrid Cloud Lab") */
  .overlay-title-58 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  /* Close (X) button in top-right corner */
  .close-overlay-58 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
  }
  .close-overlay-58:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Overlay nav list styling */
  .overlay-nav-58 {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    width: 100%;
  }
  
  .overlay-nav-58 li {
    margin-bottom: 1rem;
  }
  
  .overlay-nav-58 li a {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(51, 51, 51, 0.9); /* #333 with 90% opacity */
    border-radius: 6px;
    transition: background 0.2s ease;
    border: 1px solid #444;
  }
  
  .overlay-nav-58 li a:hover {
    background: #444; /* Slightly lighter on hover */
  }
  
  /***********************************************
    FOOTER WITH RANDOM '78' SUFFIX
  ***********************************************/
  .footer-78 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #333; /* Solid, distinct from main menu */
    padding: 1rem;
    margin-top: auto; /* Pushes it to the bottom of the overlay */
  }
  
  .footer-left-78,
  .footer-center-78,
  .footer-right-78 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; /* Center within each region by default */
  }
  
  /* If you want them aligned differently: 
  .footer-left-78   { justify-content: flex-start; }
  .footer-center-78 { justify-content: center; }
  .footer-right-78  { justify-content: flex-end; } 
  */
  
  .footer-link-78 {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.9); /* #333 with 90% opacity */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    margin: 0 0.3rem;
  }
  .footer-link-78:hover {
    background: #555;
  }
  .footer-link-79 {
    padding: 0.5rem 1rem;
  }
  .professional-script {
    font-family: 'Great Vibes', cursive;
    font-size: 1.1rem;
    color: #ffffff;
  }
  
  .footer-credit-bg-78 {
    display: inline-block;
    background: #444;
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-shadow: none;
  }
  
  /***********************************************
    RESPONSIVE TWEAKS
  ***********************************************/
  /* On narrower screens (< 768px), make the overlay fill full width. */
  @media (max-width: 768px) {
    .overlay-menu-58 {
      width: 100%;               /* Full screen on mobile */
    }
    .close-overlay-58 {
      font-size: 2rem;
    }
    .overlay-nav-58 li a {
      font-size: 1.05rem;
    }
    .footer-78 {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  /* On wide screens, you can adjust the overlay width or styling as you like */
  @media (min-width: 992px) {
    .overlay-menu-58 {
      width: 400px; /* Enough to see content comfortably on desktop */
    }
  }
 /***********************************************
   NOTIFICATION BOX (Normal flow, extra padding)
  ***********************************************/
 .notification-section {
   padding: 3rem 1rem 2rem 1rem; /* extra top padding so it's clearly below hero */
 }
 .notification-box {
   max-width: 600px;
   background: rgba(0,0,0,0.6);
   border-radius: 8px;
   padding: 1.5rem;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
 }
 .notification-box p {
   margin-right: 10px;
   flex: 1;
   font-size: 0.95rem;
 }
 .close-btn {
   cursor: pointer;
   font-size: 20px;
 }
 

/***********************************************
  DESKTOP ICONS (Attempting a neat vertical column)
***********************************************/
.desktop-icons-19 {
  position: absolute;
  left: 2.5rem;    /* Slightly further from the left edge */
  top: 110px;      /* Lower than before, so not too close to top bar */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;     /* Vertical spacing between icons */
  z-index: 1000; 
  /* On small screens, you might want to hide icons entirely: */
}

/* Each icon has a fixed width, so they align in a single vertical column */
.desktop-icon-19 {
  width: 80px;              /* Enough for icon + text on separate lines */
  display: flex;
  flex-direction: column;
  align-items: center;       /* Center the image & text horizontally */
  cursor: pointer;
  user-select: none;
}

/* Icon image size + spacing */
.desktop-icon-19 img {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;        /* Slightly bigger gap below icon */
}

/* Icon text label */
.icon-label-19 {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

/***********************************************
  OPTIONAL: Hide desktop icons on mobile
***********************************************/
@media (max-width: 768px) {
  .desktop-icons-19 {
    display: none; /* Hide icons on smaller screens if desired */
  }
}
/***********************************************
  GENERIC WINDOW STYLING
***********************************************/
.window-19 {
  position: absolute;
  width: 400px;  /* Default width */
  min-width: 280px;
  height: 300px; /* Default height */
  min-height: 200px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  display: none; /* Hidden by default */
  z-index: 2000; /* Above icons, but below overlay menu if needed */
  resize: none;  /* We'll do a custom handle for resizing */
  overflow: hidden; /* We'll place content in .window-content-19 with its own scroll if needed */
}

/* Title bar */
.window-header-19 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(50,50,50,0.8);
  padding: 0.5rem 1rem;
  cursor: move; /* Indicate draggable region */
}

.window-title-19 {
  font-weight: bold;
  font-size: 1rem;
}

.window-close-19 {
  cursor: pointer;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.1);
  padding: 0 0.5rem;
  border-radius: 4px;
}
.window-close-19:hover {
  background: rgba(255,255,255,0.2);
}

/* Window content area */
.window-content-19 {
  padding: 0.8rem;
  width: 100%;
  height: calc(100% - 40px); /* Subtract header + resize handle */
  overflow: auto; /* Scroll if content is large */
  box-sizing: border-box;
}

/* Resize handle in bottom-right corner */
.window-resize-handle-19 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  cursor: se-resize;
  border-top-left-radius: 4px;
}

/***********************************************
  FILE EXPLORER TABLE
***********************************************/
.file-list-19 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.file-list-19 th, .file-list-19 td {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem;
  text-align: left;
}

.file-list-19 thead {
  background: rgba(255,255,255,0.1);
  font-weight: bold;
}

/***********************************************
  DRAGGING & POSITION PRESETS
***********************************************/
/* We'll open each window in a different position by default. */
#window-prom19 {
  top: 55%;
  left: 50%;
  margin-left: -200px; /* half of 400px width => center horizontally */
}

#window-recycle19 {
  top: 20%;
  left: 45%;
  margin-left: -200px;
}

#window-hardware19 {
  top: 35%;
  left: 60%;
  margin-left: -200px;
}

/* For smaller screens, you may want to adjust or let them overlap. */

/***********************************************
  WELCOME BOX - Move the X inside the box
***********************************************/
#welcome-box-99 {
  position: relative; /* So we can place the X in top-left inside */
}

.close-welcome-99 {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0 0.4rem;
  transition: background 0.2s ease;
}
.close-welcome-99:hover {
  background: rgba(255,255,255,0.2);
}

/***********************************************
  RESPONSIVE (just minor tweaks)
***********************************************/
@media (max-width: 768px) {
  .window-19 {
    width: 90%;
    left: 5%;
    min-width: 200px;
  }
  #window-prom19, #window-recycle19, #window-hardware19 {
    margin-left: 0; /* center logic can be removed on small screens */
  }
}



 
 /***********************************************
   CARDS SECTION
  ***********************************************/
 .cards-section {

    background: rgba(0,0,0,0.5);
   padding: 2rem;
 }
 
 .cards-section h2 {
   text-align: center;
   margin-bottom: 1.5rem;
 }

.cards-section h2 .footer-icon {
  height: 1em;      /* match text height */
  width: auto;      /* preserve aspect ratio */
}
 .cards-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 1rem;
 }
 
 .card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(4px);
   padding: 1rem;
   border-radius: 8px;
   width: 260px;
   text-align: center;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .card:hover {
   cursor: pointer;
   transform: scale(1.03);
   box-shadow: 0 4px 6px rgba(0,0,0,0.3);
 }
 
 .card i {
   font-size: 2rem;
   margin-bottom: 0.5rem;
 }
 
/***********************************************
 FULL-WIDTH SERVICES LAYOUT
***********************************************/
.services-layout {
  width: 100%;
  margin-top: 3rem;
}

/* Each horizontal row */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
}

/* Alternate layout */
.service-row.reverse {
  direction: rtl;
}
.service-row.reverse > * {
  direction: ltr;
}

/* Image column */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text column */
.service-text {
  padding: 4rem;
  max-width: 600px;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-text p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #d6d6d6;
}

/* Learn more */
.service-text a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ec4c4;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.service-text a:hover {
  border-color: #2ec4c4;
}

/***********************************************
 MOBILE (STACKED LIKE SCREENSHOT 2)
***********************************************/
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .service-text {
    padding: 2rem;
  }

  .service-image img {
    max-height: 320px;
  }
}


/***********************************************
 FEATURE GRID (REPLACES CARDS)
***********************************************/
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 2.5rem;
}

/* Reverse alternating rows */
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}

/* Image styling */
.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Text content */
.feature-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.feature-content p {
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 1.2rem;
  max-width: 500px;
}

/* Learn more link */
.learn-more {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #2ec4c4;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.learn-more:hover {
  color: #7efcfc;
  border-color: #7efcfc;
}

/***********************************************
 MOBILE RESPONSIVE
***********************************************/
@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .feature-content h3 {
    font-size: 1.4rem;
  }

  .feature-content p {
    max-width: 100%;
  }
}


 /***********************************************
   DYNAMIC CONTENT
  ***********************************************/
 .dynamic-content {
   background: rgba(0, 0, 0, 0);
   padding: 2rem;
   min-height: 200px;
   position: relative;
 }
 .dynamic-content .tab-info {
    background: rgba(18, 18, 18, 0.5);
   border-radius: 8px;
   padding: 1rem;
   margin: 0 auto;
   max-width: 600px;
   text-align: center;
 }
 .dynamic-content img {
   max-width: 200px;
   max-height: 150px;
   height: auto;
   margin: 1rem 0;
 }
 
 /***********************************************
   MAIN CONTENT
  ***********************************************/


/***********************************************
 ABOUT / CORE VALUES
***********************************************/
.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.core-value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.core-value i {
  font-size: 1.2rem;
  color: #2ec4c4;
}

/***********************************************
 FEATURED IMAGE LINKS
***********************************************/
.featured-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.featured-links img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-links img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .featured-links {
    flex-direction: column;
    align-items: center;
  }
}


 main {
    background: rgba(77, 77, 77, 0.5);
   padding: 2rem;
 }
 
 .content-section {
   margin-bottom: 2rem;
 }
 
 .content-section h2 {
   margin-bottom: 0.5rem;
   border-bottom: 1px solid #555;
   padding-bottom: 0.5rem;
   font-size: 1.3rem;
 }
 
 .content-section p {
   line-height: 1.4;
 }
 




 
/* VIEW GALLERY BUTTON */
.view-gallery-wrapper {
  text-align: center;  /* center horizontally */
  margin-top: 1.5rem;  /* spacing below images */
}

.view-gallery-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(50, 50, 50, 0.7); /* semi-transparent dark background */
  color: #2ec4c4; /* teal/aqua text */
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 0.5rem; /* space between text and icon */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.view-gallery-btn:hover {
  background: rgba(200, 200, 200, 0.3); /* subtle grey highlight on hover */
  color: #2ec4c4; /* keep text same color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}
/***********************************************
  APACHE WEB SERVER SECTION STYLING
 ***********************************************/
 .web-server-section {
    padding: 3rem;
    background: none; /* Removes the black transparent background */
    color: #fff;
    text-align: left;
  }
  
  /* Make the <strong> text orange inside the overview */
  .web-server-overview strong {
    color: orange;
    font-weight: bold;
  }
  
  /* Header - Apache Web Server Logo + Title */
  .web-server-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .web-server-icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  .web-server-title h2 {
    font-size: 1.8rem;
    margin: 0;
  }
  
  .web-server-title p {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  /* Layout for content sections */
  .web-server-content {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  
  /* Overview (Left Side) */
  .web-server-overview {
    flex: 1;
    padding: 1.5rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
  }
  
  /* Hosted Services (Right Side) */
  .web-server-services {
    flex: 1;
    padding: 1.5rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
  }
  
  /* Container for hosted services (renamed to avoid conflicts) */
  .apache-service-list-88 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    overflow-x: hidden; 
  }
  
  /* Each service item, separate from hero classes */
  .apache-service-item-88 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  /* The service icon */
  .apache-service-icon-88 {
    width: 40px;
    height: 40px;
  }
  
  /* The small background container behind each link/text */
  .apache-caption-88 {
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
  }
  
  /* The link itself, no underline, white color */
  .apache-service-link-88 {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }
  
  /* Hover effect: orange glow + subtle shake on the icon */
  .apache-service-item-88:hover .apache-service-icon-88 {
    filter: drop-shadow(0 0 10px orange);
    animation: iconShakeApache 0.4s ease;
  }
  
  /* Keyframes for a small side-to-side shake */
  @keyframes iconShakeApache {
    0%, 100% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(-3px);
    }
    40% {
      transform: translateX(3px);
    }
    60% {
      transform: translateX(-3px);
    }
    80% {
      transform: translateX(3px);
    }
  }
  
  /* Slight scale-up on hover */
  .apache-service-item-88:hover {
    transform: scale(1.05);
  }
  
  /* Configuration Box */
  .web-server-config {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
  }
  
  /* Responsive layout on smaller screens */
  @media (max-width: 768px) {
    .web-server-content {
      flex-direction: column;
    }
  }


/***********************************************
  MYSQL DATABASE SECTION STYLING
 ***********************************************/
 .database-section-89 {
    padding: 3rem;
    background: rgba(40, 40, 40, 0.5);
    color: #fff;
    text-align: left;
    border-radius: 10px;
}

/* Header - MySQL Database Logo + Title */
.database-header-89 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.database-icon-89 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.database-title-89 h2 {
    font-size: 1.8rem;
    margin: 0;
}

.database-title-89 p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Layout for content sections */
.database-content-89 {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

/* Overview (Left Side) */
.database-overview-89 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.9); /* Slightly darker for better contrast */
    border-radius: 10px;
}

/* Purpose (Right Side) */
.database-purpose-89 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.9); /* Matching the overview box */
    border-radius: 10px;
}

/* Configuration Box */
.database-config-89 {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(90, 90, 90, 0.9); /* Darker shade to distinguish */
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .database-content-89 {
        flex-direction: column;
    }
}

/***********************************************
  NETWORK FILE SERVER SECTION STYLING - 72
 ***********************************************/
 .file-server-section-72 {
    padding: 3rem;
    background: none; /* No black background for text */
    color: #fff;
    text-align: left;
}

/* Header - File Server Logo + Title */
.file-server-header-72 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.file-server-icon-72 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.file-server-title-72 h2 {
    font-size: 1.8rem;
    margin: 0;
}

.file-server-title-72 p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Layout for content sections */
.file-server-content-72 {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

/* Overview (Left Side) */
.file-server-overview-72 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
}

/* Implementation (Right Side) */
.file-server-implementation-72 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
}

/* Implementation List */
.implementation-list-72 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.implementation-item-72 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

.implementation-item-72:hover {
    transform: scale(1.05);
}

.implementation-item-72 img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

/* Configuration Box */
.file-server-config-72 {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(77, 77, 77, 0.4);
    border-radius: 10px;
}


/***********************************************
   REMOTE ACCESS & VPN SECTION (MATCHING HOME LAB HIGHLIGHTS)
 ***********************************************/
 .cards-section-92 {
    margin-top: 50px;
    background: rgba(40, 40, 40, 0.6);
    padding: 2rem;
 }

 .cards-section-92 h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.8rem;
 }

 .cards-container-92 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
 }

 .card-92 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 8px;
    width: 260px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
 }

 .card-92:hover {
    cursor: pointer;
    transform: scale(1.03);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
 }

 .card-92 i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
 }

 .card-92 h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
 }

 .card-92 p {
    font-size: 0.95rem;
    opacity: 0.9;
 }
 /***********************************************
   EXTENDED REMOTE ACCESS & VPN - 18
***********************************************/
/* Overall wrapper for the paragraph below the 3 top cards */
.remote-wrapper-18 {
    background: rgba(63, 63, 63, 0.8); /* same dark style as your .cards-section-92 */
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
  }
  
  /* Heading and paragraph, mimicking "Network Architecture" style */
  .remote-wrapper-18 h2 {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: left; /* Left-aligned like Network Architecture */
    color: #fff;
  }
  
  /* The paragraph below the heading */
  .remote-wrapper-18 p {
    line-height: 1.4;
    color: #fff;
    margin-top: 0.8rem;
  }
  
  /* Container for each sub-section: IKEv2, OpenVPN, RDP */
  .remote-sub-sections-18 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
  }
  
  /* Each sub-section card with a heading, icon, bullet points, etc. */
  .remote-sub-18 {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    max-width: 400px;
  }
  .remote-sub-18:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  }
  
  /* Sub-section header with an icon on the left if you prefer */
  .remote-sub-header-18 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .remote-sub-header-18 h3 {
    margin: 0;
    margin-left: 0.7rem;
    font-size: 1.2rem;
    border: none; /* no underlines here */
    color: #fff;
  }
  
  /* 50×50 icons for each sub-section */
  .remote-icon-18 {
    width: 50px;
    height: 50px;
  }
  
  /* Lists inside each sub-section card */
  .remote-sub-18 ul {
    list-style: disc;
    margin-left: 1.2rem;
    margin-top: 0.5rem;
    line-height: 1.4;
  }
  
  /* Example chart/timeline container */
  .remote-chart-18 {
    flex: 1 1 auto;         /* Let it shrink on smaller screens */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    color: #fff;
  }
  

  /* Smaller image styling (50×50 or bigger as needed) */
  .remote-image-18 {
    max-width: 400px;
max-width: 100%; /* Ensures the image never exceeds its container width */
    height: auto;    /* Maintain aspect ratio */
    margin: 1rem 0;
  }
  .remote-chart-18 h4 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #fff;
  }
  .remote-chart-18 p {
    line-height: 1.4;
    margin-top: 0.5rem;
  }

/***********************************************
  PRIVATE LAN/WAN SECTION STYLING - 45
 ***********************************************/
 .lan-wan-section-45 {
    padding: 3rem;
    background: rgba(40, 40, 40, 0.5);
    color: #fff;
    border-radius: 10px;
    margin: 2rem 0;
}

.lan-wan-header-45 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.lan-wan-icon-45 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.lan-wan-title-45 h2 {
    font-size: 1.8rem;
    margin: 0;
}

.lan-wan-title-45 p {
    font-size: 1rem;
    opacity: 0.8;
}

.lan-wan-content-45 {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.network-evolution-45 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
}

.upgrade-timeline-45 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.timeline-item-45 {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}

.timeline-item-45 img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.active-45 {
    border: 2px solid #00ff88;
}

.arrow-45 {
    font-size: 2rem;
    margin: 0 1rem;
}

.network-visual-45 {
    flex: 1;
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
}

.diagram-45 {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin: 1rem 0;
}

.device-grid-45 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.device-category-45 {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

.servers-45 { background: rgba(0, 100, 255, 0.2); }
.workstations-45 { background: rgba(0, 200, 100, 0.2); }
.iot-45 { background: rgba(255, 150, 0, 0.2); }

.wan-integration-45 {
    padding: 2rem;
    background: rgba(50, 50, 50, 0.7);
    border-radius: 10px;
    margin: 2rem 0;
}

.integration-content-45 {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vpn-details-45 {
    flex: 1;
}

.dac-benefits-45 {
    flex: 1;
    text-align: center;
}

.dac-stats-45 {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.stat-45 {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
}

.stat-value-45 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
}

.lan-wan-config-45 {
    margin-top: 2rem;
}

.config-grid-45 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.config-item-45 {
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    text-align: center;
}

.config-item-45 img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

/* Mobile up to 768px */
@media (max-width: 768px) {
    .lan-wan-section-45 {
        padding: 1rem; /* Reduced from 3rem */
        margin: 1rem 0; /* Reduced from 2rem */
    }
    .lan-wan-content-45 {
        gap: 1rem; /* Reduced from 2rem */
        flex-direction: column; /* Column layout on small screens */
    }
    .device-grid-45 {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 0.5rem;
    }
    .device-category-45 img {
        width: 80px !important; /* Reduced from 150px */
        height: 80px !important;
    }
    .upgrade-timeline-45 {
        flex-direction: column; /* Stack timeline vertically */
        gap: 1rem;
    }
    .arrow-45 {
        transform: rotate(90deg); /* Make arrow point downward */
        margin: 0.5rem 0;
    }
    .config-item-45 {
        padding: 0.5rem; /* Reduced from 1rem */
    }
    .diagram-45 {
        max-width: 100%;
        height: auto;
    }
    /* Fix text overflow */
    .device-category-45 span,
    .timeline-item-45 span,
    .stat-label-45 {
        word-break: break-word;
        font-size: 0.9rem;
    }
    /* Prevent fixed width content */
    .lan-wan-icon-45 {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .integration-content-45,
    .dac-stats-45 {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ~~~~~~~~~~~~ PREVENT OVERFLOW AT ~TABLET (769–992px) ~~~~~~~~~~~~ */
@media (min-width: 769px) and (max-width: 992px) {
    /* Let the columns wrap if needed */
    .lan-wan-content-45 {
        flex-wrap: wrap;
    }
    /* Keep images from scaling too large */
    .diagram-45,
    .device-category-45 img {
        max-width: 100%;
        max-height: 200px;
        height: auto;
    }
    /* Slightly smaller gap to avoid borderline overflow */
    .lan-wan-content-45 {
        gap: 1rem;
    }
    .device-grid-45 {
        gap: 0.75rem;
    }
}
.device-category-45 img {
    max-width: 150px;
    height: auto;
}



/***********************************************
  AWS CLOUD SERVICES SECTION STYLING - 63
 ***********************************************/
 .cloud-section-63 {
    padding: 3rem;

    color: #fff;
    border-radius: 10px;
    margin: 2rem 0;
  }
  
  .cloud-header-63 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .cloud-icon-63 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  .cloud-title-63 h2 {
    font-size: 1.8rem;
    margin: 0;
  }
  
  .cloud-title-63 p {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .cloud-content-63 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .services-grid-63 {
    display: grid;
    gap: 1.5rem;
  }
  
  .service-card-63 {
    padding: 1.5rem;
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
    transition: transform 0.2s ease;
  }
  
  .service-card-63:hover {
    transform: translateY(-5px);
  }
  
  .ec2-63 {
    border-left: 4px solid #ff9900;
  }
  
  .storage-63 {
    border-left: 4px solid #00b0f0;
  }
  
  .instance-types-63 {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .instance-63 {
    flex: 1;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    text-align: center;
  }
  
  .architecture-63 {
    padding: 1.5rem;
    background: rgba(60, 60, 60, 0.6);
    border-radius: 10px;
  }
  
  .arch-diagram-63 {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin: 1rem 0;
  }
  
  .integration-points-63 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .integration-63 {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
  }
  
  .cloud-config-63 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .config-block-63 {
    padding: 1.5rem;
    background: rgba(50, 50, 50, 0.7);
    border-radius: 10px;
  }
  
  .monitoring-grid-63 {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
  }
  
  .metric-63 {
    text-align: center;
  }
  
  .metric-value-63 {
    font-size: 1.8rem;
    color: #00ff88;
  }
  
  .skill-development-63 {
    padding: 2rem;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 10px;
  }
  
  .skill-cards-63 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .skill-card-63 {
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .cloud-content-63,
    .cloud-config-63,
    .skill-cards-63 {
      grid-template-columns: 1fr;
    }
    
    .integration-points-63 {
      grid-template-columns: 1fr;
    }
  }

  .service-card-63 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}
.arch-diagram-63 {
    width: 100px;
    height: 100px;
    max-height: none; /* Remove existing max-height */
}
.integration-63 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 0.5rem;
}
.skill-card-63 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
}
/***********************************************
  PKI & ENCRYPTION SECTION STYLING - 84
 ***********************************************/
 .security-section-84 {
    /* Changed from padding: 3rem 0; to give uniform padding like other sections */
    padding: 3rem;
    color: #fff;
}

.security-header-84 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.security-icon-84 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.security-title-84 h2 {
    font-size: 1.8rem;
    margin: 0;
}

.security-title-84 p {
    font-size: 1rem;
    opacity: 0.8;
}

.ca-setup-84 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ca-visual-84 {
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
}

.ca-timeline-84 {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}
.ca-details-84 {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    flex: 1;
    margin: 0 0.5rem;
}
.timeline-step-84 {
    text-align: center;
    padding: 1rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    flex: 1;
    margin: 0 0.5rem;
}

.encryption-grid-84 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.aes-84 {
    padding: 1.5rem;
    background: rgba(40, 80, 120, 0.6);
    border-radius: 10px;
}

.encryption-stats-84 {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
}

.aaa-breakdown-84 {
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
}

.aaa-columns-84 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.aaa-category-84 {
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    text-align: center;
}

.security-config-84 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.config-block-84 {
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
}

.controls-grid-84 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.control-item-84 {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .ca-setup-84,
    .encryption-grid-84,
    .security-config-84 {
      grid-template-columns: 1fr;
    }
    
    .aaa-columns-84,
    .controls-grid-84 {
      grid-template-columns: 1fr;
    }
    
    .ca-timeline-84 {
      flex-direction: column;
      gap: 1rem;
    }
}

/* Encryption Section Images */
.encryption-card-84 img,
.aaa-category-84 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.5rem;
}

/* Certificate Authority Image Sizing */
.ca-visual-84 img {
    width: 300px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

/* OS Compatibility Images */
.compatibility-84 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 1rem;
    display: inline-block;
}
/***********************************************
  MONITORING SECTION STYLING - 77
 ***********************************************/
 .monitoring-section-77 {
    /* Uniform padding similar to other sections */
    padding: 3rem;
    background: rgba(40, 40, 40, 0.6);
    color: #fff;
    text-align: left;
}

.monitoring-header-77 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.monitoring-icon-77 {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.monitoring-title-77 h2 {
    font-size: 1.8rem;
    margin: 0;
}

.monitoring-title-77 p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Main container for all content below the header */
.monitoring-content-77 {
    /* You can keep or adjust as needed */
}

/* Grid for sub-sections (two rows, each row with two columns on desktop) */
.monitoring-grid-77 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Each card within the grid */
.monitoring-card-77 {
    padding: 1.5rem;
    background: rgba(70, 70, 70, 0.6);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

/* Hover effect for each card */
.monitoring-card-77:hover {
    transform: translateY(-5px);
}

/* Icon within each card */
.monitoring-card-77 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    filter: invert(0.8); /* Ensures visibility on dark background */
}

/* Titles inside each card */
.monitoring-card-77 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Adjust text styling inside each card */
.monitoring-card-77 p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Bulleted lists inside each card */
.monitoring-card-77 ul {
    list-style: disc;
    margin-left: 1.5rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .monitoring-grid-77 {
      grid-template-columns: 1fr; /* One column per row on smaller screens */
    }
}

/* FOOTER SECTION (CSS) - 39 */
.footer-39 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    /* Increased padding to enlarge the container */
    padding: 1.2rem 1rem;
    margin-top: 2rem; /* space above footer */
  }
  
  /* Layout containers */
  .footer-left-39,
  .footer-center-39,
  .footer-right-39 {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .footer-left-39 {
    justify-content: flex-start;
  }
  .footer-center-39 {
    justify-content: center;
  }
  .footer-right-39 {
    justify-content: flex-end;
  }
  
  /* Links in the footer */
  .footer-link-39 {
    text-decoration: none;
    color: #fff;
    font-size: 1.05rem;  /* Slightly bigger text */
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    margin: 0 0.3rem; /* Slight spacing around links */
  }
  .footer-link-39:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Credit text with same background styling */
  .footer-credit-bg-39 {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1.05rem;  /* Matches link text size */
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  }
  
  /* Responsive footer adjustments */
  @media (max-width: 768px) {
    .footer-39 {
      flex-direction: column;
      text-align: center;
    }
    .footer-left-39,
    .footer-center-39,
    .footer-right-39 {
      justify-content: center;
      margin: 0.5rem 0;
    }
    .footer-link-39,
    .footer-credit-bg-39 {
      font-size: 0.9rem; /* Slightly larger for mobile than before */
    }
  }

















































































/* Container */

.container {
  margin: 0 auto;
  max-width: calc(100% - 50px);
  width: 1200px;
}

  .container.medium {
      width: 900px;
  }

  @media screen and (max-width: 1680px) {

      .container {
          width: 1200px;
      }

          .container.medium {
              width: 900px;
          }

  }

  @media screen and (max-width: 1280px) {

      .container {
          width: 960px;
      }

          .container.medium {
              width: 720px;
          }

  }

  @media screen and (max-width: 980px) {

      .container {
          width: 100%;
      }

          .container.medium {
              width: 75%;
          }

  }

  @media screen and (max-width: 736px) {

      .container {
          width: 100%;
          max-width: calc(100% - 30px);
      }

          .container.medium {
              width: 100%;
          }

  }

/* Row */

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

  .row > * {
      box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
      margin-bottom: 0;
  }

  .row.aln-left {
      justify-content: flex-start;
  }

  .row.aln-center {
      justify-content: center;
  }

  .row.aln-right {
      justify-content: flex-end;
  }

  .row.aln-top {
      align-items: flex-start;
  }

  .row.aln-middle {
      align-items: center;
  }

  .row.aln-bottom {
      align-items: flex-end;
  }

  .row > .imp {
      order: -1;
  }

  .row > .col-1 {
      width: 8.33333%;
  }

  .row > .off-1 {
      margin-left: 8.33333%;
  }

  .row > .col-2 {
      width: 16.66667%;
  }

  .row > .off-2 {
      margin-left: 16.66667%;
  }

  .row > .col-3 {
      width: 25%;
  }

  .row > .off-3 {
      margin-left: 25%;
  }

  .row > .col-4 {
      width: 33.33333%;
  }

  .row > .off-4 {
      margin-left: 33.33333%;
  }

  .row > .col-5 {
      width: 41.66667%;
  }

  .row > .off-5 {
      margin-left: 41.66667%;
  }

  .row > .col-6 {
      width: 50%;
  }

  .row > .off-6 {
      margin-left: 50%;
  }

  .row > .col-7 {
      width: 58.33333%;
  }

  .row > .off-7 {
      margin-left: 58.33333%;
  }

  .row > .col-8 {
      width: 66.66667%;
  }

  .row > .off-8 {
      margin-left: 66.66667%;
  }

  .row > .col-9 {
      width: 75%;
  }

  .row > .off-9 {
      margin-left: 75%;
  }

  .row > .col-10 {
      width: 83.33333%;
  }

  .row > .off-10 {
      margin-left: 83.33333%;
  }

  .row > .col-11 {
      width: 91.66667%;
  }

  .row > .off-11 {
      margin-left: 91.66667%;
  }

  .row > .col-12 {
      width: 100%;
  }

  .row > .off-12 {
      margin-left: 100%;
  }

  .row.gtr-0 {
      margin-top: 0px;
      margin-left: 0px;
  }

      .row.gtr-0 > * {
          padding: 0px 0 0 0px;
      }

      .row.gtr-0.gtr-uniform {
          margin-top: 0px;
      }

          .row.gtr-0.gtr-uniform > * {
              padding-top: 0px;
          }

  .row.gtr-25 {
      margin-top: -6.25px;
      margin-left: -6.25px;
  }

      .row.gtr-25 > * {
          padding: 6.25px 0 0 6.25px;
      }

      .row.gtr-25.gtr-uniform {
          margin-top: -6.25px;
      }

          .row.gtr-25.gtr-uniform > * {
              padding-top: 6.25px;
          }

  .row.gtr-50 {
      margin-top: -12.5px;
      margin-left: -12.5px;
  }

      .row.gtr-50 > * {
          padding: 12.5px 0 0 12.5px;
      }

      .row.gtr-50.gtr-uniform {
          margin-top: -12.5px;
      }

          .row.gtr-50.gtr-uniform > * {
              padding-top: 12.5px;
          }

  .row {
      margin-top: -25px;
      margin-left: -25px;
  }

      .row > * {
          padding: 25px 0 0 25px;
      }

      .row.gtr-uniform {
          margin-top: -25px;
      }

          .row.gtr-uniform > * {
              padding-top: 25px;
          }

  .row.gtr-150 {
      margin-top: -37.5px;
      margin-left: -37.5px;
  }

      .row.gtr-150 > * {
          padding: 37.5px 0 0 37.5px;
      }

      .row.gtr-150.gtr-uniform {
          margin-top: -37.5px;
      }

          .row.gtr-150.gtr-uniform > * {
              padding-top: 37.5px;
          }

  .row.gtr-200 {
      margin-top: -50px;
      margin-left: -50px;
  }

      .row.gtr-200 > * {
          padding: 50px 0 0 50px;
      }

      .row.gtr-200.gtr-uniform {
          margin-top: -50px;
      }

          .row.gtr-200.gtr-uniform > * {
              padding-top: 50px;
          }

  @media screen and (max-width: 1680px) {

      .row {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          align-items: stretch;
      }

          .row > * {
              box-sizing: border-box;
          }

          .row.gtr-uniform > * > :last-child {
              margin-bottom: 0;
          }

          .row.aln-left {
              justify-content: flex-start;
          }

          .row.aln-center {
              justify-content: center;
          }

          .row.aln-right {
              justify-content: flex-end;
          }

          .row.aln-top {
              align-items: flex-start;
          }

          .row.aln-middle {
              align-items: center;
          }

          .row.aln-bottom {
              align-items: flex-end;
          }

          .row > .imp-xlarge {
              order: -1;
          }

          .row > .col-1-xlarge {
              width: 8.33333%;
          }

          .row > .off-1-xlarge {
              margin-left: 8.33333%;
          }

          .row > .col-2-xlarge {
              width: 16.66667%;
          }

          .row > .off-2-xlarge {
              margin-left: 16.66667%;
          }

          .row > .col-3-xlarge {
              width: 25%;
          }

          .row > .off-3-xlarge {
              margin-left: 25%;
          }

          .row > .col-4-xlarge {
              width: 33.33333%;
          }

          .row > .off-4-xlarge {
              margin-left: 33.33333%;
          }

          .row > .col-5-xlarge {
              width: 41.66667%;
          }

          .row > .off-5-xlarge {
              margin-left: 41.66667%;
          }

          .row > .col-6-xlarge {
              width: 50%;
          }

          .row > .off-6-xlarge {
              margin-left: 50%;
          }

          .row > .col-7-xlarge {
              width: 58.33333%;
          }

          .row > .off-7-xlarge {
              margin-left: 58.33333%;
          }

          .row > .col-8-xlarge {
              width: 66.66667%;
          }

          .row > .off-8-xlarge {
              margin-left: 66.66667%;
          }

          .row > .col-9-xlarge {
              width: 75%;
          }

          .row > .off-9-xlarge {
              margin-left: 75%;
          }

          .row > .col-10-xlarge {
              width: 83.33333%;
          }

          .row > .off-10-xlarge {
              margin-left: 83.33333%;
          }

          .row > .col-11-xlarge {
              width: 91.66667%;
          }

          .row > .off-11-xlarge {
              margin-left: 91.66667%;
          }

          .row > .col-12-xlarge {
              width: 100%;
          }

          .row > .off-12-xlarge {
              margin-left: 100%;
          }

          .row.gtr-0 {
              margin-top: 0px;
              margin-left: 0px;
          }

              .row.gtr-0 > * {
                  padding: 0px 0 0 0px;
              }

              .row.gtr-0.gtr-uniform {
                  margin-top: 0px;
              }

                  .row.gtr-0.gtr-uniform > * {
                      padding-top: 0px;
                  }

          .row.gtr-25 {
              margin-top: -6.25px;
              margin-left: -6.25px;
          }

              .row.gtr-25 > * {
                  padding: 6.25px 0 0 6.25px;
              }

              .row.gtr-25.gtr-uniform {
                  margin-top: -6.25px;
              }

                  .row.gtr-25.gtr-uniform > * {
                      padding-top: 6.25px;
                  }

          .row.gtr-50 {
              margin-top: -12.5px;
              margin-left: -12.5px;
          }

              .row.gtr-50 > * {
                  padding: 12.5px 0 0 12.5px;
              }

              .row.gtr-50.gtr-uniform {
                  margin-top: -12.5px;
              }

                  .row.gtr-50.gtr-uniform > * {
                      padding-top: 12.5px;
                  }

          .row {
              margin-top: -25px;
              margin-left: -25px;
          }

              .row > * {
                  padding: 25px 0 0 25px;
              }

              .row.gtr-uniform {
                  margin-top: -25px;
              }

                  .row.gtr-uniform > * {
                      padding-top: 25px;
                  }

          .row.gtr-150 {
              margin-top: -37.5px;
              margin-left: -37.5px;
          }

              .row.gtr-150 > * {
                  padding: 37.5px 0 0 37.5px;
              }

              .row.gtr-150.gtr-uniform {
                  margin-top: -37.5px;
              }

                  .row.gtr-150.gtr-uniform > * {
                      padding-top: 37.5px;
                  }

          .row.gtr-200 {
              margin-top: -50px;
              margin-left: -50px;
          }

              .row.gtr-200 > * {
                  padding: 50px 0 0 50px;
              }

              .row.gtr-200.gtr-uniform {
                  margin-top: -50px;
              }

                  .row.gtr-200.gtr-uniform > * {
                      padding-top: 50px;
                  }

  }

  @media screen and (max-width: 1280px) {

      .row {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          align-items: stretch;
      }

          .row > * {
              box-sizing: border-box;
          }

          .row.gtr-uniform > * > :last-child {
              margin-bottom: 0;
          }

          .row.aln-left {
              justify-content: flex-start;
          }

          .row.aln-center {
              justify-content: center;
          }

          .row.aln-right {
              justify-content: flex-end;
          }

          .row.aln-top {
              align-items: flex-start;
          }

          .row.aln-middle {
              align-items: center;
          }

          .row.aln-bottom {
              align-items: flex-end;
          }

          .row > .imp-large {
              order: -1;
          }

          .row > .col-1-large {
              width: 8.33333%;
          }

          .row > .off-1-large {
              margin-left: 8.33333%;
          }

          .row > .col-2-large {
              width: 16.66667%;
          }

          .row > .off-2-large {
              margin-left: 16.66667%;
          }

          .row > .col-3-large {
              width: 25%;
          }

          .row > .off-3-large {
              margin-left: 25%;
          }

          .row > .col-4-large {
              width: 33.33333%;
          }

          .row > .off-4-large {
              margin-left: 33.33333%;
          }

          .row > .col-5-large {
              width: 41.66667%;
          }

          .row > .off-5-large {
              margin-left: 41.66667%;
          }

          .row > .col-6-large {
              width: 50%;
          }

          .row > .off-6-large {
              margin-left: 50%;
          }

          .row > .col-7-large {
              width: 58.33333%;
          }

          .row > .off-7-large {
              margin-left: 58.33333%;
          }

          .row > .col-8-large {
              width: 66.66667%;
          }

          .row > .off-8-large {
              margin-left: 66.66667%;
          }

          .row > .col-9-large {
              width: 75%;
          }

          .row > .off-9-large {
              margin-left: 75%;
          }

          .row > .col-10-large {
              width: 83.33333%;
          }

          .row > .off-10-large {
              margin-left: 83.33333%;
          }

          .row > .col-11-large {
              width: 91.66667%;
          }

          .row > .off-11-large {
              margin-left: 91.66667%;
          }

          .row > .col-12-large {
              width: 100%;
          }

          .row > .off-12-large {
              margin-left: 100%;
          }

          .row.gtr-0 {
              margin-top: 0px;
              margin-left: 0px;
          }

              .row.gtr-0 > * {
                  padding: 0px 0 0 0px;
              }

              .row.gtr-0.gtr-uniform {
                  margin-top: 0px;
              }

                  .row.gtr-0.gtr-uniform > * {
                      padding-top: 0px;
                  }

          .row.gtr-25 {
              margin-top: -6.25px;
              margin-left: -6.25px;
          }

              .row.gtr-25 > * {
                  padding: 6.25px 0 0 6.25px;
              }

              .row.gtr-25.gtr-uniform {
                  margin-top: -6.25px;
              }

                  .row.gtr-25.gtr-uniform > * {
                      padding-top: 6.25px;
                  }

          .row.gtr-50 {
              margin-top: -12.5px;
              margin-left: -12.5px;
          }

              .row.gtr-50 > * {
                  padding: 12.5px 0 0 12.5px;
              }

              .row.gtr-50.gtr-uniform {
                  margin-top: -12.5px;
              }

                  .row.gtr-50.gtr-uniform > * {
                      padding-top: 12.5px;
                  }

          .row {
              margin-top: -25px;
              margin-left: -25px;
          }

              .row > * {
                  padding: 25px 0 0 25px;
              }

              .row.gtr-uniform {
                  margin-top: -25px;
              }

                  .row.gtr-uniform > * {
                      padding-top: 25px;
                  }

          .row.gtr-150 {
              margin-top: -37.5px;
              margin-left: -37.5px;
          }

              .row.gtr-150 > * {
                  padding: 37.5px 0 0 37.5px;
              }

              .row.gtr-150.gtr-uniform {
                  margin-top: -37.5px;
              }

                  .row.gtr-150.gtr-uniform > * {
                      padding-top: 37.5px;
                  }

          .row.gtr-200 {
              margin-top: -50px;
              margin-left: -50px;
          }

              .row.gtr-200 > * {
                  padding: 50px 0 0 50px;
              }

              .row.gtr-200.gtr-uniform {
                  margin-top: -50px;
              }

                  .row.gtr-200.gtr-uniform > * {
                      padding-top: 50px;
                  }

  }

  @media screen and (max-width: 980px) {

      .row {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          align-items: stretch;
      }

          .row > * {
              box-sizing: border-box;
          }

          .row.gtr-uniform > * > :last-child {
              margin-bottom: 0;
          }

          .row.aln-left {
              justify-content: flex-start;
          }

          .row.aln-center {
              justify-content: center;
          }

          .row.aln-right {
              justify-content: flex-end;
          }

          .row.aln-top {
              align-items: flex-start;
          }

          .row.aln-middle {
              align-items: center;
          }

          .row.aln-bottom {
              align-items: flex-end;
          }

          .row > .imp-medium {
              order: -1;
          }

          .row > .col-1-medium {
              width: 8.33333%;
          }

          .row > .off-1-medium {
              margin-left: 8.33333%;
          }

          .row > .col-2-medium {
              width: 16.66667%;
          }

          .row > .off-2-medium {
              margin-left: 16.66667%;
          }

          .row > .col-3-medium {
              width: 25%;
          }

          .row > .off-3-medium {
              margin-left: 25%;
          }

          .row > .col-4-medium {
              width: 33.33333%;
          }

          .row > .off-4-medium {
              margin-left: 33.33333%;
          }

          .row > .col-5-medium {
              width: 41.66667%;
          }

          .row > .off-5-medium {
              margin-left: 41.66667%;
          }

          .row > .col-6-medium {
              width: 50%;
          }

          .row > .off-6-medium {
              margin-left: 50%;
          }

          .row > .col-7-medium {
              width: 58.33333%;
          }

          .row > .off-7-medium {
              margin-left: 58.33333%;
          }

          .row > .col-8-medium {
              width: 66.66667%;
          }

          .row > .off-8-medium {
              margin-left: 66.66667%;
          }

          .row > .col-9-medium {
              width: 75%;
          }

          .row > .off-9-medium {
              margin-left: 75%;
          }

          .row > .col-10-medium {
              width: 83.33333%;
          }

          .row > .off-10-medium {
              margin-left: 83.33333%;
          }

          .row > .col-11-medium {
              width: 91.66667%;
          }

          .row > .off-11-medium {
              margin-left: 91.66667%;
          }

          .row > .col-12-medium {
              width: 100%;
          }

          .row > .off-12-medium {
              margin-left: 100%;
          }

          .row.gtr-0 {
              margin-top: 0px;
              margin-left: 0px;
          }

              .row.gtr-0 > * {
                  padding: 0px 0 0 0px;
              }

              .row.gtr-0.gtr-uniform {
                  margin-top: 0px;
              }

                  .row.gtr-0.gtr-uniform > * {
                      padding-top: 0px;
                  }

          .row.gtr-25 {
              margin-top: -6.25px;
              margin-left: -6.25px;
          }

              .row.gtr-25 > * {
                  padding: 6.25px 0 0 6.25px;
              }

              .row.gtr-25.gtr-uniform {
                  margin-top: -6.25px;
              }

                  .row.gtr-25.gtr-uniform > * {
                      padding-top: 6.25px;
                  }

          .row.gtr-50 {
              margin-top: -12.5px;
              margin-left: -12.5px;
          }

              .row.gtr-50 > * {
                  padding: 12.5px 0 0 12.5px;
              }

              .row.gtr-50.gtr-uniform {
                  margin-top: -12.5px;
              }

                  .row.gtr-50.gtr-uniform > * {
                      padding-top: 12.5px;
                  }

          .row {
              margin-top: -25px;
              margin-left: -25px;
          }

              .row > * {
                  padding: 25px 0 0 25px;
              }

              .row.gtr-uniform {
                  margin-top: -25px;
              }

                  .row.gtr-uniform > * {
                      padding-top: 25px;
                  }

          .row.gtr-150 {
              margin-top: -37.5px;
              margin-left: -37.5px;
          }

              .row.gtr-150 > * {
                  padding: 37.5px 0 0 37.5px;
              }

              .row.gtr-150.gtr-uniform {
                  margin-top: -37.5px;
              }

                  .row.gtr-150.gtr-uniform > * {
                      padding-top: 37.5px;
                  }

          .row.gtr-200 {
              margin-top: -50px;
              margin-left: -50px;
          }

              .row.gtr-200 > * {
                  padding: 50px 0 0 50px;
              }

              .row.gtr-200.gtr-uniform {
                  margin-top: -50px;
              }

                  .row.gtr-200.gtr-uniform > * {
                      padding-top: 50px;
                  }

  }

  @media screen and (max-width: 736px) {

      .row {
          display: flex;
          flex-wrap: wrap;
          box-sizing: border-box;
          align-items: stretch;
      }

          .row > * {
              box-sizing: border-box;
          }

          .row.gtr-uniform > * > :last-child {
              margin-bottom: 0;
          }

          .row.aln-left {
              justify-content: flex-start;
          }

          .row.aln-center {
              justify-content: center;
          }

          .row.aln-right {
              justify-content: flex-end;
          }

          .row.aln-top {
              align-items: flex-start;
          }

          .row.aln-middle {
              align-items: center;
          }

          .row.aln-bottom {
              align-items: flex-end;
          }

          .row > .imp-small {
              order: -1;
          }

          .row > .col-1-small {
              width: 8.33333%;
          }

          .row > .off-1-small {
              margin-left: 8.33333%;
          }

          .row > .col-2-small {
              width: 16.66667%;
          }

          .row > .off-2-small {
              margin-left: 16.66667%;
          }

          .row > .col-3-small {
              width: 25%;
          }

          .row > .off-3-small {
              margin-left: 25%;
          }

          .row > .col-4-small {
              width: 33.33333%;
          }

          .row > .off-4-small {
              margin-left: 33.33333%;
          }

          .row > .col-5-small {
              width: 41.66667%;
          }

          .row > .off-5-small {
              margin-left: 41.66667%;
          }

          .row > .col-6-small {
              width: 50%;
          }

          .row > .off-6-small {
              margin-left: 50%;
          }

          .row > .col-7-small {
              width: 58.33333%;
          }

          .row > .off-7-small {
              margin-left: 58.33333%;
          }

          .row > .col-8-small {
              width: 66.66667%;
          }

          .row > .off-8-small {
              margin-left: 66.66667%;
          }

          .row > .col-9-small {
              width: 75%;
          }

          .row > .off-9-small {
              margin-left: 75%;
          }

          .row > .col-10-small {
              width: 83.33333%;
          }

          .row > .off-10-small {
              margin-left: 83.33333%;
          }

          .row > .col-11-small {
              width: 91.66667%;
          }

          .row > .off-11-small {
              margin-left: 91.66667%;
          }

          .row > .col-12-small {
              width: 100%;
          }

          .row > .off-12-small {
              margin-left: 100%;
          }

          .row.gtr-0 {
              margin-top: 0px;
              margin-left: 0px;
          }

              .row.gtr-0 > * {
                  padding: 0px 0 0 0px;
              }

              .row.gtr-0.gtr-uniform {
                  margin-top: 0px;
              }

                  .row.gtr-0.gtr-uniform > * {
                      padding-top: 0px;
                  }

          .row.gtr-25 {
              margin-top: -3.75px;
              margin-left: -3.75px;
          }

              .row.gtr-25 > * {
                  padding: 3.75px 0 0 3.75px;
              }

              .row.gtr-25.gtr-uniform {
                  margin-top: -3.75px;
              }

                  .row.gtr-25.gtr-uniform > * {
                      padding-top: 3.75px;
                  }

          .row.gtr-50 {
              margin-top: -7.5px;
              margin-left: -7.5px;
          }

              .row.gtr-50 > * {
                  padding: 7.5px 0 0 7.5px;
              }

              .row.gtr-50.gtr-uniform {
                  margin-top: -7.5px;
              }

                  .row.gtr-50.gtr-uniform > * {
                      padding-top: 7.5px;
                  }

          .row {
              margin-top: -15px;
              margin-left: -15px;
          }

              .row > * {
                  padding: 15px 0 0 15px;
              }

              .row.gtr-uniform {
                  margin-top: -15px;
              }

                  .row.gtr-uniform > * {
                      padding-top: 15px;
                  }

          .row.gtr-150 {
              margin-top: -22.5px;
              margin-left: -22.5px;
          }

              .row.gtr-150 > * {
                  padding: 22.5px 0 0 22.5px;
              }

              .row.gtr-150.gtr-uniform {
                  margin-top: -22.5px;
              }

                  .row.gtr-150.gtr-uniform > * {
                      padding-top: 22.5px;
                  }

          .row.gtr-200 {
              margin-top: -30px;
              margin-left: -30px;
          }

              .row.gtr-200 > * {
                  padding: 30px 0 0 30px;
              }

              .row.gtr-200.gtr-uniform {
                  margin-top: -30px;
              }

                  .row.gtr-200.gtr-uniform > * {
                      padding-top: 30px;
                  }

  }

/* Form */

form label {
  color: #3e3e3e;
  font-weight: 700;
  display: block;
  margin: 0 0 0.5em 0;
}

form input[type=text],
form input[type=email],
form input[type=password],
form select,
form textarea {
  -moz-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
  -webkit-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
  -ms-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
  transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0.75em;
  font-size: 1em;
  border-radius: 8px;
  border: solid 1px #ddd;
  background: #fff;
  color: #bbb;
  box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025);
  width: 100%;
}

  form input[type=text]:focus,
  form input[type=email]:focus,
  form input[type=password]:focus,
  form select:focus,
  form textarea:focus {
      background: #fafafa;
      box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025), inset 0px 0px 2px 1px #43bff0;
  }

form textarea {
  height: 15em;
}
/* Form - Responsive Updates */
form input[type=text],
form input[type=email],
form input[type=password],
form select,
form textarea {
  max-width: 100%; /* Prevent inputs from exceeding the container width */
  width: calc(100% - 2em); /* Add slight inner padding */
  box-sizing: border-box; /* Include padding and border in the total width */
  margin: 0; /* Remove unintended margins */
  padding: 0.75em; /* Maintain consistent padding */
}
/* Modal Container */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative; /* Position relative for the close button */
}



/* Close Button */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 768) {
  .actions li {
      margin-bottom: 15px; /* Adds spacing between buttons */
  }

  .actions input {
      width: 100%; /* Makes both buttons the same width */
      box-sizing: border-box; /* Ensures padding is included in the width */
  }
}

.close-button:hover {
  color: #333;
}

form .actions:last-child {
  margin-bottom: 0;
}

form ::-webkit-input-placeholder {
  color: #555 !important;
}

form :-moz-placeholder {
  color: #555 !important;
}

form ::-moz-placeholder {
  color: #555 !important;
}

form :-ms-input-placeholder {
  color: #555 !important;
}

form ::-moz-focus-inner {
  border: 0;
}

/* Tables */

table {
  width: 100%;
}

  table.default {
      width: 100%;
  }

      table.default tr {
          border-top: solid 1px #eee;
      }

          table.default tr:first-child {
              border-top: 0;
          }

      table.default td {
          padding: 0.5em 1em 0.5em 1em;
      }

      table.default th {
          text-align: left;
          padding: 0.5em 1em 0.5em 1em;
          font-weight: 600;
          margin: 0 0 1em 0;
      }

      table.default thead {
          background: #4f4f4f;
          color: #fff;
      }



/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
  background-image: url("images/bg.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: url("images/bg.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: url("images/bg.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: url("images/bg.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  -moz-transition: background-color .2s ease-in-out;
  -webkit-transition: background-color .2s ease-in-out;
  -ms-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 8px;
  text-shadow: -1px -1px 0.5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.75);
  background-color: #43B3E0;
  padding: 1em 2.35em 1em 2.35em;
  font-size: 1.1em;
  max-width: 24em;
}

  input[type="button"]:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  button:hover,
  .button:hover {
      background-color: #43bff0;
      color: #fff !important;
  }

  input[type="button"]:active,
  input[type="submit"]:active,
  input[type="reset"]:active,
  button:active,
  .button:active {
      background-color: #3BA8D3;
      top: 1px;
  }

  input[type="button"].large,
  input[type="submit"].large,
  input[type="reset"].large,
  button.large,
  .button.large {
      font-size: 1.5em;
      letter-spacing: -0.025em;
  }

  input[type="button"].alt,
  input[type="submit"].alt,
  input[type="reset"].alt,
  button.alt,
  .button.alt {
      background-color: #444;
      box-shadow: inset 0px 0px 0px 1px #242424, inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2);
  }

      input[type="button"].alt:hover,
      input[type="submit"].alt:hover,
      input[type="reset"].alt:hover,
      button.alt:hover,
      .button.alt:hover {
          background-color: #4f4f4f;
          color: #fff !important;
      }

      input[type="button"].alt:active,
      input[type="submit"].alt:active,
      input[type="reset"].alt:active,
      button.alt:active,
      .button.alt:active {
          background-color: #3f3f3f;
      }

/* List */

ul {
  list-style: disc;
  padding-left: 1em;
}

  ul li {
      padding-left: 0.5em;
  }

ol {
  list-style: decimal;
  padding-left: 1.25em;
}

  ol li {
      padding-left: 0.25em;
  }

/* Social */

ul.social {
  cursor: default;
  margin: 0;
  list-style: none;
  padding-left: 0;
}

  ul.social li {
      position: relative;
      display: inline-block;
      margin: 0.25em;
      top: 0;
      padding-left: 0;
  }

      ul.social li a {
          -moz-transition: top .2s ease-in-out;
          -webkit-transition: top .2s ease-in-out;
          -ms-transition: top .2s ease-in-out;
          transition: top .2s ease-in-out;
          display: block;
          width: 48px;
          height: 48px;
          border-radius: 6px;
          top: 0;
          position: relative;
      }

          ul.social li a:before {
              background-image: url("images/bg.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
              background-image: url("images/bg.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
              background-image: url("images/bg.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
              background-image: url("images/bg.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
              -moz-transition: background-color .2s ease-in-out;
              -webkit-transition: background-color .2s ease-in-out;
              -ms-transition: background-color .2s ease-in-out;
              transition: background-color .2s ease-in-out;
              background-color: #444;
              border-radius: 6px;
              box-shadow: inset 0px 0px 0px 1px #282828, inset 0px 2px 1px 0px rgba(255, 255, 255, 0.1);
              color: #2E2E2E !important;
              display: block;
              font-size: 26px;
              height: 48px;
              line-height: 48px;
              text-align: center;
              outline: 0;
              overflow: hidden;
              text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1);
              width: 48px;
          }

          ul.social li a.fa-twitter {
              background-color: #2DAAE4;
          }

          ul.social li a.fa-facebook-f {
              background-color: #3C5A98;
          }

          ul.social li a.fa-dribbble {
              background-color: #C4376B;
          }

          ul.social li a.fa-linkedin-in {
              background-color: #006599;
          }

          ul.social li a.fa-tumblr {
              background-color: #51718A;
          }

          ul.social li a.fa-google-plus {
              background-color: #DA2713;
          }

          ul.social li a.fa-github {
              background-color: #FAFAFA;
          }

          ul.social li a.fa-rss {
              background-color: #F2600B;
          }

          ul.social li a.fa-instagram {
              background-color: #E0D7C8;
          }

          ul.social li a.fa-foursquare {
              background-color: #39A3D4;
          }

          ul.social li a.fa-skype {
              background-color: #10BEF1;
          }

          ul.social li a.fa-soundcloud {
              background-color: #FE5419;
          }

          ul.social li a.fa-youtube {
              background-color: #BF2E25;
          }

          ul.social li a.fa-blogger {
              background-color: #FF6501;
          }

          ul.social li a.fa-flickr {
              background-color: #0062DB;
          }

          ul.social li a.fa-vimeo {
              background-color: #4C8AB0;
          }

          ul.social li a:hover {
              top: -5px;
          }

              ul.social li a:hover:before {
                  background-color: transparent;
              }

/* Actions */

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

  ul.actions li {
      display: inline-block;
      margin: 0 0 0 1em;
      padding-left: 0;
  }

      ul.actions li:first-child {
          margin-left: 0;
      }

/* Box */

.box {
  background: #fff;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2em;
}

  .box.style1 {
      padding: 3em 2em 3.5em 2em;
  }

      .box.style1 h3 {
          margin-bottom: 0.5em;
      }

  .box.style2 h3 {
      margin-bottom: 0.25em;
  }

  .box.style2 .image {
      position: relative;
      left: 2em;
      top: 2em;
      margin: -4em 0 4em -4em;
      width: auto;
  }

/* Icons */

.icon {
  text-decoration: none;
  text-decoration: none;
}

  .icon:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      text-transform: none !important;
      font-family: 'Font Awesome 5 Free';
      font-weight: 400;
  }

  .icon:before {
      font-size: 1.25em;
  }

  .icon > .label {
      display: none;
  }

  .icon.solid:before {
      font-weight: 900;
  }

  .icon.brands:before {
      font-family: 'Font Awesome 5 Brands';
  }

  .icon.featured {
      color: #EA8A95;
      display: block;
      margin: 0 0 1.5em 0;
      cursor: default;
  }

      .icon.featured:before {
          font-size: 6em;
      }

/* Wrappers */

.wrapper {
  background-image: url("images/bg.png");
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.05), inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 8em 0 8em 0;
  text-align: center;
}

  .wrapper.style1 {
      background-image: none;
      background-color: #fff;
  }

  .wrapper.style2 {
      background-color: #fafafa;
      text-shadow: 1px 1px 0px #fff;
  }

  .wrapper.style3 {
      background-color: #f4f4f4;
      text-shadow: 1px 1px 0px #fff;
  }

  .wrapper.style4 {
      background-color: #303030;
      color: #999;
      text-shadow: -1px -1px 0px #181818;
  }

      .wrapper.style4 h1, .wrapper.style4 h2, .wrapper.style4 h3, .wrapper.style4 h4, .wrapper.style4 h5, .wrapper.style4 h6 {
          color: #fff;
      }

      .wrapper.style4 h2 {
          margin-top: -90px;
      }


      .wrapper.style4 form input[type=text],
      .wrapper.style4 form input[type=password],
      .wrapper.style4 form select,
      .wrapper.style4 form textarea {
          border: none;
          background: #282828;
      }

          .wrapper.style4 form input[type=text]:focus,
          .wrapper.style4 form input[type=password]:focus,
          .wrapper.style4 form select:focus,
          .wrapper.style4 form textarea:focus {
              background: #252525;
          }
/* Center input fields on mobile */
@media screen and (max-width: 768px) {
  .row {
    justify-content: center;
  }

  .col-6, .col-12 {
    max-width: 100%;
    text-align: center;
  }

  form input[type="text"],
  form textarea {
    margin: 0 auto;
    display: block;
    width: 90%; /* Adjust the width for better responsiveness */
  }

  form .actions {
    justify-content: center;
  }

  form ul.actions li {
    text-align: center;
  }
}