
  @import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@500;600;700;900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

  

/* ===================== #012034 primary color ===================== */
/* ===================== #265675 text ===================== */

/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html, body{
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a{
  text-decoration: none;
  color: var(--primary-color);
}
:root{
  --primary-color:#012034;
  --secondary-color:#265675;
  --text-color:#555;
  

}
/* ===== HERO BACKGROUND ===== */
.hero {
  height: 100vh;
  background: url('img/woodybg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  position: relative;
}





/* ===== HEADER / NAVBAR ===== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 15px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 999;
  height: 4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  
}

/* ===== LOGO SECTION ===== */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 35px;
  height: 35px;
  border-radius: 10%;
  background-image: url("img/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  font-size:25px;
  color: #012034;
  font-weight: 900;
}


/* ===== DESKTOP MENU ===== */
nav.menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav.menu ul li a {
  color: #012034;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

nav.menu ul li a:hover {
  color: #196ea7;
}

/* ===== HAMBURGER (HIDDEN IN DESKTOP) ===== */
.hamburger, #menu-toggle {
  display: none;
}

/* ===== RESPONSIVE STYLES (ONLY MOBILE) ===== */
@media (max-width: 830px) {

  /* Show hamburger */
  .hamburger {
    display: block;
    font-size: 24px;
    color: #003049;
    cursor: pointer;
  }

  .logo{
    font-size:20px;
  }

  .logo-circle {
    width: 28px;
    height: 28px;
    margin-bottom:4px;
  }

  /* Convert nav to sliding drawer */
  nav.menu {
    position: fixed;
    top: 0; left: -260px;
    width: 200px;
    height: 100vh;
    background: white;
    padding-top: 80px;
    transition: 0.3s ease;
    
  }


  nav.menu ul {
    flex-direction: column;
    padding-left: 30px;
    gap: 25px;
  }

  nav.menu ul li a {
    font-size: 17px;
    color: var(--secondary-color);
  }

  /* Slide menu when checkbox checked */
  #menu-toggle:checked + .hamburger + nav.menu {
    left: 0;
  }

  /* Hide desktop nav spacing issues */
  header {
    padding: 12px 20px;
  }
}

/* ===== HERO TEXT ===== */
.hero h1, .hero p, .btn {
  position: relative;
  z-index: 1;

}


.hero h1 { font-size: 65px; font-weight: 800; }
.hero p { margin-top: 14px; font-size: 18px; max-width: 650px; }

.btn {
  margin-top: 30px;
  padding: 10px 30px;
  background: #003049;
  color: white;
  text-decoration: none;
  font-weight: 100;
  border-radius:  5px;
  transition: 0.3s;
}

.btn:hover { background: var(--secondary-color); }

@media (max-width: 768px) {

  .hero{
    height: 60vh;
  }
  .hero h1 { 
    font-size:24px;
    padding-top: 5rem;
  
  }
  .hero p{
    font-size: 12px;
  }
  .btn{
    font-size: 10px; 
    font-weight: 100;
  }
}

@media (max-width: 1024px){
  .hero {
    background-attachment: scroll; /* Prevent lag / glitch on phones */
  }
}






/* ===================== ABOUT / WELCOME SECTION ===================== */

.about-section {
  padding: 120px 80px;

}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1250px;
  margin: auto;
}

/* ===== LEFT CONTENT ===== */
.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
   color: black;
}

.about-content h2 span {
  color: #265675;
  font-weight: 800;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 25px;
}

/* ===== FEATURES ===== */
.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature .icon img {
  width: 40px;
}

.feature h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #265675;
}

.feature p {
  color: #555;
  max-width: 400px;
}


/* ===== RIGHT IMAGE BLOCK ===== */
.about-image-box {
  position: relative;
}

.about-image-box img {
  width: 450px;
  border-radius: 2px;
}

/* ===== EXPERIENCE BOX ===== */
.years-box {
  position: absolute;
  top: -40px;
  right: -40px;
  background: #fff;
  border: 5px solid #265675;
  padding: 25px 30px;
  width: 260px;
  text-align: center;
}

.years-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.4;
}

.years-box h3 span {
  color: #265675;
}

.years {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.years .num {
  font-size: 55px;
  font-weight: 900;
}

.years p {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}


/* ===================== REVEAL EFFECT ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }



/* ===================== RESPONSIVE ===================== */

/* Big Tablets */
@media (max-width: 1100px) {
  .about-image-box img {
    width: 380px;
  }

  .years-box {
    top: -30px;
    right: -30px;
    width: 230px;
  }

  .years .num {
    font-size: 45px;
  }
}

/* Tablets / Mobile Landscape */
/* ===== MOBILE OVERLAP (Keep same style) ===== */
@media (max-width: 900px) {

  .about-section {
    padding: 70px 20px;
    
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

.feature .icon img {
  display: none;
}

  /* IMAGE CENTER & RESIZE */
  .about-image-box {
    width: 100%;
    max-width: 400px;
    margin: auto;
    position: relative;
  }

  .about-image-box img {
    width: 100%;
    border-radius: 5px;
    padding-top: 2rem;
  }

  /* KEEP OVERLAP ON MOBILE */
  .years-box {
    position: absolute;
    top: -2px;      /* adjust overlap */
    right: -10%;
    transform: translateX(80%);  /* center above image */
    
    width: 75%;      /* responsive width */
    max-width: 260px;
    padding: 10px 15px;
  }

  .years .num {
    font-size: 42px;
  }

  .years-box h3 {
    font-size: 16px;
  }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
  .years-box {
    top: -18px;
    width: 85%;
    max-width: 240px;
  }

  .years .num {
    font-size: 36px;
  }
}


/* Phones */
@media (max-width: 600px) {
  .about-section {
    padding: 70px 20px;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .feature .icon img {
    width: 32px;
  }

  .years-box {
    padding: 20px;
    width: 260px;
  }

  .years .num {
    font-size: 40px;
  }

  .years p {
    font-size: 12px;
  }

  .about-image-box img {
    width: 100%;
    max-width: 350px;
  }
}




/* ===================== SERVICES SECTION ===================== */
/* ================= SERVICE SECTION ================= */
  .services-section {
    padding: 80px 70px;
    background: white;
  }

  .services-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .services-header h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    color:black;
  }

  .services-header p {
    color: #555;
    font-size: 16px;
  }

  /* Containers */
  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  /* Each Service Box */
  .service-box {
    width: 30%;
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s ease;
  }

  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .service-box img {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
  }

  .service-box h3 {
    margin-bottom: 1px;
    font-size: 22px;
    font-weight: 600;
  }

  .service-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
  }


  /* ================= RESPONSIVE ================= */
  @media(max-width: 1024px) {
    .service-box {
      width: 45%;
    }
  }

  @media(max-width: 768px) {
    .services-section {
      padding: 60px 25px;
    }

    
    .service-box {
      width: 10%;
      padding: 15px 15px;
    }
  
    .service-box h3 {
    margin-bottom: 1px;
    font-size: 15px;
    font-weight: 500;
  }

  .service-box p {
    font-size: 10px;

  }


  }

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== EDITORIAL PROJECTS ===================== */

.editorial-projects {
  padding: 100px 80px;
  background: #fff;
  text-align: center;
}
.editorial-projects h2{
   font-size: 20px;
    font-weight: 300;
    margin-bottom: 50px;
    color:black;

}
.editorial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.editorial-item {
  background: #fff;
  text-align: left;
}

.editorial-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.editorial-text {
  padding: 20px 5px;
}

.editorial-tag {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: black;
}

.editorial-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
  color: #003049;
}

.editorial-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.editorial-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
}

.editorial-link:hover {
  text-decoration: underline;
}

/* VIEW ALL BUTTON (REFERENCE STYLE) */
.catalogue-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 36px;
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.catalogue-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-item img {
    height: 260px;
  }

  .editorial-projects {
    padding: 70px 20px;
  }
}


/* ===================== WORK PROCESS ===================== */
/* ===================== WORK PROCESS ===================== */


.work-process {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background image as a blurred, moving layer */
.work-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/neoclassical-style-interior-design-with-decor-furnishings.jpg') 
             center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.1); /* avoids blur edges */
  animation: bgMove 20s ease-in-out infinite alternate;
  z-index: -1;
  opacity: 0.9;
}

/* Content stays sharp */
.work-process * {
  position: relative;
  z-index: 1;
}

/* Subtle animated movement */
@keyframes bgMove {
  0% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-25px);
  }
}


/* TOP CONTENT */

.work-top h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  margin-bottom: 1  0px;
}

.work-top span{
  color: var(--secondary-color);
}

.process-text {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  max-width: 430px;
}

/* ===================== PROCESS CARDS ===================== */

.process-container {
  display: flex;
  gap: 40px;
  margin-top: 80px;
  justify-content: center;
  align-items: flex-start;
}

/* NORMAL SIZE SMALLER */
.process-card {
  width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(0,0,0,0.10);
  padding: 18px 18px 50px;
  cursor: pointer;
  position: relative;
  transition: 0.35s ease;
  overflow: hidden;
}

/* IMAGE */
.process-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* HEADING */
.process-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-card h3 span {
  color: var(--text-color);
  font-weight: 700;
}

/* DESCRIPTION */
.process-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* STEP NUMBER FADE */
.step-number {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 45px;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
}

/* STEP-DOWN LAYOUT */
.process-card:nth-child(1) { margin-top: 0px; }
.process-card:nth-child(2) { margin-top: 30px; }
.process-card:nth-child(3) { margin-top: 60px; }
.process-card:nth-child(4) { margin-top: 90px; }

/* HOVER POP-UP EFFECT */
.process-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 28px rgba(0,0,0,0.16);
}

/* ===================== SCROLL REVEAL ===================== */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left.visible { transform: translateX(0); }
.reveal.right.visible { transform: translateX(0); }

.reveal.left { transform: translateX(-60px); }
.reveal.right { transform: translateX(60px); }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .process-container {
    flex-wrap: wrap;
    width: 13rem;
  }
  .process-card {
    width: 45%;
  }
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 650px) {
  .work-top h2 { font-size: 28px; }
  .process-card {
    width: 100%;
  }
  .process-container { gap: 20px; }
  .process-card img { height: 180px; }

  
}




/* ===================== ABOUT ===================== */

.about-section {
  padding: 100px 80px;  /* Reduced size */
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* SMALL TITLE */

.about-top h2 {
  font-size: 35px;   /* Reduced */
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 30px;  /* Reduced */
}

.about-top h2 span {
  color: var(--secondary-color);
}

/* WRAPPER */
.about-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  justify-content: center;
}

/* LEFT SIDE */
.exp-num {
  font-size: 165px;   /* Reduced from 230px */
  line-height: 0.85;
  color: var(--primary-color);
  font-weight: 800;
}

.exp-text {
  margin-top: 15px;
  font-weight: 700;
  font-size: 18px;
}

/* IMAGES */
.abt-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.small-img {
  width: 260px;
  height: 290px;
  margin-top: 25px;
}

.big-img {
  width: 340px;
  height: 460px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 25px;
}

/* RIGHT SIDE TEXT */
.about-desc {
  color: #444;
  font-size: 14px;    /* Reduced from 15px */
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 18px;  /* Reduced */
}

/* LEARN BUTTON */
.learn-btn {
  display: inline-flex;
  align-items:center;
  gap: 8px;
  background: #fff;
  padding: 10px 20px;
  border: 1.5px solid var(--primary-color);
  border-radius: 30px;
  color: #111;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.learn-btn i {
  color: #fff;
  background: var(--primary-color);
  padding: 6px;
  border-radius: 50%;
  font-size: 13px;
}

.learn-btn:hover {
  transform: translateY(-4px);
  border-color: #111;
}

/* ===================== REVEAL ANIMATION ===================== */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left { transform: translateX(-60px); }
.reveal.right { transform: translateX(60px); }

.reveal.left.visible, .reveal.right.visible {
  transform: translateX(0);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
  .about-wrapper { flex-wrap: wrap; justify-content: center; text-align: center; }
  .exp-num { font-size: 120px; }
  .small-img { width: 240px; height: 260px; margin: 20px auto; }
  .big-img { width: 100%; max-width: 330px; height: 420px; margin: 0 auto 20px; }
  .about-right { text-align: center; }
  .about-desc { max-width: 100%; margin: auto; margin-bottom: 20px; text-align: center; }
  .learn-btn { margin: auto; }
}

@media (max-width: 600px) {
  .about-section { padding: 60px 20px; }
  .about-top h2 { font-size: 30px; }
  .exp-num { font-size: 90px; }
  .small-img, .big-img { width: 100%; height: auto; }
}







/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 100px 80px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.faq-title {
  font-size: 20px;
  font-weight: 300;
  margin-bottom:20px;
   color:black;
}

.faq-title span {
  color: var(--secondary-color);
}

.faq-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

/* CONTAINER */
.faq-container {
  max-width: 850px;
  margin: auto;
  text-align: left;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 5px;
  text-align: left;
  color: #111;
  position: relative;
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--secondary-color);
}

/* ANSWER BOX */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* REVEAL ANIMATION */
.faq-section.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}

.faq-section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-title { font-size: 20px; }
  .faq-section { padding: 70px 20px; }
  .faq-question { font-size: 15px; }
}




/* ===================== TESTIMONIAL SECTION ===================== */


.testimonials-section {
  padding: 100px 80px;
  position: relative;
  text-align: center;
  overflow: hidden; /* keeps blur inside */
}

/* BLURRED BACKGROUND */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/elegant-minimal-interior-design.jpg') center/cover no-repeat;
  filter: blur(2px) brightness(1);
  transform: scale(1.15); /* prevents edge gaps */
  z-index: -1;
}

/* OPTIONAL: slight overlay to darken */
.testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* remove if not needed */
  z-index: -1;
}


.section-title {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 50px;
   color:black;
}


/* GRID */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  overflow: visible !important; /* fix for hover clipping */
}

/* ===================== CARD ===================== */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-left: 5px solid var(--text-color);
  border-bottom: 5px solid var(--text-color);
  
  position: relative;
  transform: translateY(0);
  
  transition: 
    transform .45s cubic-bezier(.19,1,.22,1),
    box-shadow .45s cubic-bezier(.19,1,.22,1);
}

/* HOVER ANIMATION (MOVES UP) */
.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

/* COMMENT TEXT */
.comment {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}

/* NAME */
.client-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #012034;
}

/* STAR RATING */
.rating {
  font-size: 20px;
  color: var(--primary-color);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .testimonials-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 20px;
  }
  .section-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 25px;
  }
  .comment {
    font-size: 14px;
  }
}





/* ===================== CONTACT SECTION ===================== */
.contact-section {
  padding: 100px 80px; /* reduced */
   background: rgba(245, 245, 245, 0.47);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-title {
 font-size: 20px;
 font-weight: 300;
 margin-bottom: 20px;
 color:black;
}

.contact-title span { color: var(--secondary-color); }

.contact-sub {
  color: #555;
  font-size: 15px;
  margin-bottom: 10px;
}

/* FLEX WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 25px; /* reduced */
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* FORM CARD */
.contact-form {
  width: 45%;
  min-width: 300px;
  background: #fff;
  padding: 22px 25px 25px; /* reduced */
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.form-group label span { color: red; }

.form-group input,
.form-group select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
  font-size: 14px;
  outline: none;
  transition: .3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
}

/* BUTTON */
.send-btn {
  margin-top: 8px;
  padding: 12px;
  width: 100%;
  border: none;
  background: var(--primary-color);
  font-weight: 700;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: .3s;
}

.send-btn:hover { background: var(--secondary-color); }

/* MAP + DETAILS */
.contact-info {
  width: 45%;
  min-width: 300px;
  text-align: left;
}

.map-box {
  width: 100%;
  height: 300px; /* reduced */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px; /* reduced */
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.map {
  width: 100%;
  height: 100%;
  border: none;
}

.office-details h3 {
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 19px;
}

.office-details p {
  margin: 3px 0; /* reduced */
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-details i {
  color: var(--primary-color);
  font-size: 16px;
}

/* CONTACT BOX CARD */
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Title */
.office-details h3 {
  font-weight: 800;
  font-size: 19px;
  text-align: center;
  margin-bottom: 5px;
}

/* Action Buttons */
.office-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}

.office-btn {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  color: #fff;
}

.office-btn i { margin-right: 8px; color: white; }

/* Colors */
.office-btn.whatsapp { background: #003049; } /* Dark Blue theme */
.office-btn.mail { background: #003049; }

.office-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Map margin */
.map-box {
  margin-bottom: 5px !important;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section { padding: 60px 20px; }
  .contact-wrapper { gap: 15px; }
  .map-box { height: 200px; }
  .contact-form, .contact-info { width: 100%; }
}

@media (max-width: 600px) {
  .contact-title { font-size: 20px; }
  .office-actions { 
    flex-direction: column;
    align-items: center;
    justify-content: center; 
  }

  .office-actions a {
    font-size: 12px;

  }
 
}
/* REVEAL ANIMATION (global) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Floating contact buttons */
.float-container {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  align-items: flex-end;
  pointer-events: auto;
}

/* Individual button base */
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  height: 56px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
  opacity: 1;
  will-change: transform, opacity;
}

/* icons */
.float-btn i {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

/* small text label */
.float-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* specific colors */
.float-btn.whatsapp {
  background: linear-gradient(180deg,#25d366,#1da851);
}
.float-btn.call {
  background: linear-gradient(180deg,#0b56a3,#064a8a);
}

/* hover/focus */
.float-btn:hover,
.float-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  text-decoration: none;
  outline: none;
}

/* accessible focus */
.float-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.16);
  outline-offset: 3px;
}

/* small round icon-only variant when space is tight */
.float-container.compact .float-btn {
  padding: 0;
  width: 56px;
  border-radius: 50%;
  justify-content: center;
}

.float-container.compact .float-label {
  display: none;
}

/* RESPONSIVE: on narrow screens, center horizontally and show icons only */
@media (max-width: 520px) {
  .float-container {
    right:20%;
    transform: translateX(100%);
    bottom: 18px;
    flex-direction: column;
    gap: 12px;
    align-items:right;
  }

  /* show smaller buttons */
  .float-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
  }

  .float-label { display: none; }
}

/* OPTIONAL: hide on print */
@media print {
  .float-container { display: none !important; }
}





/* ===================================================================
                         FOOTER
=================================================================== */
.main-footer {
  background: var(--primary-color);
  padding: 70px 50px 25px;
  color: #ddd;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-box h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-box h4 {
  margin-top: 12px;
  font-size: 15px;
  color: white;
}

.footer-box p, .footer-box a {
  display: block;
  margin: 6px 0;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.5;
}

.footer-box p i { color: #ccc; margin-right: 6px; }
.footer-box a:hover, .footer-box p:hover { color: var(--secondary-color); }

.footer-socials { margin-top: 10px; }
.footer-socials a {
  display: inline-block;
  font-size: 18px;
  margin: 0 6px;
  color: #ccc;
  transition: .3s;
}
.footer-socials a:hover { color: var(--secondary-color); }

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 45px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover { color: var(--secondary-color); }

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
  .footer-container { gap: 50px; }
  .footer-box p, .footer-box a { font-size: 13px; }
}

@media (max-width: 768px) {
  .main-footer { padding: 50px 25px 25px; }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .footer-box h3 { font-size: 17px; }
  .footer-box p, .footer-box a { font-size: 13px; }
}

@media (max-width: 450px) {
  .footer-socials a { font-size: 17px; margin: 0 4px; }
  .footer-bottom p { font-size: 12px; }
}




