/* Banner Section */
.banner-photo img {
  box-shadow: 0 0 7px 4px rgb(255 255 255 / 22%);
  border: 4px;
  border-radius: 50%;
  border-style: double;
  border-color: white;
}

.banner-section {
  /* background-color: #333333ab; */
  min-height: 115vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url(../imgs/home/index-banner-4.webp);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}
.gradient-layer
{
   position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 33%);
    backdrop-filter: blur(5px);
}

.owl-carousel .owl-item img
{
  width: 95%;
}

.top-container
{
  position: relative;
}
.banner-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--primary-darkblue);
  opacity: 0.1;
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.banner-section .row {
  margin-top: 100px;
}

.banner-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease;
  line-height: 70px;
}

.banner-content p {
  color: var(--light-gray);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
  line-height: 40px;
}

.btn-primary-custom {
  background: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s;
  animation: fadeInUp 1.4s ease;
  color: black;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  color: white;
  transform: translateY(-3px);
  background: var(--primary-darkblue);
}

.banner-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  animation: fadeInUp 1.6s ease;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-darkblue);
}

.stat-label {
  color: var(--light-gray);
  font-size: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* about us */

.about-us .theme-content .about-bold {
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff6b35;
}

.about-us .theme-content p {
  margin-bottom: 11px;
}

.about-big-font {
  position: relative;
  text-align: center;
  z-index: -1;
}

.about-big-font p {
  font-size:60px;
  text-transform: uppercase;
  font-weight: bold;
  background-image: linear-gradient(
    -225deg,
    rgba(42, 111, 139, 0.8) 0%,
    #27374a 50%,
    #1b2a38 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.secondary-heading
{
  font-size: 40px !important;
}

.about-us .site-heading {
  text-align: left;
  margin-top: 112px;
  margin-bottom: 12px;
}

.about-us-image img {
  width: 100%;
  margin-top: 118px;
  height: 415px;
  object-fit: cover;
  border-radius: 5px;
}

.about-us button {
  margin-left: 0;
}

/* about us */

/* Services/Shops Section */

/* Brand Section Starts Here */
/* Services/Shops Section */
.services-section {
    background-color: var(--light-gray);
}

.shop-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
    position: relative;
}

.unit-only
{
  position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    color: #fff;
    padding: 0 15px;
    background: black;
    border-radius: 15px;
    text-align: center;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.shop-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-darkblue), #ff8c61);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.shop-image img 
{
      max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.shop-content {
    padding: 25px;
    height: 245px;
    display: grid;
    text-align: center;
    padding-top: 0;
    margin-top: -20px;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.shop-category {
    color: var(--primary-darkblue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.shop-description {
    color: #666;
    margin-bottom: 20px;
}

.shop-floor {
    display: inline-block;
    background-color: var(--grey);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.btn-visit {
    background: var(--primary-darkblue);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
    width: 100%;
}

.btn-visit:hover {
    background: var(--primary-darkblue);
    color: var(--white);
}
/* Brand Section Ends Here */


@media (max-width: 768px) {
  .about-big-font p
  {
    font-size: 30px;
  }
  .secondary-heading
  {
    font-size: 20px !important;
  }
}


/* Contact Section */
.main-contact-section {
  background-color: #00000091;
  color: var(--white);
  background-image: url(../imgs/home/contact-bg-banner.webp);
  background-blend-mode: multiply;
  background-size: cover;
  background-attachment: fixed;
}

.contact-form {
  background-color: rgb(255 255 255 / 30%);
  padding: 40px;
  border-radius: 15px;
}

.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image img {
  width: 90%;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.contact-info-home {
  background: #ff6b35;
  padding: 30px 21px 0 21px;
  margin-top: 56px;
  border-radius: 6px;
}

.contact-item-home {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-item-home i {
  font-size: 1.5rem;
  color: var(--white);
  margin-right: 20px;
  width: 30px;
}

.mall-hours {
  background-color: rgba(255, 107, 53, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgb(255 255 255 / 55%);
}

.hours-row:last-child {
  border-bottom: none;
}



.services-section {
background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner-stats {
    flex-direction: column;
    gap: 20px;
  }
}



/* Media Query for Hero Section */

@media (min-width: 1501px) {
.owl-carousel .owl-item img {
    margin-left: auto;
}
}

@media (max-width: 1500px) {
.owl-carousel .owl-item img {
    margin-left: auto;
    display: block;
    width: 90%;
}
}


@media (max-width: 992px) {
.banner-section .row
{

  margin-top: 280px;
}

.owl-carousel .owl-item img
{
  width: 60%;
  margin: 40px auto;
}
}

@media (max-width: 768px) {
.banner-section
{
min-height: 150vh;
}
.banner-section .row
{

  margin-top: 40px;
}
}

@media (max-width: 576px) {
.banner-section {
    min-height: 110vh;
}
.banner-section .row
{

  margin-top: 70px;
}
}

@media (max-width: 390px) {
.banner-section {
    min-height: 130vh;
}
}

