@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  /* ===== FONT ===== */
  --font-family: "Manrope", sans-serif;

  /* ===== COLORS ===== */
  --primary-color: #F04F23;
  --primary-light: #ff815a;
  --secondary-color: #111111;
  --accent-color: #F58020;
  --text-primary: #1e1e1e;
  --text-secondary: #5a5a5a;
  --text-light: #a3a3a3;
  --bg-light: #ffffff;
  --bg-dark: #0b0b0b;
  --bg-section: #1a1a1a;
  --border-color: #e0e0e0;
  --highlight-color: #ffdbcc;

  /* ===== RADIUS & EFFECTS ===== */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* ===== TYPOGRAPHY ===== */
  --body-size: 18px;
  --body-line-height: 1.6;
  --heading-weight: 600;
  --paragraph-spacing: 1.7em;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: var(--body-line-height);
}
.section{
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 20px;
  width: 100%;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-light) !important;
  letter-spacing: 2px;
}

.nav-items {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 34px 0;
}

.nav-link {
  color: var(--bg-light) !important;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  padding: 22px 0px 23px 0px;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-phone {
  color: var(--bg-light);
  margin: 0 1.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-collapse {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  width: auto !important;
  -webkit-backdrop-filter: blur(5px);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  flex-grow: inherit !important;
  background-color: #ffffff33;
  padding: 0px 40px;
  gap: 30px;
  border-radius: 25px 25px 25px 25px;
}

.btn-track {
  background-color: var(--primary-color);
  color: var(--bg-light);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-track:hover {
  background-color: var(--primary-light);
}

.navbar-nav {
  gap: 20px;
}

.nav-btn {
  /* min-height: 70px;
    min-width: 260px;
    font-size: 18px !important; */
  font-weight: 600;
}

.dropdown-menu {
  background-color: var(--accent-color);

}

/* ===== HERO SECTION ===== */

.hero-section {
  padding: 20px;
}

.section {
  padding: 40px 0;
}

.hero::after {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));

  width: 100%;
}

.hero {
  min-height: 600px;
  height: 100vh;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: var(--bg-light);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  height: 100%;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 0.8s ease;
  -webkit-animation: fadeInUp 0.8s ease;
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 50px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Manrope", Sans-serif;
  font-size: 75px;
  line-height: 1.125em;
  word-spacing: -0.03em;
  color: #ffffff;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.navbar-phone {
  text-align: center;
  font-size: 25px;
  line-height: 1.4em;
  letter-spacing: -0.03em;
  --360shoots-default-text-color: #ffffff;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-watch {
  background-color: transparent;
  color: var(--bg-light);
  border: 2px solid var(--bg-light);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  -webkit-border-radius: var(--radius-sm);
  -moz-border-radius: var(--radius-sm);
  -ms-border-radius: var(--radius-sm);
  -o-border-radius: var(--radius-sm);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.btn-watch:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

.btn-explore {
  background-color: var(--primary-color);
  color: var(--bg-light);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);

  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.btn-explore:hover {
  background-color: var(--primary-light);
}

/* ===== FEATURE CARDS ===== */
.cards-section {
  padding: 40px 0;
}

.feature-card {
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--bg-light);

  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: var(--heading-weight);
  margin-bottom: 0.5rem;
}

.card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 1rem;
}

/* Example backgrounds */
.card-1 {
  background-image: url("img/asset-13.png");
}
.card-2 {
  background-color: #2a2a2a;
}
.card-3 {
  background-image: url("img/asset-13.png");
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    min-height: 400px;
  }
  .navbar-phone {
    display: none;
  }
  .navbar-collapse {
    background-color: rgba(60, 60, 60, 0.98);
    padding: 1rem;
    border-radius: var(--radius-sm);
  }
  .feature-card {
    height: 280px;
    margin-bottom: 1.5rem;
  }
  .card-content {
    padding: 1.5rem;
  }
  .card-content h3 {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-watch,
  .btn-explore {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .feature-card {
    height: 250px;
  }
  .card-content h3 {
    font-size: 1rem;
  }
}

.interior-section {
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-family);
  position: relative;
}

.text-accent {
  color: var(--primary-color);
  letter-spacing: 1px;
}

.interior-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-primary);
}

.interior-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.btn-dark {
  background-color: var(--secondary-color);
  color: var(--bg-light);
  border-radius: var(--radius-sm);
  border: none;
  padding: 0.7rem 1.5rem;
  transition: var(--transition);
}

.btn-dark:hover {
  background-color: var(--primary-color);
  color: var(--bg-light);
}

.interior-image {
  position: relative;
 
  object-fit: cover;
}

.interior-image img {max-height: 400px;
object-fit: cover;}

.quote-box {
  position: absolute;
  bottom: 0px;
  left: -50%;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  max-width: 70%;
  transition: var(--transition);
}

.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.whychooseus h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 20px;
}

.whychooseus p {
  color: var(--theme-text-secondary);
  font-size: 16px;
}

.whychooseus .stats h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-text-primary);
}

.whychooseus .stats p {
  font-size: 14px;
  color: var(--theme-text-secondary);
  margin-bottom: 0;
}

.whychooseus .info-card {
  background: #f0f1f5;
  border-radius: 15px;

  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.whychooseus .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.whychooseus .info-card h5 {
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 30px;
}

.bg-main {
  background: var(--accent-color) !important;
  color: white;
}

.whychooseus img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .whychooseus h2 {
    font-size: 26px;
  }
}

.therapy-card {
  border: var(--accent-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--highlight-color);
}

.therapy-card {
  width: 100%;
  position: relative;
}

.card-header {
  padding: 10px 0;
}

.card-teal {
  background-color: #cce0ff;
}

.card-beige {
  background-color: #d0f0c0;
}

.card-pink {
  background-color: #fff4b3;
}

.therapy-card h3 {
  margin-bottom: 10px;
  font-weight: 900;
}
.therapy-card p {
 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.card-contant {
  padding: 20px;
}

.therapy-card .card-image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
}

.badge-label {
  background-color: white;
  padding: 4px 10px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.therapy-card .read-more {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: none;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 66px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 4px 4px 16px;
  -webkit-border-radius: 66px;
  -moz-border-radius: 66px;
  -ms-border-radius: 66px;
  -o-border-radius: 66px;
}

.btn-icons {
  height: 40px;
  width: 40px;
  background-color: white;
  display: flex;
  color: black;
  justify-content: center;
  align-items: center;
  border-radius: 66px;
  -webkit-border-radius: 66px;
  -moz-border-radius: 66px;
  -ms-border-radius: 66px;
  margin-left: 8px;
  font-size: 18px;
  -o-border-radius: 66px;
}
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
}

.highlight-heading {
  position: absolute;
  top: 10px;
  right: -1%;
  font-style: italic;
}

.image-wrapper .section-title {
  font-size: 65px;

  font-weight: 900;
}

.highlight-heading .read-more {
  background-color: #0b0b0b !important;
}

.core-highlight h5 {
  position: relative;
  padding-left: 15px;
  font-weight: 600;
  font-size: 20px;
}

.core-highlight h5::before {
  content: "";
  position: absolute;
  height: 10px;
  left: -5px;
  width: 10px;
  top: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/*  */

.portfolio-content {
  padding: 20px 10px;
}

.portfolio-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

.portfolio-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.portfolio-card {
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card img {
  height: 250px;
  overflow: hidden;
}
.portfolio-card h5 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 16px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

img {
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.portfolio-card:hover .card-image {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

/* .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 30px 20px 20px;
            display: flex;
            align-items: flex-end;
            height: 100%;
            justify-content: flex-start;
        } */

/* Grid Layout Variations */
.large-card {
  grid-column: 1;
  grid-row: 2;
  min-height: 350px;
}

.medium-card {
  grid-column: span 1;
  min-height: 280px;
}

/* .medium-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
        } */

/* .portfolio-content {
  grid-column: span 2;
} */

/* .medium-card:nth-child(4) {
            grid-column: 2;
            grid-row: 3;
        } */

/* See More Button */
.see-more-btn {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* SERVICE DETAILS PAGE */

/* Benefits Section */
.benefits-section {
  padding: 40px 0;
  /* background: linear-gradient(135deg, var(--accent-color) 0%, white 100%); */
}

.benefit-item {
  margin-bottom: 1.8rem;
  /* padding-left: 2rem; */
  position: relative;
}

.benefit-item i {
  color: var(--accent-color);
}

.benefit-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.faq-cta-box {
  background: #fffaf0;
  border-left: 4px solid var(--accent-color);
  padding: 0.8rem 0.8rem 0.2rem 1rem;
  border-radius: 10px;
  /* text-align: center; */
}

/* SUITABLE FOR SECTION */

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 40px;
  /* max-width: 800px; */
}

.skill-tag {
  padding: 12px 24px;
  border: 2px solid rgb(173, 173, 173);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  /* background: var(--primary-color); */
  color: rgb(0, 0, 0);
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-tag:hover {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  /* border: 2px solid rgb(0, 0, 0); */
  box-shadow: 0px 5px 0 rgb(140, 140, 140);
  transform: translateY(-5px);
}

/* SERVICE FAQs */

/* FAQ SECTION */

.faq-section {
  /* min-height: 100vh; */
  /* display: flex; */
  /* align-items: center; */
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
}

/* .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
} */

/* .faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
} */

/* Left Column - FAQ List */
/* .faq-content {
  animation: slideInLeft 0.8s ease-out;
} */

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.faq-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
}

.faq-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 30px 0;
}

.faq-list {
  list-style: none;
  padding-left: 0px !important;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

/* .faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
} */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
  color: var(--primary-color);
}

.faq-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #1a1a1a;
}

.faq-item.active .faq-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-top: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  animation: slideDown 0.5s ease-out;
}

/* Right Column - CTA Box */
/* .faq-cta {
  animation: slideInRight 0.8s ease-out;
} */

.cta-box {
  background: linear-gradient(135deg, #fffacd 0%, #fdf7e0 100%);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  min-height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 3.5rem;
  height: 100px;
}

.cta-icon-yellow {
  color: var(--primary-color);
  animation: float 3s ease-in-out infinite;
}

.cta-icon-dark {
  color: #1a1a1a;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 15px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
  color: #1a1a1a;
}

/* Animations */
/* @keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
} */

/* Responsive Design */
@media (max-width: 992px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dropdown-item{
color: white;
  }

  .nav-items {
    flex-wrap: wrap;
  }
.mega-menu{
position: static !important;
width: 100% !important;
}
.mega-icon {
  display: none !important;
}
.mega-desc{
  display: none;
}

  .cta-box {
    position: relative;
    top: 0;
    min-height: auto !important;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .cta-icons {
    font-size: 2.5rem;
    height: 80px;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 30px 20px;
    border-radius: 20px;
    min-height: auto !important;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 15px;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

  .cta-box{
    /* height: auto !important; */
    min-height: auto !important;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .cta-icons {
    font-size: 2rem;
    height: 60px;
    gap: 10px;
  }

  .cta-title {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 35px;
    font-size: 0.9rem;
  }
}

/*  */

.footer-section {
  background-color: #1f1f1f;
  margin: 20px;
  margin-bottom: 20px !important;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.contact-cta {
  background-color: var(--dark-bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-phone {
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0;
}

.phone-number {
  color: var(--accent-color);
  font-weight: 600;
}

.btn-contact {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--text-light);
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-contact:hover {
  background-color: var(--accent-color);
  color: balck;
  transform: translateX(4px);
}

/* Main Footer */
.main-footer {
  background-color: var(--darker-bg);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-content {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: black;
}

.since-text {
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-color);
  text-stroke: 2px var(--accent-color);
  letter-spacing: 2px;
  margin-top: 30px;
  line-height: 1;
}

/* Footer Titles */
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-link:hover {
  color: var(--accent-color);
}

.address {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--accent-color);
}

.footer-bottom-link:first-of-type {
  margin-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-phone {
    font-size: 1.1rem;
  }

  .contact-cta {
    padding: 40px 0;
  }

  .footer-title {
    margin-top: 20px;
  }

  .since-text {
    font-size: 2rem;
    margin-top: 20px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-link {
    margin-left: 15px;
    display: inline-block;
  }

  .footer-bottom-link:first-of-type {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-phone {
    font-size: 1rem;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
  }

  .social-links {
    gap: 15px;
  }

  .footer-bottom-link {
    display: block;
    margin: 8px 0;
  }
}

/* service */

.breadcrumb-section {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.breadcrumb-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(70%);
}

.breadcrumb-overlay h1 {
  font-family: "Manrope", sans-serif;
  letter-spacing: 1px;
}

.breadcrumb-nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--theme-primary-one);
}

/* contact */
.left-section {
  background-image: url(img/imgi_4_bg-contacts.webp);
}

.contact-section {
  font-family: "Manrope", sans-serif;
  background-color: var(--theme-light);
}

.contact-form {
  background-color: var(--theme-light);
  border: 1px solid var(--bg-dark);
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid var(--bg-section);
  box-shadow: none;
}

.contact-form .form-control:focus {
  border-color: var(--theme-primary-one);
  box-shadow: 0 0 0 0.2rem rgba(255, 160, 58, 0.25);
}

.btn-dark i {
  font-size: 0.9rem;
}
/*  */

.core-cards {
  border-radius: 20px;
  padding: 20px;
  background-color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.core-cards img {
  width: 100px;
}

.line {
  border: 1px solid var(--accent-color);
  height: 2px;
}

/* blog */
.blog-hero-section {
  padding: 3rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 94, 58, 0.1) 0%,
    rgba(255, 129, 90, 0.05) 100%
  );
}

.blog-hero-section h1 {
  font-size: 2.5rem;
  font-weight: var(--heading-weight);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--highlight-color);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-details h6 {
  margin: 0;
  font-weight: var(--heading-weight);
  color: var(--text-primary);
}

.author-details p {
  margin: 0.25rem 0 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== FEATURED IMAGE ===== */
.featured-image {
  width: 100%;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
/* ===== CONTENT SECTION ===== */
.article-content {
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.article-content h2 {
  font-size: 1.8rem;
  font-weight: var(--heading-weight);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 1.4rem;
  font-weight: var(--heading-weight);
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: var(--paragraph-spacing);
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight-box {
  background-color: var(--highlight-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-primary);
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

/* ===== TAGS ===== */
.tags-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.tag {
  display: inline-block;
  background-color: var(--bg-section);
  color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.tag:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== SHARE SECTION ===== */
.share-section {
  margin-top: 2.5rem;
  padding: 2rem;
  background-color: var(--bg-section);
  border-radius: var(--radius-md);
  color: var(--bg-light);
}

.share-section h5 {
  font-weight: var(--heading-weight);
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.share-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/*  */

/* MEGA DROPDOWN */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: -300px;
  top: 100%;
  width: 800px;
  background: var(--secondary-color);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

/* Show on Hover */
.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* Mega Item */
.mega-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  -webkit-border-radius: var(--radius-md);
  -moz-border-radius: var(--radius-md);
  -ms-border-radius: var(--radius-md);
  -o-border-radius: var(--radius-md);
}

.mega-item:hover {
  background: var(--accent-color);
}

.mega-item:hover .mega-desc {
  color: white;
}

.mega-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-light);
  margin-bottom: 4px;
}

.mega-desc {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Icon */
.mega-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  font-size: 20px;
  -webkit-border-radius: var(--radius-md);
  -moz-border-radius: var(--radius-md);
  -ms-border-radius: var(--radius-md);
  -o-border-radius: var(--radius-md);
}

/* Navbar link fix */
.navbar .nav-link {
  color: var(--bg-light) !important;
}


.logo{
  width: 200px;
}








        .project-header p {
            text-align: center;
            color: #aaa;
            margin-bottom: 50px;
        }

        .category-title {
            font-size: 26px;
            font-weight: bold;
            color: var(--primary-accent);
            margin: 40px 0 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .project-box {
            border-radius: 14px;
            overflow: hidden;
            transition: 0.3s;
            position: relative;
            cursor: pointer;
        }

        .project-box:hover {
            transform: translateY(-5px);
        }
.project-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  /* niche black, upar transparent */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),    /* niche halka black */
    rgba(0, 0, 0, 0)     /* upar transparent */
  );

  z-index: 1;
  pointer-events: none;
}
        .project-box img {
            width: 100%;
            height: 400px;
            object-fit: cover;

            transform: scale(1.02);
            transition: transform 0.6s ease, filter 0.3s ease, opacity 0.6s ease,
                border-radius 0.5s ease;
            filter: brightness(0.9);
        }

        .project-box:hover img {
            transform: scale(1.08);
            filter: brightness(1);
        }

        /* Fade-in activated after load */
        .project-box img.lazy-loaded {
            opacity: 1;
            transform: scale(1);
        }

        .project-info {
         
            position: absolute;
            z-index: 10;
                bottom: 20px;
    left: 23px;
        }

        .project-info h4 {
            margin-bottom: 8px;
            color: white;
            text-transform: capitalize;
        }

        .project-info p {
            margin: 0;
            color: white;
        }
        
        
        
        
        
        
        
        
        
        
        
        .blog-title {
            font-family: "Lexend", sans-serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--e-global-color-primary);
        }

        .blog-meta {
            display: flex;
            gap: 2rem;
            border-top: 2px solid var(--primary--color);
            border-bottom: 1px solid #eee;
            padding: 1.2rem 0;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .blog-featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 3rem 0;
        }

        .blog-content {
            background: #fff;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            font-size: 18px;
        }

        .blog-content h2 {
            font-family: "Lexend", sans-serif;
            font-size: 28px;
            margin: 2.5rem 0 1.5rem;
            border-left: 4px solid var(--primary--color);
            padding-left: 1rem;
            color: var(--e-global-color-primary);
        }



        @media (max-width: 768px) {
            .blog-title { font-size: 28px; }
            .blog-featured-image { height: 260px; }
            .blog-content { padding: 1.5rem; }
            .sidebar { position: static; margin-top: 2rem; }
        }
        
        
        .sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-family: "Lexend", sans-serif;
    font-size: 20px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary--color);
    padding-bottom: 0.5rem;
}

.recent-post {
    text-decoration: none;
    color: var(--e-global-color-text);
    display: block;
}

.recent-post img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.recent-post h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
