:root {
  --primary: #E53935;     /* Red */
  --secondary: #2E7D32;   /* Green */
  --dark: #1A1A1A;
  --light: #F5F5F5;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}



/* FULL HEADER FIXED */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.4s ease;
}

/* TOP HEADER */
.top-header {
  background: rgba(252, 252, 252, 0.6);
  backdrop-filter: blur(30px);
  padding: 10px 0;
  color: #fff;
  transition: 0.3s;
}

/* NAVBAR */
.glass-navbar {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

/* SCROLL EFFECT */
.main-header.scrolled .top-header {
  padding: 5px 0;
  background: rgba(0,0,0,0.9);
}

.main-header.scrolled .glass-navbar {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}




/* TOP HEADER */
.top-header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 0;

  
}

.navbar-toggler{
    color: #fff;
}

/* NAVBAR */
.glass-navbar {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  z-index: 999;
}

/* NAV LINKS */
.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown-menu {
  background: rgba(0,0,0,0.9);
  border: none;
  min-width: 220px;
}

.dropdown-item {
  color: #fff;
  padding: 10px 15px;
}

.dropdown-item:hover {
  background: #E53935;
}

/* SUBMENU */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
}

/* SHOW SUBMENU */
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

/* BUTTON */
.btn-call {
  background: linear-gradient(45deg, #E53935, #8E24AA);
  color: #fff;
  border-radius: 25px;
  padding: 6px 18px;
}

/* SUBMENU POSITION */
.dropdown-submenu {
  position: relative;
}

/* HIDE SUBMENU */
.dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}

/* SHOW */
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: relative;
    left: 0;
  }
  .email{
    display: none;
}

/* BUTTON */
.btn-call {
  background: linear-gradient(45deg, #E53935, #8E24AA);
  color: #fff;
  border-radius: 12px;
  padding: 6px 12px;
  font-size : 12px;
}

}

.email{
    color: #E53935;
    letter-spacing: 0.10px;
    align-items: flex-end;
  
}

.email i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  background: #ffffff;
  color: #E53935;

  border-radius: 50%;
  font-size: 14px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SLIDE IMAGE */
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: transform 6s ease;
}

/* ZOOM EFFECT */
.swiper-slide-active .hero-img {
  transform: scale(1.08);
}

/* BUTTON STYLE */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 45px;
  height: 45px;
}

/* DOT STYLE */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .hero-section {
    height: 90vh;
  }

  .hero-img {
    height: 90vh;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }

  .hero-img {
    height: 75vh;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* clean mobile */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-section {
    height: 65vh;
  }

  .hero-img {
    height: 65vh;
  }
}

/* SECTION BACKGROUND */
.stats-section {
  background: linear-gradient(to right, #0a1a16, #000);
  color: #fff;
  padding: 80px 0;
}

/* HEADING */
.stats-section h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-consult {
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-consult:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ICON BOX */
.stat-box {
  text-align: center;
}

/* ICON CIRCLE */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8E24AA, #E53935);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle i {
  font-size: 30px;
  color: #fff;
}

/* TEXT */
.stat-box h3 {
  font-size: 32px;
  margin: 5px 0;
}

.stat-box p {
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-section {
    text-align: center;
  }

  .stats-section h2 {
    font-size: 28px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .stat-box {
    margin-bottom: 20px;
  }
}


/* SECTION */
.why-section {
  padding: 80px 0;
  background: #f4f4f4;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* 5 CARD LAYOUT */
.col-card {
  width: 20%;
  padding: 10px;
}

/* FLIP CARD */
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* HOVER EFFECT */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* FRONT */
.flip-front {
  background: #fff;
  border: 1px solid #ddd;
}

.flip-front i {
  font-size: 40px;
  color: #8E24AA;
  margin-bottom: 10px;
}

.flip-front h5 {
  font-size: 16px;
}

/* BACK */
.flip-back {
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
  transform: rotateY(180deg);
}

/* HOVER LIFT */
.flip-card:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .col-card {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .col-card {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .col-card {
    width: 100%;
  }
}


/* SECTION */
.partner-section {
  background: linear-gradient(to right, #0a1a16, #000);
  padding: 30px 0;
  color: #fff;
}

/* FLEX ROW */
.partner-row {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: nowrap;
  justify-content: center;
}

/* TEXT */
.partner-text {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

/* BRAND */
.brand {
  font-weight: 700;
}

/* SMALL */
.partner-text small {
  font-size: 14px;
  margin-left: 5px;
  color: #ccc;
}

/* LOGOS */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* IMAGE */
.partner-logos img {
  height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

/* HOVER */
.partner-logos img:hover {
  transform: scale(1.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .partner-row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .partner-text {
    font-size: 22px;
  }

  .partner-logos img {
    height: 35px;
  }
}


/* SECTION */
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* TITLE */
.about-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* BUTTON */
.btn-about {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-about:hover {
  transform: translateY(-3px);
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
}

/* MAIN IMAGE */
.main-img img {
  width: 100%;
  border-radius: 15px;
}

/* PROFILE IMAGE */
.profile-img {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-img img {
  width: 100%;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  transition: 0.3s;
}

/* HOVER EFFECT */
.profile-img:hover .overlay {
  transform: translateY(0);
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 50px 20px;
    text-align: center;
  }

  /* STACK FIX */
  .about-images {
    margin-bottom: 30px;
  }

  .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* MAIN IMAGE */
  .main-img img {
    width: 100%;
    border-radius: 12px;
  }

  /* PROFILE IMAGE */
  .profile-img {
    position: relative;
    width: 180px;
    margin-top: -60px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fff;
            left: 10px;
  }

  .profile-img img {
    width: 100%;

  }

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  transform: translateY(100%);
  transition: 0.3s;
}

/* HOVER EFFECT */
.profile-img:hover .overlay {
  transform: translateY(0);
}

  .overlay h5 {
    font-size: 14px;
  }

  /* HOVER EFFECT */
.profile-img:hover .overlay {
  transform: translateY(0);
}

  .overlay p {
    font-size: 12px;
  }

  /* TEXT */
  .about-title {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* BUTTON */
  .btn-about {
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 14px;
  }
}

.img-box img {
  transition: 0.3s;
}

.img-box:hover img {
  transform: scale(1.05);
}

/* ================= STATS ================= */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* ITEM */
.stat-item {
  flex: 1;
  min-width: 120px;
}

/* NUMBER */
.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #8E24AA;
  margin-bottom: 5px;
}

/* TEXT */
.stat-item p {
  font-size: 14px;
  color: #333;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-stats {
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 26px;
  }

  .stat-item p {
    font-size: 13px;
  }
}

.counter {
  animation: fadeUp 1s ease;
}

/* SECTION */
.projects-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* CARD */
.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  text-align: center;
  color: #fff;
  font-weight: 500;

  background: linear-gradient(135deg, #8E24AA, #E53935);
}

/* MOBILE */
@media (max-width: 768px) {
  .project-card img {
     height: 600px;
  }
}

/* SECTION */
.testimonial-section {
  padding: 80px 0;
  background: linear-gradient(to right, #0a1a16, #000);
  color: #fff;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* CARD */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* NAME */
.testimonial-card h5 {
  margin: 0;
  font-size: 16px;
}

/* LOCATION */
.testimonial-card span {
  font-size: 13px;
  color: #ccc;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
}


/* SECTION */
.process-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* TITLE */
.section-title {
  font-size: 38px;
  font-weight: 600;
}

.section-subtitle {
  color: #777;
  margin-bottom: 50px;
}

/* WRAPPER */
.process-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

/* CARD */
.process-card {
  width: 200px;
  text-align: center;
}

/* IMAGE */
.img-box {
  border-radius: 15px;
  overflow: hidden;
}

.main-img img{
  height: auto !important;
}

.profile-img img{
  height: auto !important;
}
.img-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: 0.3s;
}

/* HOVER */
.process-card:hover img {
  transform: scale(1.1);
}

/* NUMBER */
.step-no {
  display: block;
  color: #8E24AA;
  font-weight: bold;
  margin-top: 10px;
  size: 29px;
}

/* TITLE */
.process-card h4 {
  margin: 8px 0;
}

.process-card h4 span {
  color: #8E24AA;
  font-size: 26px;
}

/* TEXT */
.process-card p {
  font-size: 13px;
  color: #555;
}

/* ARROW */
.arrow {
  font-size: 24px;
  color: #8E24AA;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .process-wrapper {
    flex-direction: column;
  }

  .process-card {
    width: 100%;
    max-width: 300px;
  }

  .arrow {
    transform: rotate(90deg); /* vertical arrow */
  }

  .img-box img {
    height: 180px;
  }
}


/* SECTION */
.services-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* CARD */
.service-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s;
}

/* TITLE */
.service-card h5 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.05);
}

.service-card:hover h5 {
  color: #8E24AA;
}

/* HOVER LIFT */
.service-card:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
}


/* SECTION */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(to right, #0a1a16, #000);
  color: #fff;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* IMAGE */
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

/* IMAGE STYLE */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}

/* SECTION */
.partners-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
}

/* MAIN LOGO */
.main-partner img {
  height: 60px;
}

.main-partner p {
  font-size: 14px;
  color: #666;
}

/* SLIDER LOGO */
.partnerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partnerSwiper img {
  height: 120px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s;
  background-color: #000;
}

/* HOVER */
.partnerSwiper img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .partnerSwiper img {
    height: 90px;
  }
}

/* SECTION */
.parallax-section {
  background: url('./img/main-slider/s1.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  height: 400px;
  position: relative;
}

/* OVERLAY */
.parallax-overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.parallax-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.parallax-section p {
  color: #ddd;
  margin: 15px 0;
}

/* BUTTON */
.btn-parallax {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-parallax:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 300px;
  }

  .parallax-section h2 {
    font-size: 24px;
  }
}

/* SECTION */
.video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1a16, #000);
}

/* TITLE */
.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

section-titles{
    font-size: 38px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 50px;
}

/* CARD */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 10px;
  transition: 0.4s;
}

/* VIDEO FRAME */
.video-card iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  border: 0;
}

/* HOVER EFFECT */
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* GLOW BORDER */
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* SWIPER FIX */
.swiper-slide {
  height: auto;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .section-title {
    font-size: 26px;
  }

  .video-card iframe {
    height: 200px;
  }

}

  
/* SECTION */
.cta-section {
  padding: 80px 0;
  background: url('./img/bg.svg') repeat;
}

/* LEFT TEXT */
.cta-text .tag {
  color: #8E24AA;
  letter-spacing: 3px;
  font-size: 12px;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 15px 0;
}

.cta-text p {
  color: #555;
}

/* FORM CARD */
.cta-form {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* INPUTS */
.cta-form input,
.cta-form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* BUTTON */
.btn-cta {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .cta-text h2 {
    font-size: 28px;
  }
}


/* FOOTER */
.footer-section {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 0 0;
}

/* LOGO */
.footer-logo {
  height: 70px;
}

/* HEADINGS */
.footer-section h5 {
  color: #fff;
  margin-bottom: 15px;
}

/* LINKS */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #E53935;
}

/* CONTACT ICON */
.footer-section i {
  margin-right: 8px;
  color: var(--primary);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}


/* SECTION */
.about-header {
  position: relative;
  background: url('/img/bg.jpg') no-repeat center center/cover;
  height: 520px;
}

/* OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.about-header-content {
  height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.about-header-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}

/* BREADCRUMB */
.about-header-content p {
  color: #ddd;
  margin-top: 10px;
  font-size: 15px;
}

.about-header-content a {
  color: #fff;
  text-decoration: none;
}

.about-header-content span {
  margin: 0 5px;
  color: #8E24AA;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-header {
    height: 320px;
  }

  .about-header-content {
    height: 420px;
    align-items: center;
    text-align: center;
  }

  .about-header-content h1 {
    font-size: 30px;
  }

}

/* SECTION */
.about-page-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* CONTENT */
.about-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 15px;
}

/* IMAGE WRAPPER */
.about-images {
  position: relative;
}

/* MAIN IMAGE */
.main-img img {
  width: 100%;
  border-radius: 20px;
}

/* PROFILE IMAGE */
.profile-img {
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 150px;
  border-radius: 15px;
  overflow: hidden;
}

/* PROFILE IMAGE */
.profile-img img {
  width: 100%;
  border-radius: 15px;
}

/* OVERLAY */
.profile-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(142,36,170,0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

/* HOVER */
.profile-img:hover .overlay {
  opacity: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-content {
    text-align: center;
    margin-top: 40px;
  }

  .profile-img {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0;
  }

}

/* SECTION */
.about-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8E24AA, #E53935);
  color: #fff;
}

/* BOX */
.stat-box {
  padding: 20px;
}

/* NUMBER */
.stat-box h2 {
  font-size: 50px;
  font-weight: 700;
}

/* TEXT */
.stat-box p {
  font-size: 16px;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stat-box h2 {
    font-size: 32px;
  }
}

/* SECTION */
.mission-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* CARD */
.mission-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ICON */
.mission-card .icon {
  font-size: 40px;
  color: #8E24AA;
  margin-bottom: 15px;
}

/* TITLE */
.mission-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* TEXT */
.mission-card p {
  color: #555;
  line-height: 1.7;
}

/* HOVER */
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .mission-card {
    padding: 25px;
  }
}


/* SECTION */
.kitchen-showcase {
  padding: 80px 0;
  background: #f5f5f5;
}

/* HEADER */
.kitchen-header .tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8E24AA;
}

.kitchen-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 10px 0;
}

.kitchen-header p {
  font-weight: 500;
  color: #333;
}

/* IMAGE */
.kitchen-image {
  margin-top: 30px;
}

.kitchen-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.kitchen-image img:hover {
  transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {

  .kitchen-header h2 {
    font-size: 30px;
  }

}

/* SECTION */
.kitchen-features {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.kitchen-features h2 {
  font-size: 36px;
  font-weight: 600;
}

.kitchen-features p {
  color: #666;
}

/* CARD */
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: #f9f9f9;
  transition: 0.3s;
}

/* ICON */
.feature-card i {
  font-size: 35px;
  color: #8E24AA;
  margin-bottom: 15px;
}

/* TITLE */
.feature-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
  font-size: 14px;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .kitchen-features h2 {
    font-size: 26px;
  }
}

/* SECTION */
.kitchen-content {
  padding: 80px 0;
  background: #f8f8f8;
}

/* HEADER */
.content-header .tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8E24AA;
}

.content-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-top: 10px;
}

/* CONTENT BOX */
.content-box {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

/* TEXT */
.content-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BENEFITS BOX */
.benefits-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #8E24AA;
}

/* BENEFITS TITLE */
.benefits-box h4 {
  margin-bottom: 15px;
}

/* LIST */
.benefits-box ul {
  padding-left: 20px;
}

.benefits-box li {
  margin-bottom: 10px;
  color: #444;
}

/* LAST TEXT */
.last-text {
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {

  .content-header h2 {
    font-size: 28px;
  }

  .content-box {
    padding: 0 10px;
  }

}

/* SECTION */
.faq-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* TITLE */
.faq-section h2 {
  font-size: 36px;
  font-weight: 600;
}

.faq-section p {
  color: #666;
}

/* BOX */
.faq-box {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  padding: 18px 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-question span {
  font-size: 22px;
  color: #8E24AA;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .faq-question span {
  content: "-";
}
/* SECTION */
.bed-modern {
  padding: 70px 0;
  background: #f8f8f8;
}

/* CARD */
.bed-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.bed-card:hover {
  transform: translateY(-5px);
}

/* HEADER */
.bed-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* ICON */
.icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.bed-card-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

/* SUB TEXT */
.bed-sub {
  color: #8E24AA;
  font-style: italic;
  font-size: 14px;
}

/* IMAGE */
.img-box {
  overflow: hidden;
  border-radius: 15px;
}

.img-box img {
  width: 100%;
  transition: 0.4s;
  height: 500px;
}

/* HOVER IMAGE */
.img-box:hover img {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .bed-card-header h3 {
    font-size: 18px;
  }
}

.bed-card h3 {
  transition: 0.3s;
}

.bed-card:hover h3 {
  color: #8E24AA;
}

/* GRID FIX */
.bed-modern .row {
  margin-top: 10px;
}

/* IMAGE HEIGHT FIX */
.img-box img {
  height: 250px;
  object-fit: cover;
}

/* SECTION */
.bed-ultra {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f6f6, #ffffff);
}

/* CARD */
.bed-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HOVER */
.bed-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* HEADER */
.bed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* ICON */
.icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG ICON */
.icon-box svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* TITLE */
.bed-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}

/* IMAGE */
.img-box {
  overflow: hidden;
  border-radius: 15px;
}

.img-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

/* IMAGE HOVER */
.bed-card:hover img {
  transform: scale(1.08);
}

/* TITLE HOVER */
.bed-card:hover h3 {
  color: #8E24AA;
}

/* MOBILE */
@media (max-width: 768px) {
  .img-box img {
    height: 200px;
  }
}


.process-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: center;
}

/* LINE */
.process-line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #ddd;
  z-index: 0;
}

/* ITEM */
.process-item {
  width: 30%;
  position: relative;
  z-index: 1;
}

/* ICON */
.process-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 6px solid;
  margin-bottom: 20px;
  transition: 0.4s;
}

.process-icon svg {
  width: 30px;
  fill: #333;
}

/* COLORS */
.pink { border-color: #ff6f91; }
.yellow { border-color: #fbc02d; }
.green { border-color: #4caf50; }

/* TITLE */
.process-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* LIST */
.process-item ul {
  list-style: none;
  padding: 0;
  color: #555;
  font-size: 14px;
}

/* HOVER */
.process-item:hover .process-icon {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .process-line {
    flex-direction: column;
    gap: 40px;
  }

  .process-line::before {
    display: none;
  }

  .process-item {
    width: 100%;
  }
}

/* SECTION */
.store-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f6f6, #ffffff);
}

/* IMAGE */
.store-img img {
  width: 100%;
  border-radius: 20px;
  transition: 0.4s;
}

.store-img img:hover {
  transform: scale(1.05);
}

/* INFO BOX */
.store-info {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.store-info h4 {
  margin-bottom: 15px;
}

/* BUTTON */
.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.map-btn:hover {
  background: #6a1b9a;
}

/* MAP */
.map-box iframe {
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .store-info {
    margin-top: 20px;
  }
}

/* SECTION */
.store-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* MAP BOX */
.map-box {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* IFRAME */
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-box {
    height: 300px;
  }
}

/* SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f6f6, #ffffff);
}

/* CONTACT INFO */
.contact-info {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h4 {
  margin-bottom: 20px;
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.info-item span {
  font-size: 20px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUT */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8E24AA;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #6a1b9a;
}

/* MAP */
.map-box {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 20px;
  }
}

/* BUTTON LEFT */
.bottom-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FORM LEFT */
.bottom-form {
  position: fixed;
  bottom: -100%;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: 0.4s;
  z-index: 1000;
}

/* ACTIVE */
.bottom-form.active {
  bottom: 80px;
}

/* HEADER */
.form-top {
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  padding: 12px 15px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
}

/* BODY */
.form-body {
  padding: 15px;
}

/* INPUT */
.input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.input-box i {
  color: #8E24AA;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .bottom-form {
    width: 90%;
    left: 5%;
  }
}

/* BUTTON LEFT */
.bottom-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FORM LEFT */
.bottom-form {
  position: fixed;
  bottom: -100%;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: 0.4s;
  z-index: 1000;
}

/* ACTIVE */
.bottom-form.active {
  bottom: 80px;
}

/* HEADER */
.form-top {
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  padding: 12px 15px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
}

/* BODY */
.form-body {
  padding: 15px;
}

/* INPUT */
.input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.input-box i {
  color: #8E24AA;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .bottom-form {
    width: 90%;
    left: 5%;
  }
}




/* HOVER */
.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
}

.whatsapp-float-img {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* HOVER */
.whatsapp-float-img img:hover {
  transform: scale(1.1);
}

/* BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8E24AA, #E91E63);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* HOVER */
#scrollTopBtn:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 80px;
    right: 25px;
  }
}