*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: "Poppins", sans-serif;
    --color1: #383c3d;
    --color2: #fafafa;
}

/* =============================
   HEADER (MAIN PAGE HERO) 
   ============================= */
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(23, 171, 240, 0.3), rgba(8, 121, 155, 0.3)), url(./images/rec12.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 62px;
}
.text-box p {
    margin: 10px 0 30px;
    font-size: 14px;
    color: #fff;
}
.hero-btn1 {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 7px;
}
.hero-btn1:hover {
    border: 1px solid #ffffff;
    background: transparent;
    transition: 0.7s;
}


@media (max-width: 700px) {
    .text-box h1 {
        font-size: 25px;
    }
}

/* =============================
   NAV BAR (USED ON BOTH PAGES)
   ============================= */
/* Container */
.nav-bar {
    width: 100%;
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.logo img {width: 50px;} 
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a{
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a:hover::after {
  width: 100%;  
}


.menu li a:hover {
  color: #000;  
}

.open-menu, .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 101;
}


/* Custom Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#check {display: none;}

body.menu-open {
    overflow: hidden; 
}


@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%; 
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%; 
        left: auto; 
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.3s ease-in-out;
        padding-top: 80px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .menu li {
        margin: 20px 0;
        padding-left: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    .menu li:nth-child(1) { --i: 1; }
    .menu li:nth-child(2) { --i: 2; }
    .menu li:nth-child(3) { --i: 3; }
    .menu li:nth-child(4) { --i: 4; }
    .menu li:nth-child(5) { --i: 5; }
    
    .menu li a {
        padding: 10px;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .open-menu, .close-menu {display: block;}
    
   
    #check:checked ~ .menu {
        right: 0;
    }

    #check:checked ~ .menu .close-menu{
    opacity:1;
    visibility:visible;
}


.menu .close-menu{           
    opacity:0;
    visibility:hidden;
}
    
    #check:checked ~ .menu li {
        opacity: 1;
        transform: translateY(0);
    }
    

  #check:checked ~ .open-menu{
    opacity: 1;
    visibility: visible;      
    position: fixed;          
                                
    top: 30px;
    right: 25px;
}

    
    #check:checked ~ .close-menu {
        opacity: 1;
        visibility: visible;
    }
    
    /* Only show open-menu (hamburger) when menu is closed */
    .open-menu {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
    
    /* Hamburger Animation */
    #check:checked ~ .open-menu .hamburger-line:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    #check:checked ~ .open-menu .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    #check:checked ~ .open-menu .hamburger-line:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 30px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 7px;
}
.hero-btn:hover{
    border: 1px solid #000000;
    background: #4197af;
    transition: 0.7s;  
}    
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 25px;
    }
}       
    
.nav-links ul li{
        display: block;
}

nav ul li a.active {
  color: #020202;
  font-weight: bold;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 30px;
    font-size: 14px;
    color: #fff;
}
.hero-btn5{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 7px;
}
.hero-btn5:hover{
    border: 1px solid #ffffff;
    transition: 0.7s;  
}    
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 25px;
    }
}       
    .nav-links ul li{
        display: block;
    }


/* =============================
   OFFICES SECTION (MAIN PAGE)
   ============================= */
   .workspace-container {
    overflow-x: hidden;  
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
  }
  
  .workspace-container h2 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  
  .workspace-options {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 8px;  
    overflow-x: hidden; 
    overflow-y: visible;
  }
  
    
  .office-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    white-space: nowrap;
  }
  
  .workspace-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
  }
  .workspace-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .workspace-card img {
    width: 100%;
    border-radius: 10px;
    height: auto;
  }
  .workspace-card h3 {
    font-size: 18px;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #0f0f0f;
    transition: color 0.3s ease;
  }
  .workspace-card:hover h3 {
    color: #0f0f0f;
  }
  .price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .workspace-card ul {
    list-style: none;
    margin-bottom: 20px;
  }
  .workspace-card ul li {
    padding: 5px 0;
    color: rgba(70, 70, 70, 0.604);
  }
  .best-for {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .learn-more-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: #f3f3f3;
    color: rgb(24, 23, 23);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  .learn-more-btn:hover {
    background-color: #cfcfcf;
  }

  .office-prev,
  .office-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s;
  }
  
  .office-prev {
    left: 10px;
  }
  .office-next {
    right: 10px;
  }
  .office-prev:hover,
  .office-next:hover {
    background: #f8f8f8;
    transform: translateY(-50%) scale(1.05);
  }
  
  .office-prev i,
  .office-next i {
    pointer-events: none;
  }
  
  /* ===== Responsive Adjustments ===== */

  @media (max-width: 480px) {
  
    .office-prev,
    .office-next {
      display: none !important;
    }
  
    .workspace-options {
      max-width: 100%;    
      padding: 0;         
      overflow-x: visible;
      display: block;     
    }
  
    .office-track {
      display: block;     
      gap: 0;
      white-space: normal;
      transform: none;    
    }
  
    .workspace-card {
      width: 100%;
      margin: 20px auto 15px;   
      flex-shrink: 0;    
    }
  
    .workspace-card:first-of-type {
      margin-top: 30px !important;
    }    
  }
  
  
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
  }
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
  }
  .modal-content {
    display: block;
    margin: 5% auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
  }
  
  @media (max-width: 480px) {

    .modal-content {
      width: 100%;
      max-width: 100%;
      margin: 0;
      height: auto;
      border-radius: 0;  
      padding: 10px;     
    }
  
    .close-btn {
      font-size: 28px;
      top: 10px;
      right: 10px;
    }
  }
/* =============================
   LOCATION, VIDEO, FACILITIES
   ============================= */
.ilocation-banner {
    background-color: #465f6b;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
}
.ilocation-banner h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}
.ilocation-banner p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.button {
    display: inline-block;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #465f6b;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #FFFFFF;
}
.button:hover {
    background-color: #597786;
    color: #FFFFFF;
}
.button.outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}
.button.outline:hover {
    background-color: #597786;
    color: #FFFFFF;
}
.parent-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    box-sizing: border-box;
}

.video-container-section {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; 
  margin: 0 auto;
}

.video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; 
}

.video-thumbnail,
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.controls-overlay {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.4);
  padding: 8px 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10; 
}

.video-container:hover .controls-overlay {
  opacity: 1;
}

#playPauseBtn,
#muteBtn {
  font-size: 18px;
  color: #fff;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
#playPauseBtn:hover i,
#muteBtn:hover i {
  color: #00bcd4;
}

.progress-container {
  width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: #00bcd4;
  border-radius: 4px;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {

  .video {
    width: 100%;
  }

  .controls-overlay {
    opacity: 1;
  }
  .video-container:hover .controls-overlay {
    opacity: 1;
  }
}

/* =============================
   FACILITIES SLIDER
   ============================= */
.container3 {
    margin-top: 130px;
    max-width: 100%;
    width: 100%;
    padding: 0 0px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #4c6d7e, #476574);
    padding-top: 10px;
}
.f3 {
    font-size: 1.7em;
    text-align: center;
    padding-bottom: 20px;
    color: #ffffff;
}
.slider-wrapper {
    position: relative;
    overflow:hidden
}
.image-list{
  display:flex;
  gap:3px;
  transition:transform .4s ease;
  will-change:transform;
  transform:translateZ(0);
}

.image-item{
  width: 330px;
  height: 375px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 3px;
}

.image-list.is-moving .image-item{box-shadow:none}

.slide-button{
  position:absolute;top:50%;transform:translateY(-50%);
  height:40px;width:40px;
  border:none;border-radius:50%;
  background:#fff;color:#000;
  font-size:2.2rem;cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  z-index:2;
}
.slide-button:hover{background:#e2e2e2}
#prev-slide{left:5px}
#next-slide{right:5px}



.close-btn2 {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}



@media(max-width:1023px){
  .image-item{width:285px;height:380px}
  .slide-button{height:30px;width:30px;font-size:1.5rem}
}

.hours {
    color: #FFFFFF;
}
.call {
    color: #FFFFFF;
}
.info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-bottom: 20px;
}
.info div {
    width: 45%;
}
.info h3 {
    margin-bottom: 10px;
}
.info p {
    margin: 5px 0;
}

.close-btn2 {
  font-size: 28px;
  top: 10px;
  right: 10px;
}

@media (max-width: 1023px) {
    .slider-wrapper .slide-button {
        height: 30px;
        width: 30px;
        font-size: 1.5rem;
        display: block;
    }
    .slider-wrapper .image-list {
        margin-bottom: 15px;
    }
    .slider-wrapper .image-list .image-item {
        width: 285px;
        height: 380px;
    }
    .slider-scrollbar .scrollbar-thumb {
        width: 20%;
    }
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
}
.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}
.testimonials-section p {
    color: #777;
    margin-bottom: 40px;
}
.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 10px;
    flex: 1 1 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.testimonial p {
    font-size: 1em;
    line-height: 1.5em;
    color: #555;
    margin-bottom: 20px;
}
.author {
    display: flex;
    align-items: center;
}
.avatar {
    width: 40px;
    height: 40px;
    background-color: #505751;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}
.name {
    text-align: left;
    font-weight: bold;
    color: #333;
}
.name span {
    text-align: left;
    font-weight: normal;
    color: #888;
    font-size: 0.9em;
}

/* =============================
   CONTACT SECTION
   ============================= */
.conta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(./images/maisys1.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.conta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media (max-width: 700px) {
    .conta h1 {
        font-size: 24px;
    }
}

/* =============================
   FOOTER
   ============================= */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
a:hover {
    color: #007BFF;
}
.modern-footer {
    background-color: #476574;
    color: #FFFFFF;
    padding: 40px 20px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}
.footer-section {
    flex: 1;
    margin: 10px 20px;
    min-width: 200px;
}
.footer-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f8f8;
}
.footer-section p {
    line-height: 1.6;
    color: #CCCCCC;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    font-size: 16px;
    color: #FFFFFF;
}
.footer-section ul li a:hover {
    color: #d2e9e7;
}
.icons {
    margin-top: 10px;
}
.icons a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s;
}
.icons a img:hover {
    transform: scale(1.2);
}
.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #AAAAAA;
}
.footer-bottom a {
    color: #ffffff;
}
.footer-bottom a:hover {
    color: #FFFFFF;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        margin: 20px 0;
    }
}

.floating-chat-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
    }

    #chat-toggle {
      display: none;
    }

    .chat-button {
      background-color: #0051e6;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .chat-button:hover {
      transform: scale(1.1);
    }

    .chat-button svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    .chat-icons {
      position: absolute;
      bottom: 80px;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s ease;
    }

    #chat-toggle:checked ~ .chat-icons {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .chat-icons a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s ease;
      background-color: #fff;
    }

    .chat-icons a:hover {
      transform: scale(1.1);
    }

    .chat-icons svg {
      width: 30px;
      height: 30px;
    }

    .whatsapp { background-color: #25D366; }
    .messenger { background-color: #0084FF; }
    .viber { background-color: #7360F2; }

    @media (min-width: 768px){
      .floating-chat-container{
        bottom: 30px;
        right: 30px;
      }
      .chat-button{
        width: 70px;
        height: 70px;
      }
      .chat-button svg{width: 36px;height: 36px;}
    }
    

    @media (max-width: 480px){
      .floating-chat-container{
        bottom: 15px;
        right: 15px;
      }
      .chat-button{
        width: 50px;
        height: 50px;
      }
      .chat-button svg{width: 26px;height: 26px;}
      .chat-icons a{
        width: 42px;
        height: 42px;
      }
      .chat-icons svg{width: 24px;height: 24px;}
      .chat-icons{
    bottom:60px;   
    gap:8px;      
  }
    }


/* =============================
   ABOUT PAGE HERO
   ============================= */
.hero-section {
    width: 100%;
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("./images/rec12.jpg") center / cover no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Common hero text styling */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
}

/* ABOUT Overview Section */
.about-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #f9f9f9;
}
.overview-text {
    flex: 1;
    padding-right: 20px;
}
.overview-text h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}
.overview-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}
.overview-text ul {
    list-style: none;
}
.overview-text ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}
.overview-text ul li i {
    color: #0078FF;
    margin-right: 5px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(90px);
}

.overview-modal{
  display:none;                    
  position:fixed;left:0;top:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.8);
  z-index:9999;
  align-items:center;justify-content:center;

}
.overview-modal.open{display:flex;}

.overview-modal-content{
  max-width: 60vw;
  max-height: 78vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;          
  display: flex;               
  align-items: center;
  justify-content: center;
  box-shadow:0 4px 12px rgba(0,0,0,.4);
}

.overview-modal-content img{
  max-width:100%;  
  max-height:100%; 
  width:auto;       
  height:auto;
  display:block;     
}



.overview-close{
  position:absolute;top:8px;right:8px;
  font-size:2.2rem;font-weight:700;
  color:#fff;cursor:pointer;
  user-select:none;
}


@media (max-width: 768px) {
  
  .about-overview {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 30px 5%;
  }
  
  .overview-text {
      text-align: left;
      padding-right: 0;
      margin-bottom: 20px;
  }

  .overview-modal,
  .conference-modal{              
      display:none !important;    
  }
  
  .overview-image,.conference-image {
       pointer-events:none;        
      cursor: default;
  }
  
  .overview-image img {
      width: 100%;
      margin: 0 auto;
      transform: none; 
  }

  .overview-close{font-size:1.8rem;top:6px;right:6px;}
  
  .text-column ul {
      list-style: none;
      padding-left: 0;  
  }
  
  .text-column ul li {
      display: flex;
      align-items: center;
      gap: 0.3rem;        
      margin-bottom: 0.6rem;
      text-align: left;
  }
  
  /* The icon itself */
  .text-column ul li i {
      margin: 0; 
      color: #0088cc; 
  }
  
}

/* FEATURES SECTION */
.features-section {
    text-align: center;
    padding: 60px 10%;
    background-color: #fff;
}
.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}
.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-box {
    flex: 1 1 200px;
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-box i {
    font-size: 2.5em;
    color: #0078FF;
    margin-bottom: 10px;
}
.feature-box h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}
.feature-box p {
    font-size: 1em;
    color: #555;
}

#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0078FF; 
    color: #fff;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    cursor: pointer;
    z-index: 1000;
    font-size: 16px; 
    transition: transform 0.2s ease;
}

  
#chat-button:hover {
    transform: translateY(-2px);
}
  
#chat-button span:last-child {
    margin-left: 8px;
    animation: wave-animation 1s infinite;
}
  
  /* Wave animation */
@keyframes wave-animation {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(20deg); }
    40% { transform: rotate(-20deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}
  
  /* Media query for mobile devices */
@media only screen and (max-width: 600px) {
    #chat-button {
      padding: 8px 15px;   
      font-size: 14px;     
      bottom: 15px;       
      right: 15px;         
    }
}
 


/* Offices Page Hero */
.offices-hero {
  width: 100%;
  min-height: 60vh;
  background: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("./images/maisys6.jpg") center/cover no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.offices-hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: #fff;
}

.offices-hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .offices-hero-overlay h1 {
    font-size: 2rem;
  }
}

.blueprint-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 5%;
    background: linear-gradient(135deg, #ffffff, #ffffff); /* Gradient background */
    color: #ffffff;
    gap: 60px;
    overflow: hidden;
  }
  

  .blueprint-image {
    flex: 1;
    max-width: 30%;
    margin-left: 10px; 
  }
  
  .blueprint-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); 
    transition: transform 0.3s ease-in-out;
  }
  
  .blueprint-image img:hover {
    transform: scale(1.03); 
  }
  

  .blueprint-text {
    flex: 1;
    max-width: 40%;
    padding-right: 20px;
  }
  
  .blueprint-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
  }
  

  .blueprint-text h2::after {
    content: '';
    display: block;
    width: 655px;
    height: 4px;
    background-color: #00bcd4; 
    margin-top: 10px;
  }
  
  .blueprint-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
  }
  
  /* Call-to-action button */
  .blueprint-text .btn-learn-more {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00bcd4;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .blueprint-text .btn-learn-more:hover {
    background-color: #0193a1;
  }
  

  @media (max-width: 900px) {
    .blueprint-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }
  
    .blueprint-image,
    .blueprint-text {
      max-width: 90%;
    }
  
    .blueprint-text h2 {
      font-size: 2rem;
    }
  
    .blueprint-text .btn-learn-more {
      padding: 10px 20px;
    }
  }
  

  .office-cards {
    text-align: center;
    padding: 60px 5%;
    background-color: #fcfcfc;
  }
  .office-cards h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
  }
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .office-card {
    background-color: #fff;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  .office-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .office-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .price {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .office-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .office-card ul li {
    margin: 6px 0;
    font-size: 0.9rem;
    color: #555;
  }
  .best-for {
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #666;
  }
  .learn-more-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: #f4f4f4;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  .learn-more-btn:hover {
    background-color: #ddd;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000; 
  }
  
  .modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    margin-top: 60px;
    border-radius: 8px;
  }
  
  @media (max-width: 768px) {
    .close-btn {
      font-size: 28px;   
      top: 10px;
      right: 10px;
    }
    
    .modal-content {
      max-width: 90%;    
      max-height: 90%;
      margin-top: 40px;  
    }
  }
  /* ========== Video Section ========== */
  .video-container-section {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    padding: 50px 5%;
    background-color: #fafafa;
  }
  .video-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
  }

  .video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; 
  }

.video-thumbnail,
#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


  .controls-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0,0,0,0.0);
    border-radius: 8px;
  }
  .video-container:hover .controls-overlay {
    opacity: 1;
  }
  .play-btn {
    font-size: 28px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    margin: 20px auto;
    transition: transform 0.3s;
  }
  .play-btn:hover {
    background: rgba(255,255,255,0.7);
    color: #121212;
  }
  .progress-container {
    width: 90%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin: 10px auto 20px;
    cursor: pointer;
  }
  #progress-bar {
    width: 0;
    height: 100%;
    background: #00bcd4;
    border-radius: 4px;
    transition: width 0.1s;
  }
  

/* ========== Modern Blueprint Section ========== */
.container4 {
    max-width: 100%;
    width: 100%;
    padding: 0 0px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    height: 40px;
    width: 40px;
    color: rgb(0, 0, 0);
    border: none;
    outline: none;
    background: rgb(255, 255, 255);
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
    background: #f0f0f0;
}

.slider-wrapper .slide-button#prev-slide {
    left: +5px;
    display: none;
}

.slider-wrapper .slide-button#next-slide {
    right: +5px;
}

.slider-wrapper .image-list {
    display: grid;
    font-size: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(12, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}    

.slider-wrapper .image-list .image-item {
    width: 330px;
    height: 375px;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .slider-wrapper .slide-button {
        height: 30px;
        width: 30px;
        font-size: 1.5rem;
        display: block;
    }

    .slider-wrapper .image-list{
        margin-bottom: 15px;
    }

    .slider-wrapper .image-list .image-item {
        width: 285px;
        height: 380px;
    }

    .slider-scrollbar .scrollbar-thumb{
        width: 20%;
    }
}

  /* ========== Footer ========== */
  .modern-footer {
    background-color: #476574;
    color: #FFFFFF;
    padding: 40px 20px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
  }
  .footer-section {
    flex: 1;
    margin: 10px 20px;
    min-width: 200px;
  }
  .footer-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f8f8;
  }
  .footer-section p {
    line-height: 1.6;
    color: #CCCCCC;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-section ul li a {
    font-size: 16px;
    color: #FFFFFF;
  }
  .footer-section ul li a:hover {
    color: #d2e9e7;
  }
  .footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #AAAAAA;
  }
  
  /* ========== CONTACT PAGE STYLES ========== */

 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  /* ======= HERO SECTION ======= */
.contact-hero {
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("./images/maisys1.jpg") center/cover no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.hero-overlay h1 { 
    font-size: 2.5rem;
    color: #fff;
}
  
  /* ======= LOCATION & HOURS SECTION ======= */
.location-info {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}
  
.info-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
  
.info-box {
    width: 300px;
}
  
  .info-box i {
    font-size: 3rem;
    color: #4197af;
    margin-bottom: 10px;
  }
  
  .info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .info-box p a {
    color: #333;
    text-decoration: none;
  }
  
  /* ======= GOOGLE MAP SECTION ======= */
.map-section {
    background: none !important;
    padding: 0;
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 15;
}
  /* ======= CONTACT FORM SECTION ======= */
  .contact-form {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .contact-form form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .input-row input {
    width: 48%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
  }
  
  .contact-form button {
    padding: 12px 30px;
    background-color: #4197af;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #2c6e80;
  }
  
  /* ======= FOOTER SECTION ======= */
  .modern-footer {
    background-color: #476574;
    color: #FFFFFF;
    padding: 40px 20px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
  }
  .footer-section {
    flex: 1;
    margin: 10px 20px;
    min-width: 200px;
  }
  .footer-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f8f8;
  }
  .footer-section p {
    line-height: 1.6;
    color: #CCCCCC;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-section ul li a {
    font-size: 16px;
    color: #FFFFFF;
  }
  .footer-section ul li a:hover {
    color: #d2e9e7;
  }
  .footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #AAAAAA;
  }
  
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
  }
  .conference-hero {
    background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.4)
      ),
      url("./images/con2.jpg") center/cover no-repeat;
  }
  .hero-overlay {
    padding: 2rem;
  }
  .hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .hero-overlay p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
.conference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #f9f9f9;
}
.conference-text {
    flex: 1;
    padding-right: 20px;
}
.conference-text h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}
.conference-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}
.conference-text ul {
    list-style: none;
}
.conference-text ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}
.conference-text ul li i {
    color: #0078FF;
    margin-right: 5px;
}
.conference-image {
    flex: 1;
    text-align: center;
}
.conference-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(90px); 
}

@media screen and (max-width: 768px) {
    .conference {
        flex-direction: column;
        padding: 30px 5%;
    }

    .conference-text,
    .conference-image {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .conference-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .conference-image {
        text-align: center;
        margin: 0 auto;
    }

    .conference-image img {
        transform: none; 
    }
}
  
  .cta2-section {
    background-color: #f4f4f4;
    text-align: center;
    padding: 3rem 1rem;
  }
  .cta2-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .cta2-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  .hero-btn2 {
    display: inline-block;
    background-color: #0088cc;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  .hero-btn2:hover {
    background-color: #006fa3;
  }
  .modern-footer {
    background-color: #476574;
    color: #FFFFFF;
    padding: 40px 20px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
  }
  .footer-section {
    flex: 1;
    margin: 10px 20px;
    min-width: 200px;
  }
  .footer-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f8f8;
  }
  .footer-section p {
    line-height: 1.6;
    color: #CCCCCC;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-section ul li a {
    font-size: 16px;
    color: #FFFFFF;
  }
  .footer-section ul li a:hover {
    color: #d2e9e7;
  }
  .footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #AAAAAA;
  }  
  @media (max-width: 768px) {
    
    .conference {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 30px 5%;
    }
    .conference-text {
      padding-right: 0;
      margin-bottom: 20px;
      text-align: left;
    }
    .conference-image {
      margin-bottom: 20px;
    }
    .conference-image img {
      width: 100%; 
      margin: 0 auto;
    }
  
    .text-column ul {
      list-style: none;
      padding-left: 0;  
    }
    
    .text-column ul li {
      display: flex;
      align-items: center;
      gap: 0.3rem;       
      margin-bottom: 0.6rem;
    }
    
    
    .text-column ul li i {
      
      margin: 0; 
      color: #0088cc; 
    }
  }

 body.menu-open .floating-chat-container{
  z-index:50;         
  opacity:0.3;
  pointer-events:none;
}

body:has(#check:checked) .floating-chat-container{
  display:none !important;
}

@media (max-width: 768px){          

  
  .modal,                          
  .modal + .close-btn{             
    display:none !important;
  }

  
  .slider-wrapper .image-list .image-item{
    pointer-events:none;
    cursor:default;
  }
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}