/*-----------------------------------------------------------------------------------

    Template Name: Interior
    Description: Interior - Interior Design and Architecture Bootstrap Template
    Author: UIdeck
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700|Hind:400,500,600,700|Quattrocento:400,700");
body {
  font-family: 'Hind', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #646464;
  border-top: 4px solid #264F8F;
  background: url('../images/bg.png') repeat;
  background-attachment: fixed;
  position: relative;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23264F8F"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') 12 12, auto;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: -1;
}

.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-selector:hover {
    background: #e9ecef;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c234d;
    font-weight: 500;
}

.current-lang i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-selector:hover .current-lang i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 20px;
    color: #2c234d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: #f8f9fa;
    color: #2c234d;
}

@media (max-width: 767px) {
  .navbar-btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quattrocento', serif;
  font-weight: 700;
  color: #121619;
  margin: 0px; }

h1 {
  font-size: 60px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  color: #646464;
  margin: 0px; }
  @media (max-width: 767px) {
    p {
      font-size: 16px; } }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

/*===== All Button Style =====*/
.main-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 25px;
  height: 45px;
  background: #264F8F;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.main-btn:hover {
  background: #fff;
  color: #264F8F;
  border-color: #264F8F;
}

/*===== All Section Title Style =====*/
.section-title .sub-title {
  font-size: 18px;
  color: #264F8F;
  text-transform: uppercase; }
  @media (max-width: 767px) {
    .section-title .sub-title {
      font-size: 16px; } }

.section-title .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #2c234d;
  text-transform: none;
  margin-bottom: 20px;
}
  @media (max-width: 767px) {
    .section-title .title {
      font-size: 24px; } }

/*===== All Animation Title Style =====*/
.animation-one {
  display: none;
  -webkit-animation: rotate 15s linear infinite;
  -moz-animation: rotate 15s linear infinite;
  -o-animation: rotate 15s linear infinite;
  animation: rotate 15s linear infinite; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999; }
  .preloader .loader_34 {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .preloader .loader_34 .ytp-spinner {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 64px;
      margin-left: -32px;
      z-index: 18;
      pointer-events: none; }
      .preloader .loader_34 .ytp-spinner .ytp-spinner-container {
        pointer-events: none;
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -50%;
        -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        animation: ytp-spinner-linspin 1568.23529647ms linear infinite; }
        .preloader .loader_34 .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
          .preloader .loader_34 .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            overflow: hidden;
            right: 50%; }
          .preloader .loader_34 .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            left: 50%; }
    .preloader .loader_34 .ytp-spinner-circle {
      box-sizing: border-box;
      position: absolute;
      width: 200%;
      height: 100%;
      border-style: solid;
      /* Spinner Color */
      border-color: #264F8F #264F8F #ededed;
      border-radius: 50%;
      border-width: 6px; }
    .preloader .loader_34 .ytp-spinner-left .ytp-spinner-circle {
      left: 0;
      right: -100%;
      border-right-color: #ededed;
      -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
    .preloader .loader_34 .ytp-spinner-right .ytp-spinner-circle {
      left: -100%;
      right: 0;
      border-left-color: #ededed;
      -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }

/*===========================
    2.HEADER css 
===========================*/
.header-area {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background-color: #fff;
}

.header-area .shape {
  position: absolute;
}

.header-area .header-shape-one {
  top: 0;
  left: 0;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-shape-one {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .header-area .header-shape-one {
    width: 180px;
  }
  .header-area {
    padding-top: 60px;
  }
}
.header-area .header-shape-tow {
  top: 25px;
  left: 31%;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-shape-tow {
    left: 40%;
  }
}
@media (max-width: 767px) {
  .header-area .header-shape-tow {
    left: 60%;
    width: 60px;
  }
}
.header-area .header-shape-three {
  left: 70px;
  bottom: 130px;
  display: none;
}
@media (max-width: 767px) {
  .header-area .header-shape-three {
    width: 90px;
    bottom: 200px;
  }
}
.header-area .header-shape-fore {
  left: 48%;
  bottom: -90px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-shape-fore {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .header-area .header-shape-fore {
    bottom: -60px;
    width: 210px;
  }
}
.header-area .shape img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(47%) saturate(2074%) hue-rotate(194deg) brightness(94%) contrast(87%);
}

.navigation-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 25px 0;
  background: url('../images/bg.png') repeat;
  background-attachment: fixed;
}

.navigation-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: -1;
}

.navigation-bar.sticky {
  position: fixed;
  background: url('../images/bg.png') repeat;
  background-attachment: fixed;
}

.navigation-bar.sticky::before {
  background: rgba(255, 255, 255, 0.95);
}

.navbar {
  padding: 0;
  position: relative; }
  .navbar .navbar-brand {
    padding-left: 0;
    margin-left: -15px; }
  .navbar .navbar-brand img {
    max-width: 140px;
    transition: transform 0.3s ease;
  }

  .navbar .navbar-brand:hover img {
    transform: scale(1.1);
  }

  .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    display: block;
    background-color: #646464;
    margin: 5px 0; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-collapse {
      position: absolute;
      top: 128%;
      width: 100%;
      left: 0;
      background-color: #fff;
      padding: 5px 15px;
      z-index: 9;
      -webkit-box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3);
      -moz-box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3);
      box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3); } }
  @media (max-width: 767px) {
    .navbar .navbar-collapse {
      position: absolute;
      top: 128%;
      width: 100%;
      left: 0;
      background-color: #fff;
      padding: 5px 15px;
      z-index: 9;
      -webkit-box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3);
      -moz-box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3);
      box-shadow: 0px 5px 25px 0px rgba(244, 128, 74, 0.3); } }
  .navbar .navbar-nav .nav-item {
    margin-right: 30px; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .navbar .navbar-nav .nav-item {
        margin-right: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar .navbar-nav .nav-item {
        margin: 5px 0; } }
    @media (max-width: 767px) {
      .navbar .navbar-nav .nav-item {
        margin: 5px 0; } }
    .navbar .navbar-nav .nav-item a {
      color: #646464;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s; }
      .navbar .navbar-nav .nav-item a i {
        font-size: 14px;
        opacity: 0.8;
        transition: all 0.3s ease; }
      .navbar .navbar-nav .nav-item:hover a i,
      .navbar .navbar-nav .nav-item.active a i {
        opacity: 1;
        transform: scale(1.1); }
      @media (max-width: 767px) {
        .navbar .navbar-nav .nav-item a {
          font-size: 13px;
          gap: 12px;
          padding: 12px 20px; }
        .navbar .navbar-nav .nav-item a i {
          font-size: 14px;
          width: 20px;
          text-align: center; } }
    .navbar .navbar-nav .nav-item.active a, .navbar .navbar-nav .nav-item:hover a {
      color: #264F8F;
      font-weight: 600; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-btn {
      position: absolute;
      right: 70px;
      top: 0; } }
  @media (max-width: 767px) {
    .navbar .navbar-btn {
      position: absolute;
      right: 70px;
      top: 0; } }

.header-banner {
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-banner {
      height: 400px;
      margin: 15px; } }
  @media (max-width: 767px) {
    .header-banner {
      height: 350px;
      margin: 10px; } }
  .header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
  }
  .header-banner .banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }

  .header-banner .banner-image .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
  }

  .header-banner .banner-image .banner-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  @keyframes zoomEffect {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }

  .header-banner .banner-image .banner-slide.active {
    animation: zoomEffect 8s ease-in-out forwards;
  }

  .header-banner .banner-content {
    position: relative;
    z-index: 9; }
    .header-banner .banner-content .sub-title {
      font-size: 19px;
      color: #264F8F;
      text-transform: uppercase;
      font-family: 'Barlow', sans-serif;
      font-weight: 500; }
      @media (max-width: 767px) {
        .header-banner .banner-content .sub-title {
          font-size: 14px; } }
    .header-banner .banner-content .banner-title {
      font-size: 60px; }
      .header-banner .banner-content .banner-title span {
        color: #264F8F; }
      @media (max-width: 767px) {
        .header-banner .banner-content .banner-title {
          font-size: 38px;
          max-width: 200px;
          line-height: 1.2; } }
    .header-banner .banner-content .banner-title span.wave-line {
      position: relative;
      display: inline-block;
    }
    .header-banner .banner-content .banner-title span.wave-line::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 12px;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='12' viewBox='0 0 100 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3C8.33333 3 8.33333 9 16.6667 9C25 9 25 3 33.3333 3C41.6667 3 41.6667 9 50 9C58.3333 9 58.3333 3 66.6667 3C75 3 75 9 83.3333 9C91.6667 9 91.6667 3 100 3' stroke='%23264F8F' stroke-width='2'/%3E%3C/svg%3E");
      background-size: 100px 12px;
      background-repeat: repeat-x;
      background-position: left bottom;
      animation: waveMove 4s infinite linear;
      pointer-events: none;
    }
    @keyframes waveMove {
      from {
        background-position: 0 bottom;
      }
      to {
        background-position: -100px bottom;
      }
    }
    .header-banner .banner-content p {
      font-size: 17px;
      color: #646464;
      margin-top: 15px; }
      @media (max-width: 767px) {
        .header-banner .banner-content p {
          display: none; } }
    .header-banner .banner-content .banner-contact {
      position: relative;
      font-size: 15px;
      font-weight: 600;
      font-family: 'Barlow', sans-serif;
      color: #264F8F;
      text-transform: uppercase;
      margin-left: 70px; }
      .header-banner .banner-content .banner-contact::before {
        position: absolute;
        content: '';
        width: 60px;
        height: 2px;
        background-color: #264F8F;
        left: -70px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%); }

/*===== References Logo Slider Style =====*/
.references-area {
    background-color: #fff;
    padding: 50px 0;
}

.references-area .section-title .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #264F8F;
    margin-bottom: 20px;
}

.references-slider {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.references-wrapper {
    overflow: hidden;
    position: relative;
}

.references-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.reference-item {
    flex: 0 0 calc(25% - 22.5px);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.reference-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #264F8F;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #1a3a6d;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

@media (max-width: 991px) {
    .reference-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 767px) {
    .reference-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .reference-item {
        flex: 0 0 calc(100% - 0px);
    }
}

/*===== Social Media Flap Style =====*/
.social-media-flap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 10px;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.social-media-flap .social-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 600;
  color: #264F8F;
  margin-bottom: 15px;
  text-align: center;
}

.social-media-flap .social-buttons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-flap .social-buttons li {
  margin: 10px 0;
}

.social-media-flap .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #264F8F;
  color: #fff;
  transition: all 0.3s ease;
}

.social-media-flap .social-btn:hover {
  background-color: #fff;
  color: #264F8F;
  transform: translateX(5px);
}

.social-media-flap .social-btn i {
  font-size: 16px;
}

.mobile-social-buttons {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-buttons .social-title {
  font-size: 14px;
  font-weight: 600;
  color: #264F8F;
  margin-bottom: 15px;
  text-align: center;
}

.mobile-social-buttons .social-buttons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-social-buttons .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #264F8F;
  color: #fff;
  transition: all 0.3s ease;
}

.mobile-social-buttons .social-btn:hover {
  background-color: #fff;
  color: #264F8F;
  transform: translateY(-3px);
}

.mobile-social-buttons .social-btn i {
  font-size: 16px;
}

@media (max-width: 767px) {
  .social-media-flap {
    display: none;
  }
  
  .mobile-social-buttons {
    display: block;
  }
}

/*===========================
    3.ABOUT css 
===========================*/
@media (max-width: 767px) {
  .about-area {
    padding-top: 30px;
    padding-bottom: 40px; } }

.about-image {
  position: relative; }
  .about-image::before {
    position: absolute;
    content: '';
    background-image: url(../images/about/dots.jpg);
    background-position: center center;
    background-size: 100%;
    width: 375px;
    height: 350px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; }

  .about-image .showroom-text {
    position: absolute;
    left: 0;
    top: -60px;
    transform: translateY(0);
    font-family: 'Quattrocento', serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(38, 79, 143, 0.1);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-shadow: 2px 2px 0 rgba(38, 79, 143, 0.05);
    transition: all 0.5s ease;
  }

  .about-image:hover .showroom-text {
    color: rgba(38, 79, 143, 0.15);
    letter-spacing: 12px;
    text-shadow: 3px 3px 0 rgba(38, 79, 143, 0.08);
  }

  @media (max-width: 991px) {
    .about-image .showroom-text {
        font-size: 80px;
        top: -40px;
    }
  }

  @media (max-width: 767px) {
    .about-image .showroom-text {
        font-size: 60px;
        top: -30px;
    }
  }
  @media (max-width: 767px) {
      .about-image::before {
        display: none; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about-image::before {
        display: block; } }
  .about-image .single-image {
    width: 100%; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .about-image .single-image {
        width: 100%; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .about-image .single-image {
        width: 100%; } }
    @media (max-width: 767px) {
      .about-image .single-image {
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about-image .single-image {
        width: 100%; } }
    .about-image .single-image img {
      width: 100%;
      transition: transform 0.5s ease; }
    .about-image .single-image:hover img {
      transform: scale(1.05); }
  .about-image .about-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 9; }
    @media (max-width: 767px) {
      .about-image .about-btn {
        bottom: 20px;
        right: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about-image .about-btn {
        bottom: 20px;
        right: 20px; } }
    .about-image .about-btn .main-btn {
      line-height: 58px;
      padding: 0 40px;
      border: 8px solid #fff;
      font-weight: 700;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
      .about-image .about-btn .main-btn span {
        font-size: 35px; }
        @media (max-width: 767px) {
          .about-image .about-btn .main-btn span {
            font-size: 28px; } }
      .about-image .about-btn .main-btn:hover {
        border-color: #264F8F; }
      @media (max-width: 767px) {
        .about-image .about-btn .main-btn {
          line-height: 48px;
          padding: 0 30px;
          font-size: 14px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .about-image .about-btn .main-btn {
          line-height: 48px;
          padding: 0 30px;
          font-size: 14px; } }

.about-content .about-welcome {
  font-size: 24px;
  color: #264F8F;
  text-transform: uppercase; }
  @media (max-width: 767px) {
    .about-content .about-welcome {
      font-size: 18px; } }

.about-content .about-title {
  font-size: 35px;
  text-transform: uppercase; }
  @media (max-width: 767px) {
    .about-content .about-title {
      font-size: 26px; } }

/*===========================
      4.SERVICES css 
===========================*/
@media (max-width: 767px) {
  .services-area {
    padding-top: 45px;
    padding-bottom: 60px; } }

.single-services {
  padding: 50px 30px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-services {
      padding: 30px 10px; } }
  @media (max-width: 767px) {
    .single-services {
      padding: 30px 10px; } }
  .single-services .services-icon i {
    font-size: 52px;
    color: #264F8F;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
  .single-services .services-content .services-title {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
  .single-services:hover {
    background-color: #264F8F; }
    .single-services:hover .services-icon i {
      color: #fff; }
    .single-services:hover .services-content .services-title,
    .single-services:hover .services-content p {
      color: #fff; }

/*===========================
      5.PROJECT css 
===========================*/
@media (max-width: 767px) {
  .project-area {
    padding-top: 75px;
    padding-bottom: 80px; } }

.single-project {
  position: relative; }
  .single-project .project-image {
    position: relative; }
    .single-project .project-image::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: white;
      background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 50%, #264F8F 100%);
      background: -o-linear-gradient(rgba(255, 255, 255, 0) 50%, #264F8F 100%);
      background: linear-gradient(rgba(255, 255, 255, 0) 50%, #264F8F 100%);
      opacity: 0;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s; }
  .single-project .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 5px;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0; }
    .single-project .project-content .project-title {
      font-size: 22px;
      font-weight: 600;
      font-family: 'Barlow', sans-serif;
      position: relative;
      color: #fff;
      margin-left: 60px; }
      .single-project .project-content .project-title::before {
        position: absolute;
        content: '';
        width: 50px;
        height: 1px;
        background-color: #fff;
        top: 50%;
        left: -60px; }
  .single-project:hover .project-image::before {
    opacity: 1; }
  .single-project:hover .project-content {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%); }

.project-active .slick-dots {
  text-align: center;
  margin-top: 50px; }
  .project-active .slick-dots li {
    display: inline-block;
    margin: 0 7px; }
    .project-active .slick-dots li button {
      width: 25px;
      height: 15px;
      border-radius: 50px;
      border: 0;
      background-color: rgba(38, 79, 143, 0.7);
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      font-size: 0;
      cursor: pointer; }
    .project-active .slick-dots li.slick-active button {
      width: 35px;
      background-color: #264F8F; }

/*===========================
        6.TEAM css 
===========================*/
@media (max-width: 767px) {
  .team-area {
    padding-top: 75px;
    padding-bottom: 80px; } }

.single-team .team-image img {
  width: 100%; }

.single-team .team-content {
  width: 80%;
  margin: 0 auto;
  padding: 30px 15px;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-team .team-content {
      padding: 30px 0; } }
  .single-team .team-content .team-name a {
    font-size: 18px;
    font-weight: 600;
    color: #121619;
    font-family: 'Hind', sans-serif;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
    .single-team .team-content .team-name a:hover {
      color: #264F8F; }
  .single-team .team-content .sub-title {
    font-size: 14px;
    color: #646464; }
  .single-team .team-content .social {
    margin-top: -35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
    .single-team .team-content .social li {
      display: inline-block;
      margin: 0 7px; }
      .single-team .team-content .social li a {
        font-size: 16px;
        color: #646464;
        width: 30px;
        height: 30px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background-color: #ededed;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s; }
        .single-team .team-content .social li a:hover {
          background-color: #264F8F;
          color: #fff; }

.single-team:hover .team-content {
  background-color: #fff;
  margin-top: -60px;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(38, 79, 143, 0.34);
  -moz-box-shadow: 0px 6px 16px 0px rgba(38, 79, 143, 0.34);
  box-shadow: 0px 6px 16px 0px rgba(38, 79, 143, 0.34); }
  .single-team:hover .team-content .social {
    margin-top: 25px;
    opacity: 1;
    visibility: visible; }

/*===========================
      7.TESTIMONIAL css 
===========================*/
.testimonial-area {
  position: relative; }
  @media (max-width: 767px) {
    .testimonial-area {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .testimonial-area .shape {
    position: absolute; }
    @media only screen and (min-width: 1200px) and (max-width: 1400px) {
      .testimonial-area .shape img {
        width: 325px; } }
  .testimonial-area .shape-one {
    top: 25px;
    left: 50px; }
    @media only screen and (min-width: 1200px) and (max-width: 1400px) {
      .testimonial-area .shape-one {
        left: 20px; } }
  .testimonial-area .shape-tow {
    left: 150px;
    bottom: 50px; }
    @media only screen and (min-width: 1200px) and (max-width: 1400px) {
      .testimonial-area .shape-tow {
        left: 70px; } }
  .testimonial-area .shape-three {
    right: 85px;
    bottom: 30px; }
    @media only screen and (min-width: 1200px) and (max-width: 1400px) {
      .testimonial-area .shape-three {
        right: 35px; } }
  .testimonial-area .shape img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(47%) saturate(2074%) hue-rotate(194deg) brightness(94%) contrast(87%);
  }

.testimonial-bg {
  position: relative;
  z-index: 9; }

.testimonial-active {
    background-color: #4CAF50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  @media (max-width: 767px) {
    .testimonial-active {
      padding: 30px 15px; } }

.single-testimonial .testimonial-image {
  position: relative;
  display: inline-block; }
  .single-testimonial .testimonial-image img {
    border-radius: 50%; }
  .single-testimonial .testimonial-image .quota {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block; }
    .single-testimonial .testimonial-image .quota i {
      font-size: 18px;
      color: #264F8F;
      width: 30px;
      height: 30px;
      line-height: 28px;
      text-align: center;
      background-color: #fff;
      border: 2px solid #264F8F;
      border-radius: 50%; }

.single-testimonial .testimonial-content p {
  font-size: 18px;
  color: #fff;
  font-family: 'Hind', sans-serif; }

.single-testimonial .testimonial-content .testimonial-name {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600; }

.single-testimonial .testimonial-content .sub-title {
  font-family: 'Hind', sans-serif;
  font-size: 14px;
  color: #fff; }

.testimonial-active .slick-dots {
  text-align: center;
  margin-top: 10px; }
  .testimonial-active .slick-dots li {
    display: inline-block;
    margin: 0 5px; }
    .testimonial-active .slick-dots li button {
      width: 18px;
      height: 15px;
      border-radius: 50px;
      border: 0;
      background-color: rgba(255, 255, 255, 0.5);
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      font-size: 0;
      cursor: pointer; }
    .testimonial-active .slick-dots li.slick-active button {
      background-color: #fff;
      width: 25px; }

/*===========================
       8.CONTACT css 
===========================*/
@media (max-width: 767px) {
  .contact-area {
    padding-top: 75px;
    padding-bottom: 80px; } }

.form-group {
  margin: 0; }

p.form-message.success,
p.form-message.error {
  font-size: 16px;
  color: #333;
  background: #ddd;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px; }

p.form-message.error {
  color: #f00; }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form .form-control {
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #264F8F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(38, 79, 143, 0.1);
}

.contact-form textarea.form-control {
    height: 150px;
    padding: 15px 20px;
    resize: none;
}

.contact-form .btn-primary {
    background: #264F8F;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

.contact-form .btn-primary:hover {
    background: #1a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 79, 143, 0.3);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

#formResponse {
    margin-top: 20px;
}

#formResponse .alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 0;
    border: none;
}

#formResponse .alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

#formResponse .alert-danger {
    background: #ffebee;
    color: #c62828;
}

@media (max-width: 767px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form .form-control {
        height: 50px;
        font-size: 14px;
    }
    
    .contact-form .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.list-unstyled li {
  font-size: 13px;
  margin-left: 2px;
  margin-top: 5px;
  color: #f00; }

/*===========================
         9.MAP css 
===========================*/
.map-area {
  position: relative;
  height: 600px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .map-area {
      height: 450px; } }
  @media (max-width: 767px) {
    .map-area {
      height: 450px; } }

.mapouter {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .mapouter {
      width: 100%; } }
  @media (max-width: 767px) {
    .mapouter {
      width: 100%; } }
  .mapouter .gmap_canvas iframe {
    width: 100%;
    height: 600px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .mapouter .gmap_canvas iframe {
        height: 450px; } }
    @media (max-width: 767px) {
      .mapouter .gmap_canvas iframe {
        height: 450px; } }

.map-bg {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0; }

/*===========================
       10.FOOTER css 
===========================*/
@media (max-width: 767px) {
  .footer-widget {
    padding-top: 30px;
    padding-bottom: 80px; } }

.footer-logo a img {
  width: 140px;
  transition: transform 0.3s ease;
}

.footer-logo a:hover img {
  transform: scale(1.1);
}

.footer-logo p {
  line-height: 26px;
  font-size: 16px; }

.footer-logo .footer-info li {
  margin-top: 20px; }
  .footer-logo .footer-info li .single-info {
    position: relative; }
    .footer-logo .footer-info li .single-info .info-icon {
      position: absolute;
      top: 3px;
      left: 0; }
      .footer-logo .footer-info li .single-info .info-icon i {
        font-size: 18px;
        color: #264F8F; }
    .footer-logo .footer-info li .single-info .info-content {
      padding-left: 30px; }

.footer-logo .footer-social li {
  display: inline-block;
  margin-left: 15px; }
  .footer-logo .footer-social li:first-child {
    margin-left: 0; }
  .footer-logo .footer-social li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color: #264F8F;
    box-shadow: 0 5px 15px rgba(38, 79, 143, 0.15);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .footer-logo .footer-social li a:hover {
      background-color: #264F8F;
      color: #fff; }

.f-title .title {
  font-size: 22px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; }

.footer-link ul li {
  padding-top: 5px; }
  .footer-link ul li a {
    font-size: 16px;
    color: #646464;
    font-family: 'Hind', sans-serif;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
    .footer-link ul li a:hover {
      color: #264F8F; }

.footer-newsleter p {
  line-height: 26px;
  font-size: 16px; }

.footer-newsleter .newsleter {
  position: relative; }
  .footer-newsleter .newsleter input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 5px;
    background: #264F8F;
    color: #fff;
}

.footer-newsleter .newsleter input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsleter .newsleter button {
    border: 0;
    width: 66px;
    text-align: center;
    padding: 0;
    height: 50px;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    color: #264F8F;
    font-size: 20px;
    line-height: 57px;
    cursor: pointer; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .footer-newsleter .newsleter button {
        width: 45px; } }
    .footer-newsleter .newsleter button::before {
      position: absolute;
      content: '';
      top: 50%;
      left: 0;
      width: 1px;
      height: 36px;
      background-color: #264F8F;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }

.copyright-area {
  border-top: 1px solid #eceff8;
  padding: 13px 0; }

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #264F8F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    background: #264F8F;
    transform: translateY(-5px);
}

.back-to-top i {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

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

@media (max-width: 767px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}

/* Brand Link Styling */
.brand-link {
    color: #264F8F;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.brand-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #264F8F;
    transition: width 0.3s ease;
}

.brand-link:hover {
    color: #1a3a6d;
}

.brand-link:hover:after {
    width: 100%;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Header & Navigation */
    .header-banner {
        min-height: 80vh;
    }

    .banner-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .banner-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .banner-content .sub-title {
        font-size: 19px;
        color: #264F8F;
        text-transform: uppercase;
        font-family: 'Barlow', sans-serif;
        font-weight: 500;
    }

    .banner-content .text {
        font-size: 16px;
        margin-top: 15px;
    }

    /* About Section */
    .about-content {
        margin-top: 25px;
        padding: 0 15px;
    }

    .about-content h3.about-title {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-image .single-image {
        margin-bottom: 20px;
    }

    /* References Section */
    .references-area {
        padding: 40px 0;
    }

    .references-slider {
        padding: 0 15px;
    }

    .reference-item {
        padding: 10px;
    }

    .reference-item img {
        max-width: 120px;
    }

    /* Services Section */
    .services-area {
        padding: 60px 0;
    }

    .single-services {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .services-icon i {
        font-size: 40px;
    }

    .services-content h4 {
        font-size: 20px;
        margin-top: 15px;
    }

    /* Contact Form */
    .contact-form {
        padding: 20px;
    }

    .single-form input,
    .single-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Footer */
    .footer-widget {
        padding: 50px 0;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-info li {
        margin-bottom: 15px;
    }

    .footer-link,
    .footer-newsleter {
        margin-top: 30px;
    }

    /* Navigation Improvements */
    .navbar-toggler {
        padding: 8px;
        margin-right: 15px;
    }

    .navigation-bar .navbar-btn {
        margin-left: 0;
    }

    .mobile-social-buttons {
        margin-top: 20px;
        padding: 15px 0;
        border-top: 1px solid rgba(38, 79, 143, 0.1);
    }

    .mobile-social-buttons .social-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .mobile-social-buttons .social-title {
        text-align: center;
        color: #264F8F;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .mobile-language-selector {
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(38, 79, 143, 0.1);
    }

    .mobile-language-selector .lang-options {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .mobile-language-selector .lang-option {
        color: #264F8F;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 4px;
    }

    .mobile-language-selector .lang-option.selected {
        background-color: #264F8F;
        color: white;
    }

    /* Improve Mobile Menu */
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(38, 79, 143, 0.1);
    }

    .navbar-nav .active .nav-link {
        background-color: #264F8F;
        color: white;
    }
}

/* Preserve Desktop Styles */
@media (min-width: 768px) {
    .mobile-social-buttons,
    .mobile-language-selector {
        display: none;
    }
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c234d;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 50px;
    background: #f8f9fa;
    margin-right: 15px;
    white-space: nowrap;
}

.navbar-contact:hover {
    background: #e9ecef;
    color: #2c234d;
}

.navbar-contact i {
    font-size: 12px;
    color: #2c234d;
}

.navbar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #264F8F;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3a6d;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #264F8F #f1f1f1;
}

/* Cookie Alert Styles */
.cookie-alert {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
    border-top: 3px solid #264F8F;
}

.cookie-alert.show {
    bottom: 0;
}

.cookie-alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-alert-text {
    flex: 1;
    font-size: 14px;
    color: #646464;
    line-height: 1.6;
}

.cookie-alert-text a {
    color: #264F8F;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.cookie-alert-text a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #264F8F;
    transition: width 0.3s ease;
}

.cookie-alert-text a:hover:after {
    width: 100%;
}

.cookie-alert-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #264F8F;
}

.cookie-btn.accept {
    background: #264F8F;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #1a3a6d;
    border-color: #1a3a6d;
}

.cookie-btn.settings {
    background: transparent;
    color: #264F8F;
}

.cookie-btn.settings:hover {
    background: rgba(38, 79, 143, 0.1);
}

@media (max-width: 767px) {
    .cookie-alert {
        padding: 15px;
    }

    .cookie-alert-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-alert-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Image Gallery Styles */
.gallery-section {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
}

.gallery-item {
    flex: 25%;
    max-width: 25%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 79, 143, 0);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(38, 79, 143, 0.85);
    opacity: 1;
}

.gallery-overlay-content {
    color: #fff;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    color: #ffffff;
}

@media (max-width: 991px) {
    .gallery-item {
        flex: 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .gallery-item {
        flex: 100%;
        max-width: 100%;
    }
}

.references-area .section-title .title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.references-area .section-title .title::before,
.references-area .section-title .title::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, rgba(38, 79, 143, 0.1) 0%, rgba(38, 79, 143, 0.5) 50%, rgba(38, 79, 143, 0.1) 100%);
    display: inline-block;
    transition: all 0.3s ease;
}

.references-area .section-title:hover .title::before,
.references-area .section-title:hover .title::after {
    width: 150px;
    background: linear-gradient(90deg, rgba(38, 79, 143, 0.1) 0%, rgba(38, 79, 143, 0.7) 50%, rgba(38, 79, 143, 0.1) 100%);
}

@media (max-width: 767px) {
    .references-area .section-title .title::before,
    .references-area .section-title .title::after {
        width: 50px;
    }
    
    .references-area .section-title:hover .title::before,
    .references-area .section-title:hover .title::after {
        width: 70px;
    }
}

/* Service Colors */
.service-concept {
    background-color: #ECEDDA;
    transition: all 0.3s ease;
}

.service-craft {
    background-color: #9E8A75;
    transition: all 0.3s ease;
}

.service-source {
    background-color: #3bab5a;
    transition: all 0.3s ease;
}

.service-flow {
    background-color: #88a9c3;
    transition: all 0.3s ease;
}

.service-experience {
    background-color: #FFEB5A;
    transition: all 0.3s ease;
}

.service-impact {
    background-color: #F7838D;
    transition: all 0.3s ease;
}

/* Service Hover Effects */
.service-concept:hover,
.service-craft:hover,
.service-source:hover,
.service-flow:hover,
.service-experience:hover,
.service-impact:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Service Title Colors */
.service-concept .services-title {
    color: #264F8F;
}

.service-craft .services-title {
    color: #fff;
}

.service-source .services-title {
    color: #fff;
}

.service-flow .services-title {
    color: #fff;
}

.service-experience .services-title {
    color: #264F8F;
}

.service-impact .services-title {
    color: #fff;
}

/* Service Icon Colors */
.service-concept .services-icon i {
    color: #264F8F;
}

.service-craft .services-icon i {
    color: #fff;
}

.service-source .services-icon i {
    color: #fff;
}

.service-flow .services-icon i {
    color: #fff;
}

.service-experience .services-icon i {
    color: #264F8F;
}

.service-impact .services-icon i {
    color: #fff;
}

/* Service Text Colors */
.service-concept p {
    color: #264F8F;
}

.service-craft p {
    color: #fff;
}

.service-source p {
    color: #fff;
}

.service-flow p {
    color: #fff;
}

.service-experience p {
    color: #264F8F;
}

.service-impact p {
    color: #fff;
}

/* Navbar Sustainability Link */
.navbar-nav .sustainability-link {
    color: #3bab5a !important;
    font-weight: 600;
}

.navbar-nav .sustainability-link:hover,
.navbar-nav .sustainability-link:focus {
    color: #2d8a45 !important;
}

.navbar-nav .sustainability-link i {
    color: #3bab5a;
    margin-right: 5px;
}

/* Mobile Menu Sustainability Link */
@media (max-width: 991px) {
    .navbar-nav .sustainability-link {
        color: #3bab5a !important;
        padding: 10px 20px;
    }
    
    .navbar-nav .sustainability-link i {
        color: #3bab5a;
    }
}

/* Navbar Progress Indicator */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #264F8F;
    transition: width 0.3s ease;
}

.navbar-nav .nav-item.active::after {
    width: 100%;
}

/* Mobile Menu Progress Indicator */
@media (max-width: 991px) {
    .navbar-nav .nav-item::after {
        bottom: 5px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #264F8F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.back-to-top:hover {
    background-color: #1a3a6d;
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 18px;
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}

.footer-area {
    position: relative;
    background: #f8f9fa;
    z-index: 1;
}

.footer-widget {
    position: relative;
    padding: 80px 0;
}

.footer-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: -1;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
}

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

.footer-info ul li {
    margin-bottom: 15px;
}

.single-info {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    color: #264F8F;
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social li {
    margin-right: 15px;
}

.footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #264F8F;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    background: #1a3a6b;
    transform: translateY(-3px);
}

.footer-link {
    text-align: left;
}

.f-title {
    margin-bottom: 25px;
}

.f-title .title {
    font-size: 18px;
    color: #264F8F;
    margin: 0;
}

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

.footer-link ul li {
    margin-bottom: 12px;
}

.footer-link ul li a {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link ul li a:hover {
    color: #264F8F;
    padding-left: 5px;
}

.footer-newsleter {
    text-align: left;
}

.footer-newsleter p {
    color: #666;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal-icon {
    font-size: 48px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    color: #264F8F;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-close {
    background: #264F8F;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #1a3a6b;
    transform: translateY(-2px);
}