/* ========== BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Reset default padding and margin */

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Ensure sections don't overflow */
section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Optional: remove any specific padding/margin in sections if needed */
section,
.header,
.top-bar {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


body {
  font-family: 'Segoe UI', 'Poppins', 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Add spacing for fixed header + top-bar */
body::before {
  content: "";
  display: block;
  height: 108px;
  /* top-bar (28px) + header (80px) */
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #2b2b2b;
  color: white;
  font-size: 13px;
  padding: 6px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar .left span {
  margin-right: 10px;
}

.top-bar .right a {
  color: #fff;
  margin-left: 10px;
}

.top-bar a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  position: fixed;
  top: 28px;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.logo img {
  height: 45px;


}

/* Centered Desktop Nav */
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  font-weight: 500;
  padding: 8px 5px;
  color: black;
  text-decoration: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  flex-direction: column;
  z-index: 99;
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: black;
}

.dropdown:hover .dropdown-content,
.dropdown-content.active {
  display: flex;
}

/* Quote Button */
.quote-button-wrapper {
  margin-left: auto;
}

.quote-btn {
  background: #e30613;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 15px;
  text-decoration: none;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
  z-index: 1001;
  padding-top: 20px;
  margin-right: 100px;
  position: absolute;
  top:30px;
  right: 10px;

}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 1002;
  display: none;
  flex-direction: column;
  padding: 40px;
  overflow-y: auto;
}




.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-inner {
  width: 100%;
}

.close-btn {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  font-size: 16px;
  display: block;
  color: black;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}



.mobile-menu-inner {
  width: 100%;
  padding-top: 100px;
  /* pushes content below the top bar */
}


.close-btn {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: -60px;
  /* optional: fine-tune vertical position */
}

.top-bar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Submenu */
.has-submenu>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-top: 8px;
}

.submenu li {
  padding: 8px 0;
}

.submenu.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .desktop-nav,
  .quote-button-wrapper {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}

/* Default: Hide mobile logo on desktop */
.mobile-logo {
  display: none;
  
}



.mobile-logo img {
    width: 35%;
    height: auto;
    object-fit: contain;
    margin-top: 20px; /* Gives it breathing space */
}

.mobile-logo {
    display: flex;
    align-items: center;
    padding: 4px 0;
}




@media (min-width: 769px) {
  .mobile-logo {
    display: none !important;
  }
}





@media (max-width: 768px) {
  .mobile-logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
  }

  .mobile-logo img {
    width: 35%;
    height: auto;
    object-fit: contain;
    margin-top: 6px; /* or adjust as needed */
    vertical-align: middle;
  }

  .logo {
    display: none;
  }
}



/* Mobile: Show logo in header */
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
    max-width: 120px;
    padding: 8px 0;
  }

  .mobile-logo img {
    width: 50%;
    height: auto;
    object-fit: contain;
    
  }
}


@media (max-width: 768px) {
  .logo {
    display: none;
    top: 10px;
  }
}



/* Reuse the same button style */
/* base button (desktop size)  */
.quote-btn {
  background: #e30613;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;      /* desktop font */
}

/* mobile wrapper hidden by default */
.mobile-quote-button {          /* you already have this block */
  display: none;
  margin-top: 30px;
  text-align: center;
  
}

/* ==== MOBILE OVERRIDES ==== */
@media (max-width: 768px) {
  .quote-button-wrapper {       /* hide desktop button */
    display: none;
  }

  .mobile-quote-button {        /* show mobile version */
    display: block;
  }

  /* make the button slimmer on mobile */
  .mobile-quote-button .quote-btn {
    font-size: 14px;     /* smaller text */
    padding: 6px 14px;   /* tighter padding */
    border-radius: 3px;  /* slightly smaller corners */
    
  }
}











.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  max-width: 90%;
}

.slide-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.slide-content .btn {
  background: #f55861;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #f55861;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.2rem;
  }

  .slide-content .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .prev,
  .next {
    font-size: 20px;
    padding: 10px;
  }
}


/* === Slider Styles (Desktop Default) === */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
}

.slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

/* === Responsive Styles for Mobile Devices === */
@media (max-width: 768px) {
  .slide img {
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    object-position: center top;
  }

  .slide-content h2 {
    font-size: 1.2rem;
    padding: 10px;
    text-align: center;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}















.about-us {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 50%;
}

.about-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  position: sticky;
  top: 0;
  background: #f9f9f9;
  padding: 10px 0;
  z-index: 10;
}

/* Accordion */
.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-toggle {
  background: #e30613;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 20px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-toggle:hover {
  background: #c30511;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.accordion-item.active .accordion-panel {
  max-height: 1000px;
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .accordion-toggle {
    font-size: 1rem;
  }
}



.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.accordion-item.active .accordion-panel {
  /* Padding will be dynamically handled in JS */
}

.services {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.services-header h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.services-header h3 {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 20px;
}

.services-header h3 strong {
  color: #e30613;
}

.services-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Styles */
.service-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 2rem;
  color: #e30613;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-card .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #e30613;
  transition: transform 0.3s;
}

.service-card:hover .arrow {
  transform: translateX(5px);
}

/* Special for cards with background image or overlay */
.image-card {
  background-image: url('../images/service-bg.jpg');
  /* Optional background */
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.image-card * {
  position: relative;
  z-index: 1;
}

.image-card .icon,
.image-card .arrow {
  color: #fff;
}


.recent-work {
  padding: 80px 20px;
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
}

.recent-header {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.recent-header .left h5 {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.recent-header .left h2 {
  font-size: 2rem;
  color: #111;
}

.recent-header .left h2 strong {
  color: #e30613;
}

.recent-header .right a {
  color: #e30613;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.recent-header .right a:hover {
  color: #c30511;
}

/* Work Cards */
.work-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.work-card {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.work-card:hover {
  transform: scale(1.03);
}

.work-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  transition: background 0.3s ease;
}

.work-card:hover .overlay {
  background: rgba(0, 0, 0, 0.65);
}

.overlay p {
  font-size: 14px;
  margin: 0;
  opacity: 0.85;
}

.overlay h3 {
  font-size: 18px;
  margin-top: 5px;
}

.btn-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #e30613;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.work-card:hover .btn-circle {
  background: #e30613;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .recent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .recent-header .left h2 {
    font-size: 1.6rem;
  }
}



.why-choose-us {
  padding: 80px 40px;
  background: #fdf9f6;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-heading h5 {
  font-size: 20px;
  color: black;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
  justify-content: center;
}

.choose-item {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background-color: #f9f9f9;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.choose-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.choose-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.choose-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 20px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .choose-item {
    padding: 16px;
    text-align: left;
  }

  .choose-item h3 {
    font-size: 1.1rem;
  }

  .choose-item p {
    font-size: 0.9rem;
  }

  .choose-item img {
    height: auto;
    max-width: 100%;
    margin: 0 auto 16px;
    display: block;
  }
}




.testimonials {
  padding: 80px 20px;
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  text-align: center;
}

.testimonials-header h5 {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.testimonials-header h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.testimonials-header h2 strong {
  color: #e30613;
}

.testimonials-header .view-all {
  color: #e30613;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.testimonials-header .view-all:hover {
  color: #c30511;
}

/* Swiper container */
.testimonial-swiper {
  margin-top: 40px;
  padding: 20px 0 40px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 4px;
}

.testimonial-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #e30613;
}



/* ========== PARTNER SECTION ========== */
.partners {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.partner-header h5 {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.partner-header h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 15px;
}

.partner-header h2 strong {
  color: #e30613;
}

.partner-header p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Swiper Slide */
.partner-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-swiper img {
  width: 140px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}

.partner-swiper img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Pagination Styling */
.partner-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 0.6;
  margin: 0 6px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #e30613;
  opacity: 1;
  transform: scale(1.2);
}




.featured-ideas {
  display: flex;
  padding: 60px 0;
  background: #fff;
  overflow-x: hidden;
}

.left-panel {
  flex: 0 0 300px;
  background: #e30613;
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.left-panel h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.left-panel a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.scroll-gallery {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.scroll-track {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.scroll-track img {
  height: 400px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.scroll-track img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .featured-ideas {
    flex-direction: column;
  }

  .left-panel {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .scroll-gallery {
    margin-top: 20px;
  }

  .scroll-track img {
    height: 250px;
  }
}




.consultation {
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  padding: 60px 20px;
}

.consultation .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f8f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Left Section */
.consult-left {
  flex: 1 1 100%;
  padding: 30px;
  background: #f6f8f9;
}

.office-card {
  background: #e30613;
  color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.office-card i {
  font-size: 30px;
  margin-bottom: 10px;
}

.office-card h4 {
  margin-bottom: 10px;
}

.contact-info h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
}

.contact-info a {
  color: #e30613;
  text-decoration: underline;
}

/* Right Section */
.consult-right {
  flex: 1 1 100%;
  padding: 40px 30px;
  background: #fff;
}

.consult-right h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.consult-right form input,
.consult-right form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-bottom: 15px;
}

.radio-group label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.consult-right form button {
  background: #e30613;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.consult-right form button:hover {
  background: #c30511;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .consult-left,
  .consult-right {
    flex: 1 1 50%;
  }

  .consult-left {
    border-right: 1px solid #eee;
  }
}

@media (max-width: 480px) {
  .consult-right h2 {
    font-size: 20px;
  }

  .radio-group {
    flex-direction: column;
  }

  .radio-group label {
    margin-bottom: 5px;
  }
}



.main-footer {
  background-color: #ffffff;
  padding: 60px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  color: #444;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-column ul li:hover {
  color: #f02d2d;
}

.footer-column a {
  color: #f02d2d;
  text-decoration: none;
  margin-right: 8px;
  font-size: 16px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column input[type="email"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  width: 100%;
}

.footer-column button {
  margin-top: 10px;
  background-color: #f02d2d;
  color: white;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-column button:hover {
  background-color: #cc2323;
}

.footer-column .note {
  font-size: 0.85rem;
  margin-top: 10px;
  color: #777;
}



.about-banner {
  position: relative;
  height: 60vh;
  background-image: url('images/write1.png');
  /* Adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}

.about-banner-content {
  color: #fff;
  max-width: 800px;
}

.about-banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-banner {
    height: 40vh;
  }

  .about-banner-content h1 {
    font-size: 2rem;
  }

  .about-banner-content p {
    font-size: 1rem;
  }
}



.about-hero {
  padding: 80px 20px;
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
}

.about-hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-hero-text {
  flex: 1 1 50%;
}

.about-hero-text h5 {
  font-size: 14px;
  color: #e30613;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-hero-text h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-hero-text h1 span {
  color: #e30613;
}

.about-hero-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background-color: #e30613;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #c30511;
}

.about-hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-hero-text h1 {
    font-size: 2rem;
  }

  .about-hero-text p {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}




.highlight-section {
  padding: 80px 20px;
  background-color: #fff9f7;
}

.highlight-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.highlight-image {
  flex: 1 1 45%;
  text-align: center;
}

.highlight-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.highlight-content {
  flex: 1 1 50%;
}

.highlight-content h5 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #e30613;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.highlight-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

.highlight-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.highlight-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background-color: #e30613;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.highlight-btn:hover {
  background-color: #c30511;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-container {
    flex-direction: column;
  }

  .highlight-content h2 {
    font-size: 1.6rem;
  }

  .highlight-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}



.interior-expert-section {
  padding: 80px 20px;
  background-color: #fdfdfd;
}

.interior-expert-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.expert-image {
  flex: 1 1 45%;
  text-align: center;
}

.expert-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.expert-content {
  flex: 1 1 50%;
}

.expert-content h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e30613;
  margin-bottom: 10px;
}

.expert-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.expert-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.expert-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e30613;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.expert-btn:hover {
  background-color: #e30613;
}

/* Responsive */
@media (max-width: 768px) {
  .interior-expert-container {
    flex-direction: column;
    gap: 30px;
  }

  .expert-content h2 {
    font-size: 1.6rem;
  }

  .expert-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}



.kitchen-expert-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
}

.kitchen-expert-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.kitchen-text {
  flex: 1 1 50%;
}

.kitchen-text h5 {
  font-size: 14px;
  color: #e30613;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.kitchen-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.kitchen-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.kitchen-btn {
  background-color: #e30613;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.kitchen-btn:hover {
  background-color: #e30613;
}

.kitchen-image {
  flex: 1 1 45%;
  text-align: center;
}

.kitchen-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .kitchen-expert-container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .kitchen-text h2 {
    font-size: 1.5rem;
  }

  .kitchen-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}



.about-company-section {
  padding: 80px 20px;
  background-color: #fafafa;
}

.about-company-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.company-text {
  flex: 1 1 50%;
}

.company-text h5 {
  font-size: 14px;
  color: #e30613;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.company-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.company-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.company-metrics {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.metric h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 5px;
}

.metric p {
  font-size: 0.95rem;
  color: #777;
}

.company-btn {
  background-color: #e30613;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.company-btn:hover {
  background-color: #e30613;
}

.company-image {
  flex: 1 1 45%;
  text-align: center;
}

.company-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-company-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .company-text h2 {
    font-size: 1.6rem;
  }

  .company-metrics {
    justify-content: center;
  }
}




/* ABOUT BANNER */
.about-banner {
  position: relative;
  height: 60vh;
  background: url('images/write1.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
}

.about-banner-content {
  color: #fff;
  max-width: 800px;
}

.about-banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* HOW IT WORKS TIMELINE */
.how-it-works {
  background: #f9f9f9;
  padding: 60px 20px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #d4d4d4;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
}

.timeline-container.left,
.timeline-container.right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline-container.left .content,
.timeline-container.right .content {
  flex: 1;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.timeline-container.left .image,
.timeline-container.right .image {
  flex: 1;
  text-align: center;
}

.timeline-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.timeline-container h3 {
  color: #999;
  font-size: 1rem;
  margin-bottom: 5px;
}

.timeline-container h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.timeline-container ul {
  list-style: disc;
  padding-left: 20px;
}

.timeline-container ul li {
  margin-bottom: 5px;
  color: #444;
}

/* CTA BANNER */
.cta-banner {
  background: #e3dac9;
  padding: 60px 20px;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.cta-container span {
  color: #e30613;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #e30613;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 40vh;
  }

  .about-banner-content h1 {
    font-size: 2rem;
  }

  .timeline::after {
    left: 0;
  }

  .timeline-container {
    flex-direction: column;
  }

  .timeline-container.left .content,
  .timeline-container.right .content,
  .timeline-container.left .image,
  .timeline-container.right .image {
    flex: unset;
    width: 100%;
  }
}




.slider-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
}

.slider-heading h2 span {
  color: #e30613;
}

.slider-heading p {
  font-size: 1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 40px;
}





/*work page*/

/* Base styles */
.about-banner {
  position: relative;
  background: url('images/write1.png') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.about-banner-content {
  text-align: center;
  max-width: 800px;
}

.about-banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-banner-content p {
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-banner {
    height: 60vh;
  }

  .about-banner-content h1 {
    font-size: 2.25rem;
  }

  .about-banner-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 50vh;
  }

  .about-banner-content h1 {
    font-size: 1.75rem;
  }

  .about-banner-content p {
    font-size: 1rem;
  }
}





/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #f9f9f9;
  /* You can change this to a background-image if needed */
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/contact-bg.jpg');
  /* Optional background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.contact-container {
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* Left Column */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.contact-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Right Column */
.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  width: 48%;
}

.form-group.full-width {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #e30613;
  outline: none;
}

button[type="submit"] {
  background-color: #e30613;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background-color: #e30613;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .form-group {
    width: 100%;
  }
}




.split-hero-section {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px;
  color: #fff;
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-left-content {
  position: relative;
  max-width: 500px;
  z-index: 1;
}

.hero-left-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-left-content p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-right {
  width: 420px;
  background: #c49644;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  color: #fff;
}

.form-wrapper {
  width: 100%;
}

.form-wrapper h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.form-wrapper p {
  font-size: 14px;
  margin-bottom: 20px;
}

.form-wrapper form input,
.form-wrapper form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
}

.form-wrapper form button {
  width: 100%;
  padding: 12px 15px;
  background-color: #333;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-wrapper form button:hover {
  background-color: #222;
}

@media (max-width: 992px) {
  .split-hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding: 40px 20px;
  }
}




.home-interior-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.home-interior-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.interior-box {
  background: #fff;
  padding-bottom: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.interior-box:hover {
  transform: translateY(-5px);
}

.interior-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.interior-box h3 {
  font-size: 18px;
  margin: 15px 0 10px;
  font-family: 'Arial Black', sans-serif;
}

.circle-btn {
  border: 1px solid #000;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.circle-btn:hover {
  background: #000;
  color: #fff;
}



.interior-grid-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.interior-grid-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.interior-item {
  max-width: 100%;
}

.interior-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.interior-item h3 {
  font-size: 16px;
  margin: 15px 0 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
}

.circle-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.circle-btn:hover {
  background: #000;
  color: #fff;
}




.unique-team-carousel {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  text-align: center;
}

.unique-team-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.uniqueTeamSlider .swiper-slide {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.uniqueTeamSlider .swiper-slide:hover {
  transform: translateY(-10px);
}

.uniqueTeamSlider .swiper-slide img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.uniqueTeamSlider .swiper-slide h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.uniqueTeamSlider .swiper-slide p {
  font-size: 14px;
  color: #555;
}







/* Banner Area Styling */
.banner-area.mywork {
    background: url('images/write1.png') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

/* Optional dark overlay */
.banner-area.mywork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.banner-content.mywork {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content.mywork h1.mywork {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.banner-content.mywork p.mywork {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner-btn.mywork {
    background-color: #e30613;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.banner-btn.mywork:hover {
    background-color: #e30613;
}



/* Portfolio Section */
.portfolio-filters {
  text-align: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  background: #eee;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.filter-btn.active {
  background-color: #e30613;
  color: #fff;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.portfolio-item {
  width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-info {
  padding: 10px;
}

.portfolio-info p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.portfolio-info h4 {
  color: #222;
  font-size: 18px;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .portfolio-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .portfolio-item {
    width: 100%;
  }

  .filter-btn {
    width: 48%;
    font-size: 14px;
  }
}



.counter-section {
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  padding: 100px 20px;
  text-align: center;
}

.counter-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.counter-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.counter-box .icon {
  font-size: 32px;
  color: #e30613;
  margin-bottom: 10px;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #e30613;
  margin: 10px 0;
}

.counter-box p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 2.2rem;
  }
}



.process-section {
  background: linear-gradient(to right, #fff1f0, #ffe3e0);
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e30613;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.section-title {
  font-size: 2rem;
  color: #111;
  margin-bottom: 40px;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.process-step .icon {
  font-size: 36px;
  color: #e30613;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ✅ Responsive Tweaks */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.9rem;
  }

  .process-step {
    padding: 15px;
  }
}





