/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: "Work Sans", sans-serif; color: #333; background-color: #fff;}
.header {
  width: 100%; background: white; display: flex;
  align-items: center; justify-content: space-between;
  padding: 8px 200px; border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0; z-index: 999;}

/* LOGO */
.logo img { height: 55px;}

/* NAVIGATION */
.nav { display: flex; align-items: center; gap: 50px;}
.nav a {
  text-decoration: none; color: #000; font-size: 16px;
  font-weight: 500; padding: 6px 0; transition: color 0.3s ease; }
.nav a:hover{ color: #3bbbce;}

/* ENQUIRE BUTTON */
.enquire-btn {
  background: #319bae; color: #fff;
  padding: 10px 18px; border: none; transition: background 0.3s ease;
  border-radius: 5px; cursor: pointer; font-weight: 600;}

/* MOBILE MENU ICON */
.nav-toggle { display: none; background: none; font-size: 28px; border: none; cursor: pointer;}

/* ===== DROPDOWN ===== */
.dropdown { position: relative;}

.dropbtn { cursor: pointer;}

.dropdown-content { 
  display: none; position: absolute; top: 20px;
  left: 0; background: white; min-width: 400px; height: 300px;
   flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 999;}

.dropdown-content a { font-size: 14px; font-weight: 500; padding: 10px 15px; white-space: nowrap; border-bottom: 1px solid #ddd;}

.dropdown-content a:hover { background: #f1f1f1; }

/* Show dropdown on hover (DESKTOP ONLY) */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content { display: flex;  flex-wrap: wrap;}
  }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav {
    position: absolute; top: 70px; right: 0; width: 100%;
    background: white;
    flex-direction: column; align-items: start; padding: 20px;
    gap: 15px; display: none;}

   .nav.active { display: flex;}
 
   .nav-toggle { display: block; font-size: 20px; padding: 10px; margin-left: auto;}

  /* Dropdown inside mobile menu */
  .dropdown-content { position: unset; border: none; box-shadow: none; width: 100%;}
  .dropdown-content a { padding-left: 20px; }
  .dropdown.active .dropdown-content { display: flex; flex-wrap: wrap;}

   /* css mobile menu */
   .nav { gap: 15px;  padding: 10px 20px;}
   .nav a{ border-bottom: 1px solid #ddd;}
}

/* ====== 900px (Tablet) ====== */
@media (max-width: 900px) {
  .header { padding: 10px 40px;  /* reduce side padding */}
  .logo img { height: 45px;        /* smaller logo */}
  .nav { gap: 20px;           /* reduce menu spacing */}
  .nav a{  font-size: 14px; }
  .dropdown-content { min-width: 320px;    /* reduce dropdown width */ }
}   

/* ====== 480px (Small Mobile) ====== */
@media (max-width: 480px) {
  .header { padding: 10px 20px;}
  .logo img { height: 40px; }
  /* Mobile Nav Position */
  .nav { top: 60px; width: 100%; padding: 15px;}
  /* Mobile dropdown */
  .dropdown-content a { padding-left: 15px; font-size: 14px; }
  .enquire-btn { padding: 8px 14px; font-size: 14px; }
}
/* ====== 375px (Extra Small Mobile) ====== */
@media (max-width: 375px) {
  .header { padding: 8px 15px; }
  .logo img { height: 36px; }
  .enquire-btn { padding: 7px 12px; font-size: 13px; }
  .nav { gap: 12px; }
  .dropdown-content a { font-size: 13px; padding: 8px 12px;}
  .nav-toggle { font-size: 24px;}
}
/* ======(body)====== */ /* ======  (body) ====== */ /* ======  (body) ====== */
/* Fullscreen Slider */
.fullscreen-slider { width: 100%; height: 80%; overflow: hidden; position: relative;}
.slider-wrapper { width: 100%; height: 100%; position: relative;}
.slides { display: flex; width: 100%; height: 100%; transition: transform 0.8s ease; }
.slide { min-width: 100%; height: 100vh;}
.slide img { width: 100%; height: 100%; object-fit: cover;}

/* Arrows */
.arrow {
  position: absolute;  top: 50%; transform: translateY(-50%); font-size: 45px; 
  color: #fff; background: rgba(0,0,0,0.4); padding: 10px 15px; cursor: pointer; 
  z-index: 20; border-radius: 5px; transition: 0.3s ease; }

.arrow:hover { background: rgba(0,0,0,0.7); }

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

/* Responsive Screens */
@media (max-width: 900px) {
  .arrow { font-size: 38px; }
}

@media (max-width: 480px) {
  .arrow { font-size: 30px; padding: 6px 10px; }
}

@media (max-width: 380px) {
  .arrow { font-size: 24px; padding: 5px 8px; }
}

/* Workspace Design Section */
.workspace-design { background-color: #319bae; color: #fff; text-align: center; padding: 50px 100px;}
.design-left h2 { font-family: "IBM Plex Sans Condensed", sans-serif; font-size: 2.5rem; line-height: 1.3;}
.design-right { padding-top: 10px;}
.design-right p { margin-bottom: 20px; line-height: 1.6;}
.learn-btn { border: 2px solid rgba(255,255,255,0.8); color: #fff; text-decoration: none; padding: 8px 25px; border-radius: 25px; font-size: 1rem; font-weight: 500; transition: background 0.3s ease; cursor: pointer;}
.learn-btn:hover { background: rgba(255,255,255,0.15);}

@media (max-width: 900px) {
    .workspace-design { flex-direction: column; text-align: center; padding: 60px 30px;}
}

/* -----Hero Section--------- */
.hero { background: #f9f9f9; padding: 80px 200px 30px 200px; }
.hero-text { flex: 1;}
.hero-text h1 {  font-family: "Tinos", serif;  font-size: 2.5rem; font-weight: 400px; margin-bottom: 10px; color: #000; text-align: center;}
.hero-text p { font-family: "Tinos", serif; font-size: 1.2rem; padding: 10px 25px; color: #444;  font-weight: 500;  text-align:center;}
.hero-buttons a { text-decoration: none; padding: 12px 30px;  border-radius: 6px; font-weight: 500; margin-right: 10px; cursor: pointer;
                   font-size: 1rem; transition: 0.3s ease; }
  

.btn-primary { background: #319bae; color: #fff; border: none; padding: 12px 30px; ;cursor: pointer; border-radius: 6px;
               font-size: 1rem; transition: 0.3s ease;}
.btn-primary:hover { background: #247d8a;}
.btn-secondary { border: 1px solid #319bae; color: #319bae; }
.btn-secondary:hover { background: #319bae; color: #fff;}

/* === image gallary === */
.slider { width: 100%; overflow: hidden; position: relative; padding: 30px 0;}
.slider-track { display: flex; gap: 20px; animation: scroll 10s linear infinite; /* speed */}
.slider-track img { height: 300px; width: 300px; border-radius: 10px; object-fit: cover;}

@keyframes scroll {
  0% { transform: translateX(-50%); } /* start off screen left */
  100% { transform: translateX(0); }   /* move to right */
}

@media (max-width: 900px) {
  .hero {  padding: 40px 100px 10px 100px; }
  .slider-track img { height: 260px; width: 300px;}
}

@media (max-width: 480px) {
  .hero {  padding: 20px 50px 5px 50px; }
  .slider-track img { height: 180px; width: 220px;}
  .hero-text h1 {  font-size: 2rem; font-weight: 350px; margin-bottom: 8px; color: #000; text-align: center;}
  .hero-text p { font-size: 1rem; padding: 8px 20px; color: #444;  font-weight: 400;  text-align:center;}
  .hero-buttons a {  padding: 10px 25px; font-weight: 400; font-size: 1rem; }
}

/* Building Workspaces Section */
.workspace-building { position: relative; background-size: cover; background-position: center; color: #fff; min-height: 500px; display: flex; align-items: center; justify-content: center;}
.overlay-content { background: rgba(0, 0, 0, 0.55); padding: 80px; border-radius: 12px; max-width: 800px; text-align: left;}
.workspace-building h2 { font-family: "Tinos", serif;  font-size: 2.3rem; line-height: 1.3; margin-bottom: 20px;}
.workspace-building p { line-height: 1.6; margin-bottom: 25px; font-size: 1rem;}

.btn-group { display: flex; gap: 20px; align-items: center;}
.btn-outline { border: 1px solid #fff; color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 6px; transition: background 0.3s ease;}
.btn-outline:hover { background: rgba(255,255,255,0.2);}

.btn-link { color: #fff; text-decoration: none; font-weight: 500; transition: opacity 0.3s ease;}
.btn-link:hover { opacity: 0.8;}

@media (max-width: 480px) {
    .workspace-building h2 {  font-size: 2rem;}
}

/* ------ Trust Section -------- */
.trust-section { padding: 30px 50px;}
.trust-section .container{ padding: 30px 50px;}
.trust-section .container h2{ font-size: 3rem;}
.trust-section .container h2 p { padding: 10px; font-size: 1.2rem; font-weight: 500;}

.trust-section .container-text {padding: 15px 30px; display: flex; gap: 50px; text-align: center; justify-content: center; transition: all 0.3s ease;}
.trust-section .container-text:hover{  transform: translateY(-5px);}
.trust-section .container-text h3{ border: 1px solid #e0e0e0; padding: 30px; border-radius: 10px;justify-content: center;}
.trust-section .containet-img{  padding: 35px 50px; display:flex; gap: 20px;}
.trust-section .containet-img img{ width: 400px;}
 
.trust-right { text-align: center; padding: 10px 20px;}
.trust-right p { color: #000000; margin-bottom: 20px; font-size: 1.2rem; font-weight: 600;}
.trust-right ul { list-style: none; padding: 0; margin: 20px 0;}
.trust-right li { display: flex; align-items: center; margin-bottom: 12px; color: #000000; font-size: 1.2rem;}
.trust-right .material-icons { font-size: 20px; color: #00bcd4; margin-right: 10px;font-weight: 500;}

.trust-buttons {     justify-content: left; display: flex;}

@media (max-width: 900px) {
    .trust-section .container h2{ font-size: 2rem; }
    .trust-section .container  p { padding: 10px; font-size: 1rem; font-weight: 500;}
    .trust-section .container-text{ gap: 30px;}
    .trust-section .container-text h3{ font-size: 1rem; padding: 20px;}
    .trust-section .containet-img{ display: grid; align-items: center; justify-content: center; justify-items: center;}
    .trust-buttons { display: grid; justify-content: center;}
    .trust-right p { margin-bottom: 10px; font-size: 1rem; font-weight: 500;}
    .trust-right li { display: flex; align-items: center; margin-bottom: 10px;font-size: 0.9rem;}
}
@media (max-width: 480px) {
    .trust-section .container h2{ font-size: 1.5rem;}
    .trust-section .container  p { padding: 9px; font-size: 0.9rem; font-weight: 400;}
    .trust-section .container-text{ gap: 15px; display: flex; flex-wrap: wrap;}
    .trust-section .container-text h3{ font-size: 14px; font-weight: 600; padding: 10px;}
    .trust-section { padding: 20px 30px;}
    .trust-section .container{ padding: 20px 30px;}
}        
 
/* service card Design */
.services { padding: 80px 5%; background:#f2f2f2; text-align: center;}
.section-title { font-family: "Tinos", serif; font-size: 2.5rem; color: #000000; margin-bottom: 10px;}
.section-subtitle {  max-width: 650px;  margin: 0 auto 50px; color: #555;  font-size: 1rem;}
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;}

.service-card {background: #fff; border: 1px solid #eaeaea; border-radius: 12px; padding: 40px 25px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); transition: all 0.3s ease }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); border-color: #319bae;}
.service-card span { font-size: 48px; color: #319bae; margin-bottom: 15px;}
.service-card h3 { font-family: "Tinos", serif; font-size: 1.3rem; margin-bottom: 10px;}
.service-card p {font-size: 0.95rem; color: #555;}
.cta { margin-top: 50px;}


/* service card Design symbole */
.service-card span { font-size: 48px; color: #319bae; display: inline-block; margin-bottom: 15px;}

@media (max-width: 900px) { 
    .service-card { padding: 20px 15px;}
    .service-card h3 { font-size: 1rem; margin-bottom: 9px;}
.service-card p {font-size: 0.90rem;}
.cta { margin-top: 30px;}
}
@media (max-width: 480px){
.services { padding: 40px 4%;} 
.section-subtitle {margin: 0 auto 30px;  }
}

/* === Quote Section === */
.quote-section { background: #e3e3e3; padding: 80px 10%; display: flex; justify-content: center;}
.quote-container { max-width: 1000px; width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px;}
.quote-text { flex: 1 1 400px;}
.quote-text h2 {font-family: "Tinos", serif; font-size: 1.8rem; margin-bottom: 10px;}
.quote-form { display: flex; flex-direction: column; gap: 10px; flex: 1 1 300px;}
.quote-form input { padding: 12px 15px; border: 1px solid #ccc; border-radius: 8px; outline: none;}
.quote-form button { padding: 12px 20px; background: #319bae; border: none; color: white;  border-radius: 8px; cursor: pointer; font-weight: 600;}
.quote-form button:hover { background: #277e8a;}
.quote-form small { color: #777; font-size: 0.8rem;}

/* === Footer Section === */
.footer { background: #ffffff; color: #111; }

/* --- TOP CONTACT BAR (blue) --- */
/* each contact block inside the top bar */
.footer-box { display: flex; align-items: center;  gap: 18px;  min-width: 220px; }
/* icon wrapper (for <img> icons or inline svgs) */
.footer-icon { width: 56px; height: 56px; flex: 0 0 56px; display: inline-block; object-fit: contain;
  filter: brightness(0) invert(1); /* make PNG icons white if they were black */}
/* label + text inside the box */
.footer-box h3 {
  margin: 0; font-size: 20px; font-weight: 700; color: #fff;    /* white text in blue bar */
  line-height: 1;}

.footer-box p {
  margin: 4px 0 0;   color: #fff; /* white text in blue bar */
  font-size: 15px; font-weight: 600;  line-height: 1.25;}

/* small tweak: on narrow screens show text on one line if possible */
.footer-box div { min-width: 0; }

/* --- bottam CONTACT BAR (blue) --- */
.footer-top {background: #0094ab; color: #fff;
  display: flex; justify-content: space-around; align-items: center; padding: 26px 100px; gap: 30px;
  flex-wrap: wrap; box-shadow: 0 1px 0 rgba(0,0,0,0.04) inset;}

  .footerbottam{ display: flex; padding: 10px 100px; gap: 10px; align-items: center;justify-content: space-around; margin-bottom: 12px;}
/* --- LOGO AREA --- */
.footer-logo img { height: 55px; }

.footerbottam .f-content{ text-align:start; padding: 20px; align-items: center; width: 40rem;}
.footerbottam .f-content h2{ font-size: 1.5rem; font-family: "Montserrat", sans-serif; margin-bottom: 10px;}
.footerbottam .f-contentnt p{ font-size: 1rem;}

.footer-links{ justify-content: center; text-align: center;}
.footer-links a{ list-style: none; color: #000;font-size: 16px;font-weight: 500; text-decoration: none;transition: color .18s ease, transform .18s ease;
  display: flex; margin: 20px 5px;}
.footer-links a:hover { color: #007a8a; transform: translateY(-2px); }

/* --- FOOTER COPYRIGHT --- */
.footer .copyright { border-top: 1px solid #f0f0f0; padding: 18px 20px 40px;
   margin: 0 40px; text-align: center; color: #222; font-size: 15px;}
   @media (max-width: 900px) {
    .footer-logo img { height: 45px; }
       .footerbottam {padding: 10px 50px;}
       .footerbottam .f-content{ padding: 10px;  width: 25rem }
       .footerbottam .f-content h2{ font-size: 1.2rem; margin-bottom: 8px;}
       .footerbottam .f-contentnt p{ font-size: 10px }
    }
     @media (max-width: 480px) {
          .footerbottam{ display: block; }
     }
     