/* ----------------------------------------------------------------------------------------
* Author        : Dileep Dilraj 
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */

/* Alterwave Light */
@font-face {
  font-family: "Alterwave";
  src: url("../font/Alterwave-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* SF Pro Display Regular */
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Root variables */
:root {
  --primary-color: #ffffff;
  --ebc-blue: #000322;
  --text-color: #283132;
  --accent-color: #c0a172;
  --white-color: #ffffff;
  --divider-color: #dadada;

  --primary-font: "Alterwave", sans-serif;
  --secondary-font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/************************************/
/*** 	    General CSS		      ***/
/************************************/
 
body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.6em;
  background-color: var(--ebc-blue);
  color: var(--white-color);
  overflow: none;
}
main{
  overflow-x: hidden;
}


h5,
h6,
p,
li{
  line-height: 1.7em;
  margin-bottom: 1.6em;
  font-family: var(--secondary-font);
}

h1,
h2,
h3,
h4
{
  margin: 0;
  font-weight: 300;
  line-height: 1.1em;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: width 1s ease; /* Optional: Add animation */
  transform: translate(-50%, -50%) rotate(180deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  border: 1px solid var(--white-color);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  overflow: visible;
  z-index: 1;
}

.btn-default:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  color: var(--accent-color);
}

.ebc-btn-fill-wrap {
  position: relative;
  padding: 15px 30px;
  overflow: hidden;
  z-index: 2;
}

.ebc-btn-fill {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--white-color);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.1, 0, 1, 1),
    height 0.6s cubic-bezier(0.1, 0, 1, 1);
  z-index: -1;
}

.btn-default:hover .ebc-btn-fill {
  width: 500px;
  height: 500px;
}

/* Borders */
.ebc-border-1::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -10px;
  right: -10px;
  height: 1px;
  background-color: var(--white-color);
}

.ebc-border-1::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -1px;
  width: 1px;
  background-color: var(--white-color);
}

/* Add a child element for right and bottom borders */
.ebc-border-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ebc-border-2::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -1px;
  bottom: -10px;
  width: 1px;
  background-color: var(--white-color);
}

.ebc-border-2::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -1px;
  height: 1px;
  background-color: var(--white-color);
}

.ebc-border-3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -10px;
  right: -10px;
  height: 1px;
  background-color: var(--accent-color);
}

.ebc-border-3::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -1px;
  width: 1px;
  background-color: var(--accent-color);
}

.ebc-border-4::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -1px;
  bottom: -10px;
  width: 1px;
  background-color: var(--accent-color);
}

.ebc-border-4::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -1px;
  height: 1px;
  background-color: var(--accent-color);
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title-content {
  margin-left: 120px;
}

.section-title-content p {
  margin: 0;
}

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

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 15px 20px 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.section-title h1 {
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: default;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}

.section-title p {
  margin-top: 30px;
  margin-bottom: 0;
}

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
  color: var(--white-color);
}

/************************************/
/*** 	      Preloader	 	      ***/
/************************************/ 


/* Preloader Container */
.ebc-preloader-split {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top and Bottom Split */
.ebc-split-top,
.ebc-split-bottom {
  flex: 1 1 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Ensure video never overflows */
.ebc-preloader-video {
  width: 100%;
  max-width: 500px; /* Adjust as needed */
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .ebc-preloader-video {
    max-width: 70%;
  }
}

@media (max-width: 576px) {
  .ebc-preloader-video {
    max-width: 90%;
  }
}

/************************************/
/*** 	      Side Menu	 	      ***/
/************************************/
.ebc-menu-style {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.5s ease-in-out 0.4s;
}

.ebc-menu-style.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.ebc-menu-style .menu-bg,
.ebc-menu-style .menu-bg2 {
  position: absolute;
  width: 40%;
  opacity: 0;
  transition: all 0.5s ease 0.7s;
  z-index: -1;
}

.ebc-menu-style .menu-bg {
  right: 0;
  bottom: 0;
  transform: rotate(-60deg) scale(0.5);
}

.ebc-menu-style .menu-bg2 {
  left: 0;
  top: 0;
  transform: rotate(120deg) scale(0.5);
}

.ebc-menu-style.show .menu-bg {
  transform: rotate(0) scale(1);
  opacity: 0.05;
  width: 500px;
}

.ebc-menu-style.show .menu-bg2 {
  transform: rotate(180deg) scale(1);
  opacity: 0.05;
  width: 500px;
}

.ebc-menu-links {
  transform: scaleX(1.4) scaleY(1.8);
  filter: blur(2px);
  opacity: 0;
  transition: all 0.7s ease 1s;
}

.ebc-menu-style.show .ebc-menu-links {
  transform: scaleX(1) scaleY(1);
  filter: blur(0);
  opacity: 1;
}

.ebc-menu-links ul li {
  margin: 10px 0;
  padding-block: 10px;
}

.ebc-menu-links ul li a {
  text-decoration: none;
  font-size: calc(3vw + 15px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--accent-color);
  transition: color 0.3s ease;
  font-family: var(--primary-font);
}

.ebc-menu-links ul li a:hover {
  color: #b38643;
}

.ebc-menu-style .clss {
  all: unset; /* removes ALL default button styles */
  font-size: 50px;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  color: var(--ebc-blue);
  background: none;
  border: 1px solid var(--ebc-blue);
  padding: 6px 12px;  
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.ebc-menu-style .clss:hover {
  background-color: var(--ebc-blue);
  color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}


.ebc-menu,
.ebc-menu2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #c0a172;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.5s ease-in-out;
  z-index: 995;
}

.ebc-menu2 {
  z-index: 998;
  transition-delay: 0.7s;
}

.ebc-menu.show,
.ebc-menu2.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.ebc-menu2.show {
  transition-delay: 0.1s;
}

@media (max-width: 768px) {
  .ebc-menu-links ul li a {
    font-size: calc(4vw + 12px);
  }

  .ebc-menu-style .clss {
    font-size: 40px;
    top: 20px;
    right: 30px;
  }
}

@media (max-width: 576px) {
  .ebc-menu-links ul li a {
    font-size: calc(5vw + 10px);
  }

  .ebc-menu-style .clss {
    font-size: 35px;
    right: 20px;
  }
}

/************************************/
/*** 	      Header 	 	      ***/
/************************************/
header.ebc-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--dark-divider-color);
}

/* Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* Logo Styling */
.navbar-brand img {
  max-width: 120px;
  height: auto;
}

/* Main Menu */
.ebc-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Button Styles */
.header-btn .btn-default {
  display: inline-block;
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: 1.2;
  text-transform: uppercase;
  background: var(--accent-color);
  transition: 0.3s;
}

.header-btn .btn-default:hover {
  background: var(--white-color);
  color: var(--accent-color);
}

/* Side Menu Button */
.hamburger-menu {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  background: var(--white-color);
  color: var(--accent-color);
}

.hamburger-menu:hover {
  background: var(--accent-color);
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-brand img {
    max-width: 100px;
  }

  .header-btn .btn-default {
    padding: 15px 15px;
    font-size: 12px;
  }

  .hamburger-menu {
    width: 50px;
    height: 50px;
    font-size: 16px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .ebc-nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-btn .btn-default {
    display: inline-block;
    padding: 12px 12px;
    font-size: 12px;
    text-align: center;
  }

  .hamburger-menu {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

/************************************/
/*** 	 Hero Section 	 	      ***/
/************************************/
/* Hero Section */
.ebc-hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 280px 0 250px;
  min-height: 100vh;
  margin-top: -118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebc-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Slightly taller for smoother gradient */
  background: linear-gradient(
    to bottom,
    rgba(0, 3, 34, 0) 0%,
    rgba(0, 3, 34, 0.5) 50%,
    #000322 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Video Background */
.ebc-hero.ebc-hero-video .ebc-hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.ebc-hero-bg-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero Content */
.ebc-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Section Title */
.section-title h1 {
  font-family: "Alterwave", sans-serif;
  font-weight: 300;
  font-size: clamp(60px, 12vw, 200px); /* Increased from max 120px to 200px */
  line-height: 1.1;
  text-align: center;
  margin: 0 auto;
}

/* Text Colors */
.text-white {
  color: #ffffff;
}

.text-accent {
  color: #c0a172;
}

/* Responsive Spacing */
@media (max-width: 992px) {
  .ebc-hero {
    padding: 180px 0 150px;
  }

  .section-title h1 {
    font-size: clamp(40px, 10vw, 140px);
    line-height: 1.2;
  }
}

@media (max-width: 576px) {
  .ebc-hero {
    padding: 140px 0 120px;
  }

  .section-title h1 {
    font-size: clamp(32px, 12vw, 100px);
    line-height: 1.3;
    padding: 0 15px;
  }
}

/************************************/
/*** 	     About Us 	 	      ***/
/************************************/
.ebc-about {
  padding: 100px 0;
}

.ebc-about-images {
  position: relative;
  padding-right: 40px;
  padding-bottom: 180px;
  margin-top: 40px;
}

.ebc-about-img-1 img,
.ebc-about-img-2 img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1 / 0.76;
}

.ebc-about-img-2 {
  position: absolute;
  width: 80%;
  max-width: 360px;
  bottom: 0;
  right: 0;
}

.ebc-about-2{
  background-color: #fff;
  color: var(--text-color);
}
.ebc-about-2 .ebc-about-content h2{
  color: var(--text-color);
}
.ebc-about-2 .ebc-about-content-list ul li{
  color: var(--text-color);
}
.ebc-about-2 .about-contact-content p{
  color: var(--text-color);
}
.ebc-about-2 .about-contact-content h3{
  color: var(--text-color);
}

.experience-counter {
  position: absolute;
  top: 0;
  left: 0;
  height: 130px;
  width: 130px;
  display: flex;
  flex-direction: column; /* Added to stack children vertically */
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: 6px solid var(--white-color);
  border-radius: 50%;
  transform: translate(-50%, -6px);
  text-align: center;
}

.experience-counter h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--white-color);
  margin: 0;
}

.experience-counter p {
  color: var(--white-color);
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  line-height: 1.3em;
}

.ebc-about-content-body {
  position: relative;
  display: flex;
  gap: 80px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.ebc-about-content-body::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  border: 1px solid var(--divider-color);
  width: 1px;
  height: 100%;
}

.ebc-about-content-info {
  width: calc(50% - 40px);
}

.ebc-about-content-list {
  margin-bottom: 40px;
}

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

.ebc-about-content-list ul li {
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.ebc-about-content-list ul li:last-child {
  margin-bottom: 0;
}

.ebc-about-content-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  top: 2px;
  left: 0;
}

.about-btn .ebc-btn-fill-wrap{
  font-size: 13px;
  font-family: var(--primary-font);
  text-transform: capitalize;
}
.ebc-about-contact-list {
  width: calc(50% - 40px);
}

.about-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.about-contact-item:last-child {
  margin-bottom: 0;
}

.about-contact-item .icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
  background-color: var(--primary-color);
}

.about-contact-item:hover .icon-box i {
  color: var(--accent-color);
}

.about-contact-item .icon-box figure {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.about-contact-item .icon-box img {
  max-width: 40px;
  border-radius: 50%;
}

.about-contact-item .icon-box i {
  font-size: 18px;
  color: var(--white-color);
}

.about-contact-content {
  width: calc(100% - 55px);
}

.about-contact-content .content-phone {
  font-size: 20px;
}

.about-contact-content h3 a {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
}

.about-contact-content p {
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .ebc-about {
    padding: 60px 0;
  }

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

  .about-contact-item .icon-box {
    width: 40px;
    height: 40px;
  }

  .ebc-about-content-body {
    flex-direction: column;
  }
  .ebc-about-content-info {
    width: calc(100%);
  }
  .ebc-about-content-body::before {
    display: none;
  }
  .about-contact-item {
    width: calc(100%);
  }
  .ebc-about-contact-list {
    width: calc(100% - 40px);
  }

  .ebc-btn-fill-wrap { 
    padding: 10px 20px; 
  }
}

.about-network-logo {
  width: 300px;
}

/************************************/
/*** 	     Counter	 	      ***/
/************************************/
/* Base styles remain unchanged */
.ebc-counter-ptb {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ebc-counter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.ebc-counter-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ebc-counter-item:last-child {
  border-right: none;
}

.ebc-counter-item-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--tp-heading-secondary);
}

.ebc-counter-item p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--tp-heading-secondary);
}

/* Tablet */
@media (max-width: 991px) {
  .ebc-counter-wrapper {
    gap: 30px;
  }

  .ebc-counter-item {
    border-right: none; 
  }

  .ebc-counter-item:last-child {
    border-bottom: none;
  }
}

/* Mobile - Switch to 2-column grid */
@media (max-width: 575px) {
  .ebc-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ebc-counter-item {
    border-right: none;
  }

  .ebc-counter-item-title {
    font-size: 42px;
  }

  .ebc-counter-item p {
    font-size: 15px;
  }
}


/************************************/
/*** 	     Projects	 	      ***/
/************************************/
.ebc-projects-area {
  padding-top: 100px;
}

.ebc-projects-area .section-title p {
  margin-top: 0;
}
.ebc-projects-text span {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(183, 171, 152, 0.5);
}

.ebc-projects-title a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.ebc-projects-wrapper {
  padding: 50px 0;
}
.ebc-projects-inner-wrap {
  width: 100%;
  display: flex;
  grid-area: list;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .ebc-projects-inner-wrap {
    flex-wrap: wrap;
  }
}
.ebc-projects-item {
  width: 30%;
  height: 580px;
  display: block;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  margin: 0px 15px;
  transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column; /* So content stacks */
}

.ebc-projects-item img {
  width: 100%;
  height: auto; /* Maintain image aspect ratio */
  object-fit: cover;
  display: block;
}
.ebc-projects-item:hover {
  width: 80%;
}

.ebc-projects-thumb {
  height: 65%;
  width: 100%;
  margin-bottom: 30px;
}
.ebc-projects-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.ebc-projects-2-year span {
  color: #403c38;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  margin-top: 15px;
  margin-right: 130px;
  display: inline-block;
  transition: 0.3s;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .ebc-projects-item {
    width: 100%;
    padding-bottom: 30px;
    margin: 0px 0;
    height: 100%;
  }
  .ebc-projects-thumb {
    margin-bottom: 20px;
  }
  .ebc-projects-item:hover {
    width: 100%;
  }
  .ebc-projects-2-year span {
    margin-right: 30px;
  }
  .ebc-projects-wrapper {
    padding: 50px 0 150px 0;
  }
  .ebc-projects-item .ebc-projects-content .ebc-projects-title {
    text-align: center;
  }
}

.ebc-projects-2-title {
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: #403c38;
  letter-spacing: -1.84px;
  transform: 0.3s;
}
@media (max-width: 767px) {
  .ebc-projects-2-title {
    font-size: 30px;
  }
}
.ebc-projects-2-title-box span {
  color: #403c38;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ebc-projects-2-title-box span {
    font-size: 11px;
  }
}
.ebc-projects-2-link span {
  color: #403c38;
  display: inline-block;
  transition: 0.3s;
}
.ebc-projects-2-item {
  border-bottom: 1px solid rgba(183, 171, 152, 0.14);
  padding: 40px 0;
  position: relative;
}
.ebc-projects-2-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000322;
  content: "";
  transition: 0.4s;
}
.ebc-projects-2-item:first-child {
  border-top: 1px solid rgba(183, 171, 152, 0.14);
}
.ebc-projects-2-item:hover .ebc-projects-2-year span {
  color: #fff;
}
.ebc-projects-2-item:hover .ebc-projects-2-title {
  color: #fff;
}
.ebc-projects-2-item:hover .ebc-projects-2-title-box span {
  color: #fff;
}
.ebc-projects-2-item:hover .ebc-projects-2-link span {
  color: #fff;
  transform: rotate(-45deg);
}
.ebc-projects-2-item:hover::after {
  width: 100%;
}
.ebc-projects-2-item.active .ebc-projects-2-title {
  color: #fff;
}
.ebc-projects-2-item.active .ebc-projects-2-year span {
  color: #fff;
}
.ebc-projects-2-item.active .ebc-projects-2-title-box span {
  color: #fff;
}
.ebc-projects-2-item.active .ebc-projects-2-link span {
  color: #fff;
}

.ebc-projects-2-item .tp-hover-reveal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 470px;
  opacity: 0;
  margin: -150px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.3s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s,
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  .ebc-projects-2-item .tp-hover-reveal-bg {
    height: 240px;
    width: 240px;
  }
}
.ebc-projects-2-item:hover .tp-hover-reveal-bg {
  opacity: 1;
}

/************************************/
/*** 	   Mobile Projects	  	      ***/
/************************************/
.post-slide {
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
}

.post-slide .post-img img {
  width: auto;
  height: 120%;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.2, 1.2);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 30px;
  text-align: center;
}

.post-slide .post-title a {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  padding: 20px 0;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}

.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}

.post-slide .read-more {
  padding: 7px 20px;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  border-radius: 25px;
  text-transform: uppercase;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 15px;
  }
}

/************************************/
/*** 	   Comparison	  	      ***/
/************************************/ 
.ebc-comparisons {
  padding: 100px 0;
}

/* Styling for the carousel container */
.ebc-comp-carousel-container {
  position: relative;
  padding: 20px;
  text-align: center;
}

.ebc-comp-slide {
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 20px; /* Increased padding */
}

/* Image styling for the before/after images */
.ebc-comp-slide img {
  width: 100%;
  border-radius: 15px;
}

/* Active slide effects */
.ebc-comp-slide.active {
  transform: scale(1.2);
  filter: brightness(100%);
}

/* Non-active slide effects */
.ebc-comp-slide:not(.active) {
  transform: scale(0.8);
  filter: brightness(50%);
}

/* Button container and alignment */
.ebc-comp-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 0px;
}

/* Individual button styling */
.ebc-comp-button {
  background: #c0a172;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Hover effects for buttons */
.ebc-comp-button:hover {
  background: #ffffff;
}

.ebc-comp-button i {
  color: white;
  font-size: 20px;
}

.ebc-comp-button:hover i {
  color: #c0a172;
}

/* Styling for left button */
.ebc-slider-btn-1 {
  border-radius: 100px 0px 0px 100px;
}

/* Styling for right button */
.ebc-slider-btn-2 {
  border-radius: 0px 100px 100px 0px;
}

/* Responsiveness for smaller devices */
@media (max-width: 767px) {
  .ebc-comparisons .section-row{
    padding-bottom: 20px
  }
  .ebc-comp-carousel-container {
    padding: 10px;
  }

  .ebc-comp-slide {
    width: 100%;
    padding: 10px; /* Adjusted padding */
  }

  .ebc-comp-buttons {
    margin-top: 15px; 
    scale: 1.2;
  }

  .ebc-comp-button {
    width: 40px;
    height: 40px;
  } 

  .ebc-comp-button i {
    font-size: 18px;
  }

  .ebc-comp-slide img {
    object-fit: cover; /* Ensures proper image scaling */
  }
}

/************************************/
/*** 	     Services	 	      ***/
/************************************/
.ebc-services-page {
  background-color: #fff;
  color: var(--text-color);
  padding: 20px 0;
}
.ebc-about-w {
  background-color: #fff;
  color: var(--text-color);
}
.s-f-b-l {
  margin: 20px 0;
}
/* Main Section Styling */
.ebc-services-section-area {
  position: relative;
  padding: 50px 0 100px;
  z-index: 1;
  background-color: #fff;
}

.ebc-services-section-area .section-title {
  padding: 30px 0;
}
/* Section Title Styling */
.ebc-services-section-area .section-title h2 {
  color: #000;
}

.ebc-services-section-area .section-title p {
  color: #000;
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}
.ebc-service-single-content .ebc-service-entry h2{
  padding-top: 30px;
  color: var(--text-color);
  margin-bottom: 20px;
}
.ebc-service-single-content .ebc-service-entry h3{
  color: var(--text-color);
  margin-bottom: 20px;
}

.ebc-service-single-faq h2{
    color: var(--text-color);
}
.ebc-faq-catagery-list h2{
  color: var(--text-color);
  font-weight: 600;
}
/* Project Featured Box Styling */
.ebc-projects-card-box {
  position: relative;
  z-index: 1;
  background: #f7f6f7;
  text-align: left;
  border-radius: 10px;
  display: block;
  padding-bottom: 20px;
  border: 1px solid #d6d6d6;
  transition: transform 0.3s ease-in-out;
}

.ebc-projects-card-box .img1 {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.ebc-projects-card-box .img1 img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  border-radius: 10px 10px 0 0;
}

.ebc-projects-card-box:hover .img1 img {
  transform: scale(1.2);
}

.ebc-projects-card-box .content {
  padding: 20px;
  height: 150px;
}

.ebc-projects-card-box .content h3 {
  font-size: 25px;
  font-weight: bold;
}

.ebc-projects-card-box p {
  color: #666666;
  font-family: Arial, sans-serif;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 300;
}

/* Button Styling */
.ebc-projects-card-box .btn-area {
  text-align: center;
}

.ebc-projects-card-box .btn-default {
  display: block;
  width: 85%;
  margin: 0 auto 10px auto;
  text-align: center;
  text-transform: capitalize;
  background: #c0a172;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ebc-projects-card-box .btn-default:hover {
  background: #fff;
  color: #c0a172;
  border: 1px solid #c0a172;
}

/* Responsive Styling */
@media (max-width: 1199px) {
  .ebc-services-section-area .section-title p {
    font-size: 14px;
  }

  .ebc-projects-card-box .content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ebc-services-section-area {
    padding: 30px 0 60px;
  }

  .ebc-services-section-area .section-title p {
    width: 90%;
    font-size: 14px;
  }

  .ebc-projects-card-box {
    margin-bottom: 30px;
  }
  .ebc-projects-card-box .content {
    padding: 20px;
    height: auto;
  }
  .ebc-projects-card-box .content h3 {
    font-size: 25px;
  }

  .ebc-projects-card-box p {
    font-size: 15px;
  }

  .ebc-projects-card-box .btn-default {
    width: 90%;
  }
  .ebc-service-single-faq .faq-image img {
    display: none;
  }
}

.ebc-service-feature-image .image-anime img{
  border-radius: 15px;
}

 .lightbox img{
  border-radius: 15px;
}

.ebc-service-page {
  background-color: #fff;
  padding: 100px 0;
  color: #000;
}

.ebc-service-page h2 h3{
  color: #000;
}
.ebc-service-single-faq {
  padding: 100px 0;
}
.ebc-service-single-faq .faq-image img {
  border-radius: 15px;
}

/************************************/
/*** 	     360 Gallery	 	  ***/
/************************************/

.ebc-360-gallery {
  background: #fff;
  overflow: hidden;
}
 
/* Slider Styles */
.ebc-gallery-slider {
  overflow: hidden;
  max-height: 580px;
}

@media only screen and (max-width: 991.98px) {
  .ebc-gallery-slider {
    max-height: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .ebc-gallery-slider {
    max-height: 400px;
  }
}

.ebc-gallery-slider .slider-shape img:first-child,
.ebc-gallery-slider .slider-shape img:last-child {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 2;
  content: "";
}

.ebc-gallery-slider .slider-shape img:first-child {
  top: -1px;
  left: 0;
}
.ebc-gallery-slider .slider-shape img:last-child {
  bottom: 0;
  left: 0;
}

.ebc-gallery-slider .swiper-slide img {
  object-fit: cover;
  object-position: center center;
}

/* Responsive Padding */
@media only screen and (max-width: 1199.98px) {
  .ebc-hero-photostudio-area {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  .ebc-hero-photostudio-area {
    padding-top: 30px;
  }
}

/************************************/
/*** 	        CTA	 	          ***/
/************************************/
.ebc-box-cta {
  padding-block: 100px;
  overflow: hidden;
}

.ebc-box-cta h1 {
  font-weight: 600;
  color: var(--text-color);
  font-size: 50px;
}
.ebc-box-cta .lead {
  width: 70%;
  line-height: 1.4;
}

 
.cta-btn-default .btn-default {
  margin-block: 30px;
  border: 1px solid var(--accent-color);
  font-size: 16px; /* Make sure the button text is properly sized */
  font-weight: 500; /* Slightly bold */
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.cta-btn-default .btn-default:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ebc-icon {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

 
@media (max-width: 1024px) {
  .ebc-box-cta .lead {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .ebc-box-cta .lead {
    width: 100%;
    text-align: center; /* Align text to center for smaller screens */
    font-size: 16px; /* Adjust font size for mobile */
  }

  .ebc-box-cta .btn-area {
    text-align: center;
  }

  .ebc-box-cta .fw-bold {
    font-size: 24px; /* Smaller text for mobile */
  }
 
  .ebc-icon {
    width: 180px; /* Smaller icon size on mobile */
    margin-top: 30px;
  } 
  .cta-btn-default {
    margin-top: 20px; /* Adjust spacing for smaller screens */
  }
}

.ripple-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.ripple-effect {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  animation: ripple-animation 3s linear infinite;
  opacity: 0;
}

.ripple-1 {
  animation-delay: 0s;
}

.ripple-2 {
  animation-delay: 1s;
  width: 220px;
  height: 220px;
}

.ripple-3 {
  animation-delay: 2s;
  width: 270px;
  height: 270px;
}

@keyframes ripple-animation {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .ripple-container {
    margin-top: 30px;
  }

  .ripple-effect {
    width: 120px;
    height: 120px;
  }

  .ripple-2 {
    width: 140px;
    height: 140px;
  }

  .ripple-3 {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .ebc-box-cta {
    padding-block: 60px; /* Reduce padding for very small screens */
  }

  .ebc-box-cta .lead {
    font-size: 14px; /* Smaller text size */
  }

  .ebc-box-cta h1 {
    font-size: 25px;
  }

  .cta-btn-default .btn-default {
    font-size: 14px; /* Reduce button font size */
 
  }

  .ebc-icon {
    width: 150px; /* Even smaller icon size */
  }
}

/************************************/
/*** 	  Parallax Video	 	      ***/
/************************************/
/* Parallax Container */
.ebc-full-video {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video Container */
.ebc-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Make video responsive */
.responsive-video {
  object-fit: cover; /* Ensures the video covers the full container without distortion */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the video */
}

/* Parallax effect */
.ebc-full-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-attachment: fixed; /* Fixes the background */
  background-position: center;
  background-size: cover;
  z-index: 1; /* Ensures the video is on top */
}

/* Ensuring responsiveness */
@media (max-width: 768px) {
  .ebc-full-video {
    height: 50vh; /* Adjust height on smaller screens */
  }
  .responsive-video {
    object-fit: cover; /* Ensures the video maintains cover style */
    width: 100%;
    height: 100%;
  }
}

/************************************/
/*** 	   Testimonials	 	      ***/
/************************************/
.ebc-testimonials {
  padding: 100px 0;
  background-color: var(--ebc-blue);
}

.ebc-testimonials .section-title h2 {
  font-weight: 250;
  padding-bottom: 80px;
}

.ebc-testimonials .slider-controls {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #fff3;
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 10;
}

.ebc-testimonials .slider-controls .swiper-button-next,
.ebc-testimonials .slider-controls .swiper-button-prev {
  position: static;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0;
}
.ebc-testimonials .slider-controls .swiper-button-next::after,
.ebc-testimonials .slider-controls .swiper-button-prev::after {
  color: #fff;
  font-size: 12px;
}
.ebc-testimonials .slider-controls .swiper-button-next:hover::after,
.ebc-testimonials .slider-controls .swiper-button-prev:hover::after {
  color: var(--color-ebcyellow);
}
.ebc-testimonials .slider-controls .swiper-pagination {
  position: static;
  margin: 0 10px;
  color: #fff;
  padding-top: 8px;
}
.ebc-testimonials
  .slider-controls
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.ebc-testimonials
  .slider-controls
  .swiper-pagination
  .swiper-pagination-bullet
  .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
}
.ebc-testimonials .img-slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.ebc-testimonials .img-slider .arrows {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--ebc-blue);
  border-radius: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
  width: 100px;
  z-index: 30;
}
.ebc-testimonials .img-slider .arrows .swiper-button-next,
.ebc-testimonials .img-slider .arrows .swiper-button-prev {
  position: static;
  margin: 0;
}
.ebc-testimonials .img-slider .arrows .swiper-button-next::after,
.ebc-testimonials .img-slider .arrows .swiper-button-prev::after {
  color: #fff;
  font-size: 16px;
}
.ebc-testimonials .img-slider .slider-card .img {
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}
.ebc-testimonials .img-slider .slider-card .img .shap1 {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 35%;
  z-index: 10;
}
.ebc-testimonials .img-slider .slider-card .img .shap2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 20%;
  z-index: 10;
}
.ebc-testimonials .text-side {
  position: relative;
}
.ebc-testimonials .text-slider {
  position: relative;
  overflow: hidden;
}
.ebc-testimonials .text-slider .text {
  font-size: 36px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ebc-testimonials .text-slider .user-wrapper {
  padding-top: 45px;
  margin-top: 45px;
  border-top: 1px solid #fff3;
  color: #fff;
}
.ebc-testimonials .text-slider .user-wrapper .user-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ebc-testimonials .text-slider .user-wrapper .user-content .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.ebc-testimonials .text-slider .user-wrapper .user-content .inf h6 {
  padding-top: 30px;
  margin: 0;
  font-size: 25px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.ebc-testimonials .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}
.ebc-testimonials .logos {
  height: 45px;
}
.ebc-testimonials .logos img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.5;
}
.ebc-testimonials .logos img:hover {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .ebc-testimonials {
    padding: 80px 0;
  }
  .ebc-testimonials .img-slider {
    margin-bottom: 50px;
  }
  .ebc-testimonials .img-slider .slider-card .img {
    height: 350px;
  }
  .ebc-testimonials .text-slider .text {
    font-size: 30px;
  }
  .ebc-testimonials .logos {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  .ebc-testimonials .logos img {
    width: 30%;
    margin: 10px;
  }
  .ebc-testimonials .section-title h2 {
    text-align: center; 
    padding-bottom: 50px;
  }
}

/************************************/
/*** 	       Blogs	 	      ***/
/************************************/

.ebc-blogs {
  padding: 0 0 100px 0;
}
 
.ebc-blog-footer {
  margin-top: 50px;
  text-align: center;
}

.ebc-blog-card {
  border-radius: 15px;
  background: #fff;
  transition: all 0.5s ease-out;
  margin-block: 10px;
}
.ebc-blog-card .ebc-blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 767px) {
  .ebc-blog-card .ebc-blog-card-img-wrap {
    width: 100%;
  }
}
.ebc-blog-card .ebc-blog-card-img-wrap .card-img {
  overflow: hidden;
  display: block;
  position: relative;
  transition: all 0.5s ease-out;
}
.ebc-blog-card .ebc-blog-card-img-wrap .card-img img {
  transition: all 0.5s ease-out;
  border-radius: 0;
}
@media (max-width: 991px) {
  .ebc-blog-card .ebc-blog-card-img-wrap .card-img img {
    width: 100%;
  }
}

.ebc-blog-card .ebc-blog-card-img-wrap .date {
  position: absolute;
  top: 13px;
  left: 13px;
  text-align: center;
  width: 65px;
  height: 65px;
  background: rgba(16, 12, 8, 0.4);
  -webkit-backdrop-filter: blur(1.7px);
  backdrop-filter: blur(1.7px);
  transition: 0.5s;
  z-index: 9;
}
.ebc-blog-card .ebc-blog-card-img-wrap .date span {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-img-wrap .date span strong {
  font-size: 17px;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-img-wrap .date {
    top: 5px;
    left: 5px;
    width: 60px;
    height: 60px;
  }
  .ebc-blog-card .ebc-blog-card-img-wrap .date span {
    font-size: 10px;
  }
  .ebc-blog-card .ebc-blog-card-img-wrap .date span strong {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .ebc-blog-card .ebc-blog-card-img-wrap .date {
    top: 5px;
    left: 5px;
    width: 60px;
    height: 60px;
  }
  .ebc-blog-card .ebc-blog-card-img-wrap .date span {
    font-size: 10px;
  }
  .ebc-blog-card .ebc-blog-card-img-wrap .date span strong {
    font-size: 16px;
  }
}
.card-img img {
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 767px) {
  .card-img img {
    border-radius: 20px 20px 0px 0px;
  }
}

@media (width: 768px) {
  .card-img img {
    margin-left: 10px;
    border-radius: 20px 20px 20px 20px;
  }
}

.ebc-blog-card .ebc-blog-card-content {
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .ebc-blog-card .ebc-blog-card-content {
    padding: 20px;
  }
}

.ebc-blog-card-content-top p {
  margin: 2px;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul {
    gap: 15px;
  }
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li {
  position: relative;
  color: rgba(16, 12, 8, 0.5);
  font-family: var(--font-Poppins);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26px;
  text-transform: capitalize;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  background-color: var(--primary-color1);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li::before {
    left: -10px;
  }
}
.ebc-blog-card
  .ebc-blog-card-content
  .ebc-blog-card-content-top
  > ul
  li:first-child::before {
  display: none;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li a {
  color: rgba(16, 12, 8, 0.5);
  font-family: var(--font-Poppins);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26px;
  text-transform: capitalize;
  text-decoration: underline;
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li a:hover {
  color: var(--primary-color1);
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top > ul li:nth-child(2) a {
  text-decoration: none;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top .blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top .blog-date svg {
  fill: var(--title-color);
  opacity: 0.5;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top .blog-date a {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.26px;
  text-transform: capitalize;
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .ebc-blog-card-content-top .blog-date a:hover {
  color: var(--primary-color1);
}

.ebc-blog-card .ebc-blog-card-content p {
  color: #5c5c5c;
}
.ebc-blog-card .ebc-blog-card-content h5 a {
  color: #283132;
  font-size: 23px;
  font-weight: 500;
  line-height: auto;
  text-transform: capitalize;
  transition: 0.5s;
  line-height: 1.4;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ebc-blog-card .ebc-blog-card-content h5 a {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-content h5 a {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-content h5 {
    margin-bottom: 20px;
  }
}
.ebc-blog-card .ebc-blog-card-content h5:hover a {
  color: #283132;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a {
  color: #283132;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration-line: underline;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a > span svg {
  stroke: var(--primary-color1);
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a:hover {
  color: var(--primary-color2);
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a:hover span {
  border-color: var(--primary-color2);
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > a:hover span svg {
  transform: rotate(28deg);
  stroke: var(--primary-color2);
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li {
  position: relative;
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -17px;
  background: rgba(16, 12, 8, 0.2);
  width: 3px;
  height: 3px;
  border-radius: 50%;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li:first-child::before {
  display: none;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li a {
  color: rgba(16, 12, 8, 0.5);
  transition: 0.5s;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li a i {
  font-size: 16px;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area .social-list li:hover a {
  color: var(--primary-color2);
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > span {
  color: rgba(16, 12, 8, 0.5);
  font-family: var(--font-segoe-ui);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ebc-blog-card .ebc-blog-card-content .bottom-area > span svg {
  fill: rgba(16, 12, 8, 0.5);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-content.two {
    padding: 25px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card .ebc-blog-card-content.two h5 a {
    font-size: 17px;
  }
}
.ebc-blog-card:hover .ebc-blog-card-img-wrap .card-img img {
  transform: scale(1.2);
}
.ebc-blog-card:hover .ebc-blog-card-img-wrap .card-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ebc-blog-card:hover .ebc-blog-card-img-wrap .date {
  background-color: var(--primary-color1);
}
.ebc-blog-card.two {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .ebc-blog-card.two {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap {
    width: unset;
  }
}
@media (max-width: 576px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap {
    width: 100%;
  }
}

.ebc-blog-card.two .ebc-blog-card-img-wrap {
  border-radius: 13px 0px 0px 13px;
}
.ebc-blog-card.two .ebc-blog-card-img-wrap .card-img img {
  border-radius: 0;
  min-height: 230px;
  max-height: 230px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap .card-img img {
    min-width: 255px;
    max-width: 255px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap .card-img img {
    min-width: 222px;
    max-width: 222px;
  }
}
@media (max-width: 767px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap {
    border-radius: 13px 13px 0px 0px;
  }

  .ebc-blog-card.two .ebc-blog-card-img-wrap .card-img img {
    min-width: 240px;
    max-width: 240px;
  }
}
@media (max-width: 576px) {
  .ebc-blog-card.two .ebc-blog-card-img-wrap .card-img img {
    min-width: unset;
    max-width: unset;
    width: 100%;
    border-radius: unset;
  }
}
.ebc-blog-card.two .ebc-blog-card-content {
  padding: 25px 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card.two .ebc-blog-card-content {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .ebc-blog-card.two .ebc-blog-card-content {
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .ebc-blog-card.two .ebc-blog-card-content {
    padding: 20px;
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ebc-blog-card.two .ebc-blog-card-content h5 a {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .ebc-blog-card.two .ebc-blog-card-content h5 a {
    font-size: 18px;
  }
}

.tag-links {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}
.ebc-post-content{
  margin-top: 50px;
}
.ebc-post-tags .tag-links p {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 6px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
 
.ebc-post-social-sharing {
  text-align: right;
}

.ebc-post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ebc-post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.ebc-post-social-sharing ul li:last-child {
  margin-right: 0;
}

.ebc-post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 0;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.ebc-post-social-sharing ul li:hover a {
  background: var(--ebc-blue);
}

.ebc-post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}
@media (max-width: 768px) {
  .ebc-post-tag-links .row {
    flex-direction: column;
  }

  .ebc-post-tags {
    text-align: center;
    margin-bottom: 20px;
  }

  .tag-links {
    justify-content: center;
    text-align: center;
    font-size: 18px;
  }

  .ebc-post-tags .tag-links a {
    font-size: 14px;
    padding: 5px 14px;
  }

  .ebc-post-social-sharing {
    text-align: center;
  }

  .ebc-post-social-sharing ul li {
    margin-right: 8px;
  }

  .ebc-post-social-sharing ul li a {
    width: 34px;
    height: 34px;
  }

  .ebc-post-social-sharing ul li a i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .tag-links {
    gap: 6px;
  }

  .ebc-post-tags .tag-links a {
    font-size: 13px;
    padding: 4px 10px;
  }

  .ebc-post-social-sharing ul li {
    margin-right: 6px;
  }

  .ebc-post-social-sharing ul li a {
    width: 30px;
    height: 30px;
  }

  .ebc-post-social-sharing ul li a i {
    font-size: 14px;
  }
}

/************************************/
/*** 	 Instagram IMG's 	      ***/
/************************************/

.ebc-instagrams {
  font-size: 15px;
}

.ebc-instagrams-container {
  display: grid;
  gap: 15px;
}

.ebc-instagrams-item {
  position: relative;
  overflow: hidden;
}

.ebc-instagrams-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ebc-instagrams-item__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(40, 40, 40, 0.3);
  opacity: 0;
  transition: 0.2s ease-in-out;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.ebc-instagrams-item:hover .ebc-instagrams-item__content {
  opacity: 1;
}

.ebc-instagrams-item__content i {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.ebc-instagrams.-theme--violet .ebc-instagrams-item__content {
  background-color: #537bdfbd;
}

.ebc-instagrams.-theme--blue .ebc-instagrams-item__content {
  background-color: #11d1efbd;
}

/* --- Responsive Styles --- */
@media (max-width: 1200px) {
  .ebc-instagrams-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .ebc-instagrams-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .ebc-instagrams-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ebc-instagrams-item__content i {
    font-size: 1.5em;
  }
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/************************************/
/*** 	        Footer 	          ***/
/************************************/
.ebc-footer {
  position: relative;
  margin-top: 100px;
}
.ebc-footer::after {
  position: absolute;
  margin-top: -100px;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/static-assets/footer-shape.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.footer-social-link-title h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
}

.footer-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-links ul li {
  display: inline-flex;
  margin-right: 10px;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
  font-size: 18px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
  background: var(--accent-color);
}

.footer-social-links ul li a:hover i {
  color: var(--white-color);
}

.ebc-footer-logo-text {
  color: #ffffff90;
  padding-top: 20px;
}
.ebc-footer-links h3 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 20px;
}

.ebc-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ebc-footer-links ul li {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}

.ebc-footer-links ul li:last-child {
  margin-bottom: 0;
}

.ebc-footer-links ul li:hover {
  color: var(--accent-color);
}

.ebc-footer-links ul li a {
  display: block;
  color: inherit;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
  border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
  font-size: 16px;
  color: var(--white-color);
}

.footer-contact-content {
  width: calc(100% - 50px);
}

.footer-contact-content p {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--white-color);
  font-weight: 200;
  margin: 0;
}

.footer-contact-content p:hover {
  color: var(--accent-color);
}

.footer-newsletter-form p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
  display: flex;
  background: var(--white-color);
  overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
  width: 85%;
  border: none;
  border-radius: 0;
  color: var(--text-color);
  background: transparent;
  padding: 13px 10px;
  box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--text-color);
}

.footer-newsletter-form button {
  background-color: transparent;
  width: 15%;
  border: none;
  padding: 0;
}

.footer-newsletter-form button i {
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
  color: var(--primary-color);
}

.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  text-align: center;
  margin-top: 65px;
  padding: 40px 0;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.ebc-footer-wrapper {
  padding: 50px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .ebc-footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ebc-footer-text {
  display: flex;
  flex-wrap: wrap;
}

.ebc-footer-text-heading {
  transform: translateY(-28px);
}

@media (max-width: 1199px) {
  .ebc-footer-text-heading {
    transform: translateY(0);
  }
  .ebc-footer-links h3 {
    padding-top: 50px;
    margin-bottom: 0px;
  }
}

.ebc-footer-text-title {
  font-weight: 800;
  margin: 0;
  line-height: 1.04; 
  text-transform: uppercase;
  text-align: left;
  color: var(--white-color);
  font-size: 120px;
}

@media (max-width: 1599px) {
  .ebc-footer-text-title {
    font-size: 90px;
  }
}
@media (max-width: 1199px) {
  .ebc-footer-text-title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .ebc-footer-text-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .ebc-footer-text-title {
    font-size: 50px;
  }
}

.ebc-footer-text-thumb {
  padding-right: 25px;
}
@media (max-width: 575px) {
  .ebc-footer-text-thumb {
    padding-bottom: 20px;
  }
}
.ebc-footer-text-thumb img {
  width: 100px;
}

/* Base styles */
.ebc-copyright {
  display: flex;
  justify-content: flex-end;
}

.ebc-copyright__area {
  padding-top: 50px;
}

.ebc-copyright__border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ebc-copyright__left p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 12px;
  color: rgba(231, 236, 255, 0.5);
}
.ebc-copyright__left .brandsaur{
  color: rgba(231, 236, 255, 0.5);
  text-decoration: underline;
}
/* Social styles */
.ebc-copyright__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ebc-copyright__social ul li {
  display: inline-block;
  margin: 0 -2px;
}

.ebc-copyright__social ul li a {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: rgba(231, 236, 255, 0.6);
  padding: 0px 20px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ebc-copyright__social ul li:last-child a {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ebc-copyright__social ul li a i {
  margin-right: 8px;
}

/* Hover */
.ebc-copyright__social ul li:hover a {
  background-color: rgba(231, 236, 255, 0.1);
  color: var(--tp-common-white);
  border-left: 1px solid rgba(231, 236, 255, 0.1);
}
.ebc-copyright__social ul li:hover:last-child a {
  border-right: 1px solid rgba(231, 236, 255, 0.1);
}

/* Tablet */
@media (max-width: 991px) {
  .ebc-copyright__social ul li a {
    padding: 0px 15px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ebc-footer {
    padding: 0px 10px;
  }

  .ebc-copyright {
    display: block;
    justify-content: center;
  }

  .ebc-copyright__left p {
    margin: 20px 0px;
  }
  .ebc-copyright__left,
  .ebc-copyright__social {
    text-align: center !important;
  }

  .ebc-copyright__social ul {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    background-color: rgba(231, 236, 255, 0.1);
    border-radius: 20px 20px 0 0;
  }
  .ebc-copyright__social ul li {
    width: 50%;
    margin: 0;
  }

  .ebc-copyright__social ul li a {
    width: 100%;
    display: block;
    border: none;
    height: auto;
    line-height: 1.6;
    padding: 10px 0;
  }

  .ebc-copyright__social ul li a i {
    display: inline-block;
    margin-right: 6px;
  }
}

/**********************  Inner Pages  **********************/

/************************************/
/*** 	    Page Header 	      ***/
/************************************/
.ebc-page-header {
  position: relative; 
  background-color: var(--ebc-blue); 
  padding: clamp(50px, 15vw, 100px) 0; /* Responsive top & bottom padding */
}


.ebc-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ebc-page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.ebc-page-header-box h1 {
  display: inline-block;
  font-size: clamp(32px, 8vw, 80px); 
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  cursor: none;
}

 

/************************************/
/*** 	   ebc-vision-mission	      ***/
/************************************/
.ebc-vision-mission {
  padding: 100px 0 100px;
}

.ebc-vision-mission-box {
  background-color: #191c38;
  padding: 45px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 150px;
  border-radius: 15px;
}

.ebc-vision-mission-item {
  position: relative;
  width: calc(50% - 75px);
}

.ebc-vision-mission-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: -75px;
  bottom: 0;
  background-color: var(--divider-color);
  z-index: 1;
}

.ebc-vision-mission-item:nth-child(2n + 2)::before,
.ebc-vision-mission-item:last-child::before {
  display: none;
}

.ebc-vision-mission-item .icon-box {
  position: relative;
  width: 95px;
  height: 95px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ebc-vision-mission-item .icon-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.ebc-vision-mission-item:hover .icon-box:before {
  transform: scale(1);
}

.ebc-vision-mission-item .icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.ebc-vision-mission-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.ebc-vision-mission-content h3 {
  font-size: 35px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.ebc-vision-mission-content p {
  margin: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 991px) {
  .ebc-vision-mission-box {
    gap: 30px 60px;
    padding: 40px;
  }

  .ebc-vision-mission-item {
    width: calc(50% - 30px);
  }

  .ebc-vision-mission-item::before {
    right: -30px;
  }
}

@media (max-width: 767px) {
  .ebc-vision-mission-box {
    flex-direction: column;
    padding: 30px;
    gap: 40px 0;
  }

  .ebc-vision-mission-item {
    width: 100%;
  }

  .ebc-vision-mission-item::before {
    display: none;
  }

  .ebc-vision-mission-content h3 {
    font-size: 28px;
  }

  .ebc-vision-mission-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ebc-vision-mission {
    padding: 60px 0 30px;
  }

  .ebc-vision-mission-box {
    padding: 20px;
  }

  .ebc-vision-mission-content h3 {
    font-size: 24px;
  }

  .ebc-vision-mission-item .icon-box {
    width: 75px;
    height: 75px;
  }

  .ebc-vision-mission-item .icon-box img {
    max-width: 28px;
  }
}

/************************************/
/*** 	        Growth	 	      ***/
/************************************/
.ebc-growth {
  background-color: #fff;
  color: var(--text-color);
  padding: 100px 0;
}

.ebc-growth-iamge figure,
.ebc-growth-content-img figure {
  display: block;
}

.ebc-growth-content-img img {
  width: 100%;
  aspect-ratio: 1 / 0.44;
  object-fit: cover;
  border-radius: 15px;
}

.ebc-growth-content-img-2 img {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  border-radius: 15px;
}
.ebc-growth-content .section-title {
  margin-bottom: 0;
}

.ebc-growth-iamge img {
  width: 100%;
  aspect-ratio: 1 / 0.93;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .ebc-growth-iamge img {
    padding-top: 20px;
  }
}

/************************************/
/***         Our Team	 	      ***/

.ebc-team {
  padding: 100px 0 70px;
  background-color: #fff;
  color: var(--text-color);
}

.team-member-item {
  margin-bottom: 30px;
  height: 100%;
}

.team-image {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.team-image a {
  display: block;
  cursor: none;
}

.team-image figure {
  display: block;
  margin: 0;
}

.team-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.11;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  display: block;
}

.team-member-item:hover .team-image figure img {
  transform: scale(1.1);
}

.team-readmore-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}

.team-readmore-btn a {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
  background-color: var(--primary-color);
}

.team-readmore-btn img {
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
  transform: rotate(0deg);
}

.team-content {
  text-align: center;
  margin-bottom: 20px;
}

.team-content h3 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
}

.team-content p {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.team-social-icon ul li {
  display: inline-flex;
  margin-right: 10px;
}

.team-social-icon ul li:last-child {
  margin-right: 0;
}

.team-social-icon ul li a {
  width: 44px;
  height: 44px;
  color: var(--accent-color);
  background: var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

.team-social-icon ul li a i {
  color: inherit;
  font-size: 18px;
}

/* --- Responsive Styles --- */

@media (max-width: 991px) {
  .team-content h3 {
    font-size: 24px;
  }

  .team-readmore-btn a {
    width: 50px;
    height: 50px;
  }

  .team-readmore-btn img {
    max-width: 16px;
  }
}

@media (max-width: 767px) {
  .team-member-item {
    margin-bottom: 40px;
  }

  .team-image {
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .team-image figure img {
    aspect-ratio: 1 / 1.2;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .team-content p {
    font-size: 14px;
  }

  .team-social-icon ul li a {
    width: 40px;
    height: 40px;
  }

  .team-social-icon ul li a i {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .ebc-team {
    padding: 60px 0 40px;
  }

  .team-image {
    margin-bottom: 15px;
  }

  .team-image figure img {
    aspect-ratio: 3 / 4; /* Taller image on mobile */
    max-width: 280px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .team-readmore-btn {
    top: 20px;
    right: 20px;
  }

  .team-readmore-btn a {
    width: 44px;
    height: 44px;
  }

  .team-readmore-btn img {
    max-width: 14px;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .team-content p {
    font-size: 13px;
  }
}

/************************************/
/*** 	     Work Process	      ***/
/************************************/
.ebc-process {
  background: var(--ebc-blue);
  padding: 100px 0;
}

.ebc-process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.ebc-process-item {
  width: calc(25% - 22.5px);
}

.ebc-process-item .icon-box {
  margin-bottom: 30px;
}

.ebc-process-item .icon-box img {
  max-width: 60px;
}

.ebc-process-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.ebc-process-content p {
  color: var(--white-color);
  margin: 0;
}

.ebc-network-logos {
  padding-bottom: 60px;
}

.ebc-network-logos .company-logo {
  text-align: center;
}

.ebc-network-logos .company-logo img {
  width: 100%;
}

/* --- Responsive Styles --- */

@media (max-width: 991px) {
  .ebc-process-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .ebc-process {
    padding: 60px 0;
  }

  .ebc-process-list {
    gap: 20px;
  }

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

  .ebc-process-content h3 {
    font-size: 18px;
  }

  .ebc-process-content p {
    font-size: 14px;
  }

  /* Stack the section-row columns */
  .ebc-process .section-row > div {
    margin-bottom: 30px;
  }

  .ebc-process .section-row > div:last-child {
    margin-bottom: 0;
  }

  .ebc-process .section-title-content {
    margin-left: 0px;
  }
  .ebc-team .section-title-content {
    margin-left: 0px;
  }
  .section-title-content {
    margin-left: 0px;
  }
}

/************************************/
/*** 	        FAQ's 	          ***/
/************************************/

.ebc-about-faqs {
  padding: 50px 0;
  background-color: #fff;
  color: var(--text-color);
}

.ebc-about-faqs-content {
  top: 0;
  margin-right: 0;
  padding: 50px;
  border-radius: 20px;
}

/* Tablet (max-width: 1199px) */
@media (max-width: 1199px) {
  .ebc-about-faqs-content {
    padding: 40px; /* Adjusted padding for tablets */
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .ebc-about-faqs-content {
    padding: 30px; /* Adjusted padding for mobile */
  }
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2em;
  align-items: start;
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
  margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: var(--ebc-blue);
  text-align: right;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-accordion .accordion-body {
  padding-right: 35px;
}

.faq-accordion .accordion-body p {
  margin: 0;
}

.ebc-about-faqs-image {
  text-align: right;
}

.ebc-about-faqs-image figure {
  display: block;
  margin: 0;
}

.ebc-about-faqs-image img {
  align-items: center;
  justify-content: center;
  margin: auto 0;
  width: 80%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* --- Responsive Styles --- */
@media (max-width: 767px) {
  .ebc-about-faqs-image {
    text-align: center;
    margin-top: 30px;
  }

  .ebc-about-faqs-image img {
    aspect-ratio: auto;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

/************************************/
/*** 	     Blog Pages	          ***/
/************************************/
.ebc-blogs-list {
  padding: 100px 0;
  background-color: var(--white-color);
  color: var(--text-color);
}
 
.ebc-blog-post{
  background-color: var(--ebc-blue);
  margin-block: 20px;
  border-radius: 15px;
}

.ebc-blog-post .ebc-blog-post-content h3 a{
  color: var(--white-color);
}
.ebc-blog-post-body {
  color: var(--white-color);
  padding: 20px;
}
 .ebc-blog-post-image .ebc-blog-header-image{
  border-radius: 15px 15px 0px 0px;
 }
.ebc-blog-author {
  margin-top: 15px;
}

.ebc-blog-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.ebc-blog-author-info {
  display: flex;
  flex-direction: column;
}

.ebc-blog-author-name {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.ebc-blog-date {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

.ebc-blog-footer {
  margin-top: 30px;
}

.ebc-blog-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  text-transform: uppercase;
}

.ebc-post-image figure{
  border-radius: 15px; 
}
@media (max-width: 768px) {
  .ebc-blogs-list {
    padding: 30px 0;
  }
}

/************************************/
/*** 	     BOX CTA	          ***/
/************************************/
.ebc-cta {
  position: relative;
  background-color: #090d2c; /* solid blue background */
  /* Removed background-image, repeat, position, size */
  overflow: hidden;
  border-radius: 20px;
  padding: 0px 50px;
  margin-block: 100px; 
}

/* Tablet (max-width: 1199px) */
@media (max-width: 1199px) {
  .ebc-cta {
    padding: 50px 20px 0px 20px; /* Adjusted for mobile */
    border-radius: 0;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .ebc-cta {
    padding: 50px 20px 0px 20px; /* Adjusted for mobile */
    border-radius: 0;
  }
}

.ebc-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ebc-blue);
  opacity: 40%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ebc-cta .container {
  position: relative;
  z-index: 1;
}
.ebc-cta-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 30px 30px; 
}

.ebc-cta-btn {
  flex: 0 0 auto;  
}

.ebc-cta-body span.cta-or {
  flex: 0 0 auto;
  font-size: 16px;
  margin: 0 10px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
}

.contact-now-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 1 auto; /* Don’t stretch too wide */
  min-width: 250px;
  margin-top: -10px;
}


.contact-now-box .icon-box {
  background: var(--accent-color);
  color: white;
  padding: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-size: 17px;
}

.contact-now-box-content p {
  margin: 0;
  font-weight: 500;
}

.contact-now-box-content h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.contact-now-box-content a {
  color: white;
  text-decoration: none;
}

.contact-now-box-content a:hover {
  color: var(--accent-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
 
  .ebc-cta-content .section-title{
    text-align: center;
  }
  .ebc-cta-body {
    flex-wrap: nowrap;
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start;
    text-align: left;
  }

  .contact-now-box {
    justify-content: center;
  }

  .contact-now-box-content h3 {
    font-size: 18px;
  }
}

/************************************/
/***     Contact Us Form 	      ***/
/************************************/

.ebc-contact-us {
  padding: 100px 0 50px;
  background-color: #fff;
  color: var(--text-color);
}

.ebc-contact-us-image {
  height: 100%;
}

/* ✅ Tablet screens */
@media (max-width: 992px) {
  .ebc-contact-us-image {
    padding: 40px 10px;
  }
}

/* ✅ Mobile screens */
@media (max-width: 576px) {
  .ebc-contact-us-image {
    padding: 30px 8px;
  }
}

.ebc-contact-us-image figure {
  height: 100%;
  display: block;
}

.ebc-contact-us-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.ebc-contact-us-form {
  padding: 0 10px;
}

.ebc-contact-us-form .section-title h2 {
  color: var(--text-color);
}

.ebc-contact-form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  padding: 14px 15px;
}

.ebc-contact-form .form-control::placeholder {
  font-weight: 400;
}

.google-map {
  padding: 50px 0 100px;
  background-color: #fff;
  color: var(--text-color);
}

.google-map .section-title {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 30px;
  text-align: center;
}

.google-map .section-title h2 {
  color: var(--text-color);
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
}

.ebc-contact-info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  justify-content: space-between;
}

.ebc-contact-info-item {
  flex: 1 1 calc(33.33% - 20px);
  display: flex;
  align-items: flex-start;
  min-width: 250px;
}

.ebc-contact-info-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.ebc-contact-info-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.ebc-contact-info-item:hover .icon-box:before {
  transform: scale(1);
  background: var(--accent-color);
}

.ebc-contact-info-item .icon-box i {
  position: relative;
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.ebc-contact-info-item:hover .icon-box i {
  color: var(--white-color);
}

.ebc-contact-info-content {
  width: calc(100% - 80px);
}

.ebc-contact-info-content h3 {
  font-size: 25px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.ebc-contact-info-content p {
  margin-bottom: 0;
  color: var(--text-color);
}

/* ✅ Responsive styles */
@media (max-width: 992px) {
  .ebc-contact-info-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .ebc-contact-info-item {
    flex: 1 1 100%;
  }

  .ebc-contact-info-box {
    gap: 20px;
  }

  .ebc-contact-info-content h3 {
    font-size: 20px;
  }
}

/************************************/
/***      Projects Details 	      ***/
/************************************/
.ebc-projects-page {
  padding: 100px 0 70px;
  background-color: var(--white-color);
  color: #000;
}

.our-project {
  padding: 100px 0 70px;
}

.our-Project-nav {
  text-align: center;
  margin-bottom: 60px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.our-Project-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 30px;
  padding: 0;
  margin: 0;
}

.our-Project-nav ul li a {
  position: relative;
  display: inline-block;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform-origin: bottom right;
  transition: transform 0.4s ease-in-out;
  transform: scaleX(0);
}

.our-Project-nav ul li a:after {
  top: -8px;
  bottom: auto;
  left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
 
.ebc-project-card {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.ebc-projects-card-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 111.33%
  );
  z-index: 0;
  border-radius: 15px;
}

.project-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(20px);
  border-radius: 50%;
  transform: translate(-50%, -30%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.ebc-project-card:hover .project-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.project-btn a {
  width: 100px;
  height: 100px;
  background: var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.project-btn img {
  max-width: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
  background: var(--ebc-blue);
}

.project-btn a:hover img {
  transform: rotate(0deg);
}

.ebc-projects-card-image img {
  width: 100%;
  aspect-ratio: 1 / 0.79;
  object-fit: cover;
  border-radius: 15px;
}

.ebc-project-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
}

.ebc-project-content h3,
.ebc-project-content h2 {
  color: var(--white-color);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.ebc-project-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.ebc-project-content h2 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.ebc-project-content h2 a {
  color: inherit;
}

.ebc-projects-page-single {
  padding: 100px 0;
  background-color: var(--white-color);
  color: var(--text-color);
}

.ebc-project-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 30px;
}

.ebc-project-detail-list {
  border: 2px solid var(--divider-color);
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 15px;
}

.ebc-project-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.ebc-project-detail-item:last-child {
  margin-bottom: 0;
}

.ebc-project-detail-item .icon-box {
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--divider-color);
}

.ebc-project-detail-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.ebc-project-detail-item:hover .icon-box::before {
  transform: scale(1);
}

.ebc-project-detail-item .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.ebc-project-detail-item:hover .icon-box i {
  color: var(--white-color);
}

.ebc-project-detail-content {
  width: calc(100% - 70px);
}

.ebc-project-detail-content h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
  color: var(--text-color);
}

.ebc-project-detail-content p {
  color: var(--text-color);
  opacity: 0.8;
  text-transform: capitalize;
  margin-bottom: 0;
}

.ebc-project-single-image {
  margin-bottom: 40px; 
}

.ebc-project-single-image figure {
  display: block; 
}

.ebc-project-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  border-radius: 15px;
}

.ebc-project-info,
.ebc-project-design-info {
  margin-bottom: 60px;
}

.ebc-project-info h2 {
  color: var(--text-color);
}

.ebc-project-info .image-anime img{
  border-radius: 15px;
}
.ebc-project-design-info h2 {
  color: var(--text-color);
}

.ebc-project-gallery h2 {
  color: var(--text-color);
}

.ebc-project-entry h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.ebc-project-entry p {
  margin-bottom: 20px;
}

.ebc-project-entry p:last-child {
  margin-bottom: 0;
}

.ebc-project-entry ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.ebc-project-entry ul li {
  position: relative;
  font-weight: 500;
  color: var(--text-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.ebc-project-entry ul li:last-child {
  margin-bottom: 0;
}

.ebc-project-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  top: 2px;
  left: 0;
}

.ebc-project-gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 15px;
}

.ebc-project-gallery-img a,
.ebc-project-gallery-img figure {
  display: block;
  cursor: none;
}

.ebc-project-gallery-img figure img {
  width: 100%; 
  object-fit: cover;
  border-radius: 15px;
}

/************************************/
/***         FAQ Page 	          ***/
/************************************/
.page-faqs {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

.page-faqs .container {
  margin: 0 auto;
}

.ebc-faq-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 30px;
  padding-bottom: 50px;
}

.ebc-faq-catagery-list {
  border: 2px solid var(--divider-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 60px;
}

.ebc-faq-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ebc-faq-catagery-list ul li {
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.ebc-faq-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.ebc-faq-catagery-list ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.ebc-faq-catagery-list ul li:hover a {
  color: var(--accent-color);
}

.our-faq-section.page-faq-accordion .section-title h2 {
  margin-block: 120px 50px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 40px;
}

.our-faq-section.page-faq-accordion:last-child {
  margin-bottom: 0;
  color: var(--text-color);
}
.accordion-item .accordion-header .accordion-button {
  color: #000;
}
 
.ebc-sidebar-cta-box{
  border: 2px solid var(--divider-color);
  border-radius: 15px;
}
.ebc-sidebar-cta-image figure {
  display: block;
}

.ebc-sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 0.57;
  object-fit: cover;
  border-radius: 13px 13px 0 0;
}

.ebc-sidebar-cta-body {
  padding: 30px;
}

.ebc-sidebar-cta-content {
  margin-bottom: 25px;
}

.ebc-sidebar-cta-content h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
}

.ebc-sidebar-cta-content p {
  margin-bottom: 0;
  line-height: 1.2;
  margin-top: 10px;
}

.ebc-sidebar-cta-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ebc-sidebar-cta-contact-item:last-child {
  margin-bottom: 0;
}

.ebc-sidebar-cta-contact-item .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: #ececec;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

.ebc-sidebar-cta-contact-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.ebc-sidebar-cta-contact-item:hover .icon-box::before {
  transform: scale(1);
}

.ebc-sidebar-cta-contact-item .icon-box i {
  position: relative;
  max-width: 24px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.ebc-sidebar-cta-contact-item:hover .icon-box i {
  filter: brightness(0) invert(1);
}

.cta-contact-item-content a {
  color: #000;
}
@media (max-width: 767px) {
  .ebc-faq-catagery-list {
    margin-bottom: 10px;
  }
  .ebc-faq-sidebar {
    margin: 50px 0 0 0;
  }
  .ebc-service-page {
    padding: 10px 0;
  }
  .ebc-projects-page-single {
    padding: 10px 0;
  }
  .ebc-project-single-sidebar {
    margin-top: 50px;
    margin-right: 0px;
    padding-bottom: 50px;
  }
  .ebc-project-detail-list {
    margin-bottom: 10px;
  }
  .page-faqs {
    padding: 50px 0;
  }
}
/* FAB BUTTON */
#fab-awesome {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  transition: right 0.5s ease;
}

/* Sliding animations */
#fab-awesome.slide-out {
  right: -100px; /* Moves the button off-screen */
}

#fab-awesome.slide-in {
  right: 20px; /* Moves the button back to its original position */
}

#fab-awesome-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(90deg, #DFB575 , #DFB575 ); 
  border-radius: 0px 0px 10px 0px;

}

#fab-awesome-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 50px;
  color: #fff;
  background: linear-gradient(90deg, #3e4c86, #3e4c86);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s all linear;
  border-radius: 50px 0px 0px 50px;
}

#fab-awesome-button.open ~ button {
  visibility: visible;
  right: 70px;
  opacity: 1;
}

#fab-awesome-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  transition: .2s all linear;
}

#fab-awesome-button ~ .fab-awesome-whatsapp {
  background: #26bd26;
  border-radius: 50px 50px 0px 0px;
}

#fab-awesome-button ~ .fab-awesome-instagram {
  background: linear-gradient(-120deg, #DD2A7B, #DD2A7B, #DD2A7B, #DD2A7B);
}

#fab-awesome-button.open ~ a {
  opacity: 1;
}

#fab-awesome-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}

#fab-awesome-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}

#fab-awesome-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}

/* Add smooth transition for sliding out */
#fab-awesome.slide-out {
  opacity: 0;
  visibility: hidden;
  transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s;
}

#fab-awesome.slide-in {
  opacity: 1;
  visibility: visible;
  transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s;
}

/* END FAB BUTTON */