
body {

  font-family: "Open Sans", sans-serif;
  
}

a {
	
  color: #ef6603;
  text-decoration: none;
}

a:hover {
  color: #fc8129;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}




#color-changing-div {
    position:relative;
    padding: 0vh 3vh 0vh 3vh;
    margin-top: 2vh;
    font-size: 5vh;
    color: #000;
    border-radius: 25px;
    border: 2px solid ;
    animation: spinAndChangeColor 5s linear infinite; /* 5 saniyede bir d�n�� ve renk de�i�imi */
}

@keyframes spinAndChangeColor {
    0% {
        transform: rotate(0deg);
        border-color: rgba(255, 0, 0, 0.5); /* K�rm�z� */
    }

    25% {
        border-color: rgba(0, 255, 0, 0.5); /* Ye�il */
    }

    50% {
        border-color: rgba(0, 0, 255, 0.5); /* Mavi */
    }

    100% {

        border-color: rgba(255, 0, 0, 0.5); /* Tekrar k�rm�z�ya d�n */
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ef6603;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fc7c1f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Top Info Bar
--------------------------------------------------------------*/
.top-bar {
  background-color: #1a1a1a;
  padding: 0;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  max-width: 100%;
  padding: 0 clamp(20px, 3vw, 50px);
  padding-left: clamp(100px, 24vw, 400px); /* space for logo: header-pad(3vw) + logo-width(~20vw) + gap(1vw) */
}

.top-bar .top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.top-bar .top-bar-left i {
  color: #d4a437;
  font-size: 22px;
  flex-shrink: 0;
}

.top-bar .top-bar-left .top-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-bar .top-bar-left .top-bar-text span {
  font-size: clamp(11px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.top-bar .top-bar-left .top-bar-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1em;
  display: block;
  color: #d4a437;
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar .top-bar-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.top-bar .top-bar-phone span {
  font-size: clamp(11px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.top-bar .top-bar-phone a {
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1em;
  color: #d4a437;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.top-bar .top-bar-phone a:hover {
  color: #fff;
}

.top-bar .top-bar-cta {
  background-color: #d4a437;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: clamp(10px, 1vw, 14px) clamp(16px, 2vw, 28px);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid #d4a437;
  text-align: center;
}

.top-bar .top-bar-cta:hover {
  background-color: transparent;
  color: #d4a437;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 50px;
    transition: all 0.5s;
    z-index: 997;
    background-color: #1a1a1a;
    position: fixed;
    left: 0;
    right: 0;
    top: 79px; /* overlap top-bar by 1px to prevent sub-pixel gap */
}

    #header.header-transparent {

    }

#header.header-scrolled {
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

#header > .container {
    max-width: 100%;
    padding: 0 clamp(20px, 3vw, 50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo {
  position: relative;
  z-index: 999;
  height: clamp(100px, 11vw, 160px);
  margin-top: -80px; /* extend up into top-bar */
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  height: clamp(90px, 10vw, 150px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px clamp(8px, 1.2vw, 18px) 7px;
  margin-left: 2px;
  font-size: clamp(12px, 1vw, 15px);
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 5px;
}

.navbar a i,

.navbar a:focus i {
	
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        background: rgba(255, 255, 255, 0.1);
        color: #d4a437;
    }

    .navbar .nav-social a,
    .navbar .nav-social a:hover,
    .navbar .nav-social:hover > a,
    .navbar li.nav-social:hover > a {
        background: #fff !important;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 5px;
        top: calc(100% + 30px);
        margin: 5px 0 0 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        transition: 0.3s;
        border-radius: 15px;
    }

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0 5px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: darkcyan;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Navbar Social Icons */
.navbar .nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 0;
}

.navbar .nav-social a,
.navbar .nav-social a:focus {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0 !important;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  line-height: 1;
  transition: transform 0.3s ease;
}

.navbar .nav-social a:hover,
.navbar .nav-social:hover > a,
.navbar li.nav-social:hover > a {
  transform: scale(1.05);
  background: #fff !important;
  color: inherit !important;
}

.navbar .nav-social a:hover {
  transform: scale(1.15);
}

.navbar .nav-social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.navbar .nav-social a .bi-instagram {
  color: #E1306C !important;
  font-size: 20px;
}

.navbar .nav-social a .bi-youtube {
  color: #FF0000 !important;
  font-size: 22px;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
        color: #fff;
    }

  .navbar ul {
    display: none;

  }
}

.navbar-mobile {
    height: 100vh;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        transition: 0.3s;
    }

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: darkcyan;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Header Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .top-bar {
    height: 60px;
  }

  .top-bar .container {
    padding-left: clamp(100px, 24vw, 400px);
  }

  #header {
    top: 59px;
  }

  #header .logo {
    margin-top: -59px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    height: 56px;
  }

  .top-bar .container {
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
  }

  #header {
    top: 55px;
  }

  #header .logo {
    margin-top: -56px; /* pull logo up into top-bar row */
    position: relative;
    z-index: 1000;
    height: auto;
  }

  #header .logo img {
    height: 50px;
  }

  .top-bar .top-bar-left {
    display: none;
  }

  .top-bar .top-bar-right {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .top-bar .top-bar-phone span {
    font-size: 9px;
  }

  .top-bar .top-bar-phone a {
    font-size: 16px;
  }

  .top-bar .top-bar-cta {
    font-size: 10px;
    padding: 8px 12px;
  }
}


/* Push page content below fixed header (top-bar + nav) */
#page-content {
  padding-top: 130px; /* top-bar 80px + header 50px */
}

@media (max-width: 991px) {
  #page-content {
    padding-top: 110px; /* top-bar 60px + header 50px */
  }
}

@media (max-width: 768px) {
  #page-content {
    padding-top: 106px; /* top-bar 56px + header ~50px */
  }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0 50px;
  text-align: center;
}

.blog-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.blog-hero p {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.blog-categories {
  background: #f8f8f8;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.blog-category-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-filter-btn {
  background: none;
  border: 2px solid #ddd;
  padding: 8px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-filter-btn:hover {
  border-color: #d4a437;
  color: #d4a437;
}

.blog-filter-btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.blog-grid {
  padding: 50px 0 60px;
  background: #fff;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.blog-card-featured .blog-card-img img {
  height: 340px;
}

.blog-card-sidebar .blog-card-img img {
  height: 200px;
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d4a437;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #999;
}

.blog-card-meta i {
  margin-right: 4px;
}

.blog-card-body h2 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-body h2 a,
.blog-card-body h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
  color: #d4a437;
}

.blog-card-body h3 {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #d4a437;
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
}

.blog-read-more:hover {
  color: #1a1a1a;
}

.blog-read-more i {
  margin-left: 4px;
  transition: transform 0.3s;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 40px 0 30px;
  }

  .blog-card-featured .blog-card-img img {
    height: 220px;
  }

  .blog-card-sidebar .blog-card-img img {
    height: 180px;
  }
}

/* ==========================================================================
   Trusted By Section
   ========================================================================== */

.trusted-by {
  padding: 25px 0;
  background: #fff;
  overflow: hidden;
}

.trusted-by-heading {
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trusted-by-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: trusted-scroll 40s linear infinite;
  width: max-content;
}

.trusted-by-logos img {
  flex-shrink: 0;
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.4s, opacity 0.4s;
}

.trusted-by-logos img:hover {
  filter: grayscale(100%);
  opacity: 0.7;
}

@keyframes trusted-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-by-track:hover .trusted-by-logos {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .trusted-by { padding: 20px 0; }
  .trusted-by-logos { gap: 30px; }
  .trusted-by-logos img { height: 65px; max-width: 180px; }
}

/* ==========================================================================
   Tailored Solutions Section
   ========================================================================== */

.solutions-section {
  padding: 50px 0;
  background: #f5f5f5;
}

.solutions-heading {
  text-align: left;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.solutions-subtitle {
  text-align: left;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 700px;
}

/* Bento grid: 3 columns, Architects spans right column across both rows */
.solutions-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.sol-residential  { grid-column: 1; grid-row: 1; }
.sol-commercial   { grid-column: 2; grid-row: 1; }
.sol-architects   { grid-column: 3; grid-row: 1 / 3; }
.sol-hospitality  { grid-column: 1; grid-row: 2; }
.sol-custom       { grid-column: 2; grid-row: 2; }

.solution-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.solution-card img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.solution-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
  transition: background 0.35s ease;
}

.solution-card:hover .solution-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}

.solution-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px 24px;
  width: 100%;
  height: 100%;
}

.solution-card h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}

.solution-card:hover .solution-link {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  gap: 12px;
}

@media (max-width: 992px) {
  .solutions-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 300px;
  }
  .sol-residential  { grid-column: 1; grid-row: 1; }
  .sol-commercial   { grid-column: 2; grid-row: 1; }
  .sol-architects   { grid-column: 1 / 3; grid-row: 3; }
  .sol-hospitality  { grid-column: 1; grid-row: 2; }
  .sol-custom       { grid-column: 2; grid-row: 2; }
}

@media (max-width: 576px) {
  .solutions-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
    gap: 12px;
  }
  .sol-residential  { grid-column: 1; grid-row: 1; }
  .sol-commercial   { grid-column: 1; grid-row: 2; }
  .sol-architects   { grid-column: 1; grid-row: 3; }
  .sol-hospitality  { grid-column: 1; grid-row: 4; }
  .sol-custom       { grid-column: 1; grid-row: 5; }
  .solutions-section { padding: 30px 0; }
  .solutions-heading { text-align: center; }
  .solutions-subtitle { text-align: center; }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
  padding: 25px 0 40px;
  background: #fff;
}

.features-heading {
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #444;
  margin-bottom: 25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Flip Card */
.flip-card {
  perspective: 800px;
  height: 240px;
}

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

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

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-card-front {
  background: #f8f8f8;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.flip-card-front svg {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.flip-card-front h4 {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.flip-card-back {
  background: #1a1a1a;
  border: 1px solid rgba(212, 164, 55, 0.3);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
}

.flip-card-back i {
  font-size: 32px;
  color: #d4a437;
  margin-bottom: 12px;
}

.flip-card-back h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.flip-card-back p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .features-section { padding: 20px 0 30px; }
  .flip-card { height: 220px; }
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 15px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.5vw, 18px);
}

.about-content {
  padding: 80px 0;
}

.about-content h2,
.about-features h2,
.about-why h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-content p,
.about-features p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 8px 0;
  color: #444;
  font-size: 15px;
}

.about-list li i {
  color: #c8a96e;
  margin-right: 8px;
}

.about-features {
  padding: 80px 0;
}

.about-why {
  padding: 80px 0;
}

.about-why-card {
  padding: 30px 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-why-card i {
  font-size: 40px;
  color: #c8a96e;
  margin-bottom: 15px;
}

.about-why-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.about-why-card p {
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 0 40px; }
  .about-content,
  .about-features,
  .about-why { padding: 50px 0; }
}

/* ==========================================================================
   Ken Burns Hero Slider
   ========================================================================== */

#hero {
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
}

.kb-slider {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
}

.kb-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: transform, opacity;
  animation: kb-fade 30s infinite;
}

/* Each slide gets its own background image */
.kb-slide-1 { background-image: url('../img/1.jpg'); animation-delay: 0s; }
.kb-slide-2 { background-image: url('../img/2.jpg'); animation-delay: 6s; }
.kb-slide-3 { background-image: url('../img/3.jpg'); animation-delay: 12s; }
.kb-slide-4 { background-image: url('../img/4.jpg'); animation-delay: 18s; }
.kb-slide-5 { background-image: url('../img/5.jpg'); animation-delay: 24s; }

/* Alternate zoom directions per slide for variety */
.kb-slide-1 { animation-name: kb-fade-zoom-in; }
.kb-slide-2 { animation-name: kb-fade-zoom-out; }
.kb-slide-3 { animation-name: kb-fade-pan-right; }
.kb-slide-4 { animation-name: kb-fade-zoom-in; }
.kb-slide-5 { animation-name: kb-fade-pan-left; }

/*
  Timing: 5 slides x 6s each = 30s total cycle.
  Each slide owns 20% of the timeline (6s).
  Overlap: fade-in starts at 0%, reaches full at 1.5% (0.45s).
  Stays visible until 18.5%, fades out by 20% (0.45s).
  The NEXT slide starts fading in at 18.5% of its own timeline,
  which overlaps with this slide's fade-out — no gap.
*/

/* Zoom In: starts normal, slowly zooms in */
@keyframes kb-fade-zoom-in {
  0%      { opacity: 0; transform: scale(1); }
  1.5%    { opacity: 1; transform: scale(1.01); }
  18.5%   { opacity: 1; transform: scale(1.14); }
  20%     { opacity: 0; transform: scale(1.15); }
  100%    { opacity: 0; transform: scale(1); }
}

/* Zoom Out: starts zoomed in, slowly zooms out */
@keyframes kb-fade-zoom-out {
  0%      { opacity: 0; transform: scale(1.2); }
  1.5%    { opacity: 1; transform: scale(1.19); }
  18.5%   { opacity: 1; transform: scale(1.06); }
  20%     { opacity: 0; transform: scale(1.05); }
  100%    { opacity: 0; transform: scale(1.2); }
}

/* Pan Right: slow horizontal drift to the right */
@keyframes kb-fade-pan-right {
  0%      { opacity: 0; transform: scale(1.1) translateX(-3%); }
  1.5%    { opacity: 1; transform: scale(1.1) translateX(-2.7%); }
  18.5%   { opacity: 1; transform: scale(1.1) translateX(2.7%); }
  20%     { opacity: 0; transform: scale(1.1) translateX(3%); }
  100%    { opacity: 0; transform: scale(1.1) translateX(-3%); }
}

/* Pan Left: slow horizontal drift to the left */
@keyframes kb-fade-pan-left {
  0%      { opacity: 0; transform: scale(1.1) translateX(3%); }
  1.5%    { opacity: 1; transform: scale(1.1) translateX(2.7%); }
  18.5%   { opacity: 1; transform: scale(1.1) translateX(-2.7%); }
  20%     { opacity: 0; transform: scale(1.1) translateX(-3%); }
  100%    { opacity: 0; transform: scale(1.1) translateX(3%); }
}

@media (max-width: 768px) {
  #hero {
    height: 60vh;
    min-height: 300px;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ef6603;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: purple;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid purple;
}

.about .content .btn-learn-more:hover {
  background: purple;
  color: white;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ef6603;
}

.features .nav-link.active {
  background: #ef6603;
  color: #fff;
  border-color: #ef6603;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ef6603;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-image: url('assets/img/3.jpg');
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #ef6603;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #ef6603;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.services .title a:hover {
  color: #ef6603;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ef6603;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ef6603;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fedac0;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ef6603;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ef6603;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ef6603;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #fc8129;
}

.pricing .featured {
  border: 2px solid #ef6603;
}

.pricing .featured h3 {
  color: #fff;
  background: #ef6603;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ef6603;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq-modern {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.faq-subheading {
  text-align: center;
  font-size: 17px;
  color: #6c757d;
  margin-bottom: 50px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.5;
}

/* Plus / minus toggle icon */
.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-toggle span {
  position: absolute;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal bar (always visible) */
.faq-toggle span:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical bar (rotates to disappear when open) */
.faq-toggle span:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* When expanded (not collapsed): rotate vertical bar to form minus */
.faq-question:not(.collapsed) .faq-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Active state: change question color */
.faq-question:not(.collapsed) span:first-child {
  color: #0d6efd;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 28px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question span:first-child {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 16px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(239, 102, 3, 0.8);
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  background: #fc8129;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ef6603;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ef6603;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ef6603;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fc8129;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #14151c;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ef6603;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #bd5102;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}







.counter-box {
    margin-top:5vh;
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center
}

    .counter-box p {
        margin: 5px 0 0;
        padding: 0;
        color: #909090;
        font-size: 18px;
        font-weight: 500
    }

    .counter-box i {
        font-size: 60px;
        margin: 0 0 15px;
        color: #d2d2d2
    }

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87
}

    .counter-box.colored p,
    .counter-box.colored i,
    .counter-box.colored .counter {
        color: #fff
    }




/*------------------------------------*\
    MATERIAL PHOTO GALLERY
\*------------------------------------*/

$gallery-width: 100%;
$transition-duration: 0.5s;

.m-p-g {
    max-width: $gallery-width;
    margin: 0 auto;
    &__thumbs

{
    &-img

{
    margin: 0;
    float: left;
    vertical-align: bottom;
    cursor: pointer;
    z-index: 1;
    position: relative;
    opacity: 0;
    filter: brightness(100%);
    -webkit-tap-highlight-color: rgba(black, 0);
    will-change: opacity, transform;
    transition: all $transition-duration cubic-bezier(0.23, 1, 0.32, 1);
    &.active

{
    z-index: 50;
}

&.layout-completed {
    opacity: 1;
}

&.hide {
    opacity: 0;
}

&:hover {
    filter: brightness(110%);
}

}
}

&__fullscreen {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(black, 0);
    visibility: hidden;
    transition: background .25s ease-out, visibility .01s $transition-duration linear;
    will-change: background, visibility;
    backface-visibility: hidden;
    &.active

{
    transition: background .25s ease-out, visibility .01s 0s linear;
    visibility: visible;
    background: rgba(black, 0.95);
}

&-img {
    pointer-events: none;
    position: absolute;
    transform-origin: left top;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    max-width: 100%;
    visibility: hidden;
    will-change: visibility;
    transition: opacity $transition-duration ease-out;
    &.active

{
    visibility: visible;
    opacity: 1 !important;
    transition: transform $transition-duration cubic-bezier(0.23, 1, 0.32, 1), opacity $transition-duration ease-out;
}

&.almost-active {
    opacity: 0;
    transform: translate3d(0,0,0) !important;
}

}
}

&__controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 20vh;
    background: linear-gradient(to top, transparent 0%, rgba(black, 0.55) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all $transition-duration cubic-bezier(0.23, 1, 0.32, 1);
    &.active

{
    opacity: 1;
    visibility: visible;
}

&-close,
&-arrow {
    appearance: none;
    border: none;
    background: none;
    &:focus

{
    outline: none;
}

}

&-arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 20%;
    height: 100vh;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(black, 0);
    opacity: 0;
    &:hover

{
    opacity: 1;
}

&--prev {
    left: 0;
    padding-left: 3vw;
    justify-content: flex-start;
}

&--next {
    right: 0;
    padding-right: 3vw;
    justify-content: flex-end;
}

}

&-close {
    position: absolute;
    top: 3vh;
    left: 3vw;
    z-index: 5;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(black, 0);
}

}

&__btn {
    $size: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: $size;
    height: $size;
    border-radius: 50%;
    background: rgba(white, 0.07);
    transition: all .25s ease-out;
    &:hover

{
    background: rgba(white, 0.15);
}

}

&__alertBox {
    position: fixed;
    z-index: 999;
    max-width: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
    color: grey;
    h2

{
    color: red;
}

}
}



.demo-btn {
    display: inline-block;
    margin: 0 2.5px 4vh 2.5px;
    text-decoration: none;
    color: grey;
    padding: 15px;
    line-height: 1;
    min-width: 140px;
    background: rgba(0,0,0, 0.07);
    border-radius: 6px;
}

    .demo-btn:hover {
        background: rgba(0,0,0,0.12);
    }

@media (max-width: 640px) {

    .demo-btn {
        min-width: 0;
        font-size: 14px;
    }
}