/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Categories Section
7.  Portfolio Section
8.  Trainer Section
9.  Contact
10.  Footer Style

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

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

/* Template default CSS
/*----------------------------------------*/

html,
body {
  height: 100%;
  font-family: "Raleway";
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-family: "Raleway";
  color: #666666;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

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

.section-title h2 {
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.section-title p {
  color: #666666;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */

.primary-btn {
  display: inline-block;
  font-size: 16px;
  padding: 14px 30px;
  color: #ffffff;
  background: #ff4191;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
}

.site-btn {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
  display: inline-block;
  padding: 14px 30px 12px;
  background: #ff4191;
  border: none;
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: white;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

.spacial-controls {
  position: fixed;
  width: 111px;
  height: 91px;
  top: 0;
  right: 0;
  z-index: 999;
}

.spacial-controls .search-switch {
  display: block;
  height: 100%;
  padding-top: 30px;
  background: #323232;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  z-index: 99999;
}

.search-model-form {
  padding: 0 15px;
}

.search-model-form input {
  width: 500px;
  font-size: 40px;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  color: #999;
}

.search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*---------------------
  Header
-----------------------*/

/*---------------------
  Header
-----------------------*/

/* Default state (inner pages + scrolled homepage) */
.header-section {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  -webkit-box-shadow: 0px 5px 25px rgba(170, 170, 170, 0.1);
  box-shadow: 0px 5px 25px rgba(170, 170, 170, 0.1);
}

/* Homepage transparent state */
.header-section.transparent {
  background: transparent;
  box-shadow: none;
}

/* Homepage scrolled state */
.header-section.scrolled {
  background: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
  float: left;
  padding: 30px 0;
  margin-right: 80px;
}

.logo a {
  display: inline-block;
}

/* Nav Menu */
.nav-menu {
  float: right;
}

.nav-menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
}

.nav-menu ul li:last-child {
  margin-right: 0;
}

.nav-menu ul li:hover .dropdown {
  top: 86px;
  opacity: 1;
  visibility: visible;
}

/* Force active link color across states (place at end of CSS) */
.header-section .nav-menu > ul > li.active > a,
.header-section.transparent .nav-menu > ul > li.active > a,
.header-section.scrolled .nav-menu > ul > li.active > a {
  color: #ff4191;
}

.nav-menu ul li a {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  padding: 32px 8px 30px;
  position: relative;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
  transition: color 0.3s ease;
}

/* Default nav link color (white bg) */
.header-section .nav-menu ul li a {
  color: #111111; /* black */
}

/* Transparent header nav link color */
.header-section.transparent .nav-menu ul li a {
  color: #ffffff; /* white */
}

/* Scrolled header nav link color */
.header-section.scrolled .nav-menu ul li a {
  color: #111111; /* black */
}

/* Dropdown Menu */
.nav-menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 105px;
  background: #111111;
  width: 180px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.nav-menu ul li .dropdown li a {
  color: #ffffff;
  padding: 5px 18px;
  font-weight: 400;
  text-transform: capitalize;
}

.nav-menu ul li .dropdown li a:after {
  display: none;
}

/* Search Icon */
.top-search {
  font-size: 15px;
  height: 50px;
  width: 50px;
  color: #ffffff;
  background: #ff4191;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  float: right;
  margin: 19px 0 16px;
}

.slicknav_menu {
  display: none;
}

/*---------------------
  Header End
-----------------------*/

.hero-static .hero-background {
  background-image: url("../img/hero/hero-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-static .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.4); /* dark overlay with 40% opacity */
  z-index: 1;
}

.hero-static .hero-content {
  position: relative;
  z-index: 2; /* above overlay */
}

.hero-static .hero-content h1 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.hero-static .hero-content p {
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 32px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.hero-static .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff4191;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.7s ease-out;
}

/* Animation trigger */
.hero-static.loaded .hero-content h1,
.hero-static.loaded .hero-content p,
.hero-static.loaded .btn-primary {
  top: 0;
  opacity: 1;
}

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

.services-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.services-item img {
  width: 100%;
  height: 250px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.services-item h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

/*---------------------
  Categories Section
-----------------------*/

.right-btn {
  text-align: right;
  padding-top: 24px;
}

.categories-slider.owl-carousel .owl-item.active .cs-item .cs-text h4 {
  opacity: 1;
}

.categories-slider.owl-carousel .owl-item.active .cs-item .cs-text span {
  opacity: 1;
}

.categories-slider.owl-carousel .owl-nav button {
  font-size: 24px;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 152px;
}

.categories-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 30px;
}

.cs-item {
  text-align: center;
  width: 100%;
  background: #f5f5f5;
}

.cs-item .cs-pic {
  height: 360px;
}

.cs-item .cs-text {
  padding: 25px 0 22px;
}

.cs-item .cs-text h4 {
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cs-item .cs-text span {
  font-size: 17px;
  color: #ff4191;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------
  Portfolio
-----------------------*/

.portfolio-section .container-fluid {
  padding-left: 35px;
}

.portfolio-section.portfolio-page {
  padding-top: 0;
}

.portfolio-section .section-title {
  margin-bottom: 22px;
  text-align: center;
}

.portfolio-section .section-title h2 {
  margin-bottom: 0;
}

.filter-controls {
  margin-bottom: 43px;
  text-align: center;
}

.filter-controls ul li {
  font-size: 17px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 60px;
  position: relative;
  cursor: pointer;
}

.filter-controls ul li.active {
  color: #ff4191;
}

.filter-controls ul li:after {
  position: absolute;
  right: -33px;
  top: -1px;
  content: "|";
  color: #d7d7d7;
}

.filter-controls ul li:last-child {
  margin-right: 0;
}

.filter-controls ul li:last-child:after {
  display: none;
}

.portfolio-filter .pf-item {
  width: calc(20% - 20px);
  height: 360px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-filter .pf-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio-filter .pf-item .pf-icon {
  font-size: 36px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio-filter .pf-item:hover:after {
  opacity: 1;
}

.portfolio-filter .pf-item:hover .pf-icon {
  opacity: 1;
}

.portfolio-filter .pf-item:hover .pf-text {
  bottom: 25px;
}

.portfolio-filter .pf-item:hover .pf-text h4 {
  opacity: 1;
  top: 0;
}

.portfolio-filter .pf-item:hover .pf-text span {
  opacity: 1;
  top: 0;
}

.portfolio-filter .pf-item .pf-text {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
}

.portfolio-filter .pf-item .pf-text h4 {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
  top: 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.portfolio-filter .pf-item .pf-text span {
  font-size: 15px;
  color: #ff4191;
  position: relative;
  top: 40px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.portfolio-filter .pf-item.large-width {
  width: calc(40% - 20px);
}

.portfolio-filter .pf-item.large-height {
  height: 740px;
}

.load-more-btn {
  text-align: center;
  margin-top: 30px;
  overflow: hidden;
}

.load-more-btn.portfolio-btn a {
  background: #ff4191;
}

.load-more-btn a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  display: inline-block;
  padding: 15px 102px 13px;
  background: #000606;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
  background: #181818;
  color: white;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-left h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-left p,
.footer-center p {
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-center i,
.footer-left i {
  margin-right: 6px;
  font-size: 16px;
  color: #fff;
}

.footer-section a {
  color: #fff; /* links white */
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 8px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  font-size: 16px;
  color: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px auto;
  width: 80%;
}

.footer-right p {
  font-size: 13px;
  opacity: 0.9;
  color: #fff;
}
.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Brand Colors */
.social-icons a.facebook {
  background-color: #1877f2; /* Facebook Blue */
}

.social-icons a.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icons a.youtube {
  background-color: #ff0000; /* YouTube Red */
}

.social-icons a.google {
  background-color: #db4437; /* Google Red */
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
  padding-top: 55px;
}

.breadcrumb-option .bo-links a {
  font-size: 15px;
  color: #111111;
  margin-right: 20px;
  position: relative;
}

.breadcrumb-option .bo-links a i {
  margin-right: 5px;
}

.breadcrumb-option .bo-links a:after {
  position: absolute;
  right: -18px;
  top: 1px;
  content: "5";
  font-family: "ElegantIcons";
}

.breadcrumb-option .bo-links span {
  font-size: 15px;
  color: #888888;
}

/*--------------------------------- Other Pages Styles -----------------------------*/

/*---------------------
  About Section
-----------------------*/

.about-pic {
  height: 650px;
  position: relative;
}

.about-pic .play-btn {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background: #ff4191;
  font-size: 30px;
  color: #ffffff;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  z-index: 9;
}

.about-text {
  padding-left: 60px;
  padding-top: 50px;
  height: 650px;
}

.about-text .section-title h2 {
  line-height: 47px;
  margin-bottom: 30px;
}

.about-text .at-list .al-item {
  margin-bottom: 50px;
  overflow: hidden;
}

.about-text .at-list .al-item:last-child {
  margin-bottom: 0;
}

.about-text .at-list .al-item .al-pic {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background: #ffffff;
  float: left;
  margin-right: 30px;
}

.about-text .at-list .al-item .al-text {
  overflow: hidden;
}

.about-text .at-list .al-item .al-text h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.about-text .at-list .al-item .al-text p {
  color: #666666;
  margin-bottom: 0;
}

/*---------------------
  Team Section
-----------------------*/

.team-section {
  padding-bottom: 70px;
  background-color: #f9f9f9;
}

.team-item {
  background: #f5f5f5;
  text-align: center;
  margin-bottom: 30px;
}

.team-item img {
  min-width: 100%;
}

.team-item .ti-text {
  padding: 25px 0;
}

.team-item .ti-text h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-item .ti-text span {
  display: block;
  font-size: 15px;
  color: #ff4191;
  margin-bottom: 20px;
}

.team-item .ti-text .ti-social a {
  color: #666666;
  font-size: 15px;
  display: inline-block;
  margin-right: 20px;
}

.team-item .ti-text .ti-social a:last-child {
  margin-right: 0;
}

/*---------------------
  Cta Section
-----------------------*/

.cta-section {
  padding-top: 140px;
  padding-bottom: 150px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-text {
  text-align: center;
}

.cta-text h2 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 30px;
}

/*---------------------
  Testimonial Section
-----------------------*/

.testimonial-section {
  padding-bottom: 70px;
}

.testimonial-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-item {
  border-top: 5px solid #e1e1e1;
  padding-top: 30px;
  position: relative;
  margin-bottom: 30px;
}

.testimonial-item:before {
  position: absolute;
  left: 0;
  top: -12px;
  background-image: url(../img/testimonial/quote.png);
  background-repeat: no-repeat;
  content: "";
  height: 26px;
  width: 26px;
  background-color: #ffffff;
}

.testimonial-item .ti-author {
  overflow: hidden;
  margin-bottom: 18px;
}

.testimonial-item .ti-author .ta-pic {
  margin-right: 25px;
  float: left;
}

.testimonial-item .ti-author .ta-pic img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.testimonial-item .ti-author .ta-text {
  overflow: hidden;
  padding-top: 24px;
}

.testimonial-item .ti-author .ta-text h5 {
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.testimonial-item .ti-author .ta-text span {
  font-size: 15px;
  color: #888888;
}

.testimonial-item p {
  color: #444444;
  margin-bottom: 0;
}

/*---------------------
  Services Option
-----------------------*/

.services-option {
  padding-bottom: 50px;
}

.so-item {
  margin-bottom: 42px;
}

.so-item .so-title {
  overflow: hidden;
  margin-bottom: 12px;
}

.so-item .so-title .so-number {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #ff4191;
  float: left;
  margin-right: 20px;
}

.so-item .so-title h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  overflow: hidden;
  line-height: 36px;
}

.so-item p {
  color: #666666;
  margin-bottom: 0;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section {
  padding-bottom: 35px;
  padding-top: 0;
}

.section-title.pricing-title {
  margin-bottom: 110px;
}

.pricing-item {
  position: relative;
  background: #ffffff;
  z-index: 1;
  text-align: center;
  padding-bottom: 20px;
  -webkit-box-shadow: 0px 0px 25px rgba(206, 206, 206, 0.5);
  box-shadow: 0px 0px 25px rgba(206, 206, 206, 0.5);
  margin-bottom: 110px;
}

.pricing-item:after {
  position: absolute;
  left: 50%;
  top: -73px;
  height: 73px;
  width: 150px;
  background: #ffffff;
  content: "";
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
  z-index: -1;
  -webkit-transform: translateX(-75px);
  -ms-transform: translateX(-75px);
  transform: translateX(-75px);
  -webkit-box-shadow: 0px -8px 25px -8px rgba(206, 206, 206, 0.5);
  box-shadow: 0px -8px 25px -8px rgba(206, 206, 206, 0.5);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.pricing-item:hover:after {
  background: #ff4191;
}

.pricing-item:hover .pi-price h2 {
  color: #ffffff;
}

.pricing-item:hover .pi-price span {
  color: #ffffff;
}

.pricing-item:hover .pi-title {
  background: #ff4191;
}

.pricing-item:hover .pi-title h3 {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

.pricing-item:hover .pi-text .primary-btn {
  background: #ff4191;
  color: #ffffff;
}

.pricing-item .pi-price {
  position: absolute;
  top: -32px;
  width: 100%;
  left: 0;
}

.pricing-item .pi-price h2 {
  color: #ff4191;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.pricing-item .pi-price span {
  font-size: 15px;
  color: #111111;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.pricing-item .pi-title {
  padding-top: 65px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.pricing-item .pi-title h3 {
  color: #111111;
  font-weight: 700;
  padding-bottom: 32px;
  text-transform: capitalize;
  border-bottom: 1px solid #ebebeb;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.pricing-item .pi-text {
  padding-left: 20px;
  padding-right: 20px;
}

.pricing-item .pi-text ul {
  margin: 25px 0;
}

.pricing-item .pi-text ul li {
  font-size: 15px;
  color: #666666;
  line-height: 42px;
  list-style: none;
}

.pricing-item .pi-text .primary-btn {
  font-size: 15px;
  color: #111111;
  background: #ebebeb;
  padding: 14px 0;
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------
  Portfolio Hero
-----------------------*/

.portfolio-hero-section {
  height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.ph-text {
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  padding: 60px 75px 65px;
  text-align: center;
}

.ph-text h2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.ph-text ul li {
  list-style: none;
  display: inline-block;
  color: #ff4191;
  font-size: 15px;
  margin-right: 28px;
  position: relative;
}

.ph-text ul li:after {
  position: absolute;
  right: -20px;
  top: -1px;
  color: #e1e1e1;
  opacity: 0.5;
  content: "|";
}

.ph-text ul li:last-child {
  margin-right: 0;
}

.ph-text ul li:last-child:after {
  display: none;
}

/*---------------------
  Portfolio Details
-----------------------*/

.portfolio-details-section {
  padding-top: 70px;
  padding-bottom: 40px;
}

.pd-text {
  margin-bottom: 70px;
}

.pd-text p {
  font-size: 17px;
  line-height: 30px;
}

.pd-text p:first-child {
  margin-bottom: 30px;
}

.portfolio-pics {
  padding-left: 20px;
  margin-bottom: 50px;
}

.portfolio-details-pic .pdp-item {
  width: calc(20% - 20px);
  float: left;
  height: 360px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.portfolio-details-pic .pdp-item.large-width {
  width: calc(40% - 20px);
}

.portfolio-details-pic .pdp-item.large-height {
  height: 740px;
}

.pd-more-text h2 {
  color: #111111;
  font-weight: 700;
  margin-bottom: 30px;
}

.pd-more-text p {
  font-size: 17px;
  line-height: 30px;
}

/*---------------------
  Recent Photography
-----------------------*/

.recent-photography-section {
  padding-top: 0;
}

.recent-photography-section .section-title {
  padding-top: 50px;
  border-top: 1px solid #e1e1e1;
}

.rp-item {
  text-align: center;
  width: 100%;
  background: #f5f5f5;
  margin-bottom: 30px;
}

.rp-item img {
  min-width: 100%;
}

.rp-item .rp-text {
  padding: 26px 0 25px;
}

.rp-item .rp-text h5 {
  color: #111111;
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.rp-item .rp-text span {
  font-size: 15px;
  font-weight: 600;
  color: #ff4191;
  display: block;
}

/*---------------------
  Blog
-----------------------*/

.blog-section {
  padding-top: 0;
}

.blog-item {
  margin-bottom: 50px;
  overflow: hidden;
}

.blog-item .bi-pic {
  float: left;
  margin-right: 30px;
}

.blog-item .bi-text {
  overflow: hidden;
}

.blog-item .bi-text .label {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  background: #ff4191;
  padding: 2px 12px;
  text-transform: capitalize;
}

.blog-item .bi-text h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.blog-item .bi-text h5 a {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  line-height: 27px;
  text-transform: capitalize;
}

.blog-item .bi-text ul {
  margin-bottom: 14px;
}

.blog-item .bi-text ul li {
  font-size: 13px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 24px;
  position: relative;
}

.blog-item .bi-text ul li:after {
  position: absolute;
  right: -17px;
  top: -1px;
  content: "|";
}

.blog-item .bi-text ul li:last-child {
  margin-right: 0;
}

.blog-item .bi-text ul li:last-child:after {
  display: none;
}

.blog-item .bi-text ul li span {
  color: #111111;
}

.blog-item .bi-text p {
  color: #444444;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.blog-pagination a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: #f2f2f2;
  color: #111111;
  padding: 12px 22px;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-pagination a:hover {
  color: #ffffff;
  background: #111111;
}

.blog-pagination a:last-child {
  margin-right: 0;
}

.blog-sidebar .bs-item.s-mb {
  margin-bottom: 55px;
}

.blog-sidebar .bs-item h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 35px;
}

.blog-sidebar .bs-item h5:after {
  position: absolute;
  right: 0;
  top: 10px;
  height: 3px;
  width: 95px;
  background: #e1e1e1;
  content: "";
}

.blog-sidebar .bs-item .bi-feature-post .fp-item {
  overflow: hidden;
  margin-bottom: 30px;
  display: block;
}

.blog-sidebar .bs-item .bi-feature-post .fp-item .fp-pic {
  float: left;
  margin-right: 20px;
}

.blog-sidebar .bs-item .bi-feature-post .fp-item .fp-text {
  overflow: hidden;
}

.blog-sidebar .bs-item .bi-feature-post .fp-item .fp-text h6 {
  font-size: 15px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 20px;
}

.blog-sidebar .bs-item .bi-feature-post .fp-item .fp-text span {
  font-size: 13px;
  color: #888888;
}

.blog-sidebar .bs-item p {
  color: #444444;
  font-weight: 500;
}

.blog-sidebar .bs-item .bi-subscribe form input {
  font-size: 13px;
  color: #444444;
  height: 46px;
  width: 100%;
  border: 1px solid #d7d7d7;
  padding-left: 15px;
  background: transparent;
  margin-bottom: 20px;
}

.blog-sidebar .bs-item .bi-subscribe form input::-webkit-input-placeholder {
  color: #444444;
}

.blog-sidebar .bs-item .bi-subscribe form input::-moz-placeholder {
  color: #444444;
}

.blog-sidebar .bs-item .bi-subscribe form input:-ms-input-placeholder {
  color: #444444;
}

.blog-sidebar .bs-item .bi-subscribe form input::-ms-input-placeholder {
  color: #444444;
}

.blog-sidebar .bs-item .bi-subscribe form input::placeholder {
  color: #444444;
}

.blog-sidebar .bs-item .bi-subscribe form .site-btn {
  width: 100%;
}

.blog-sidebar .bs-item .bi-insta {
  margin-right: -10px;
  overflow: hidden;
}

.blog-sidebar .bs-item .bi-insta img {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-hero {
  height: 960px;
}

.blog-details-section {
  padding-top: 0;
  padding-bottom: 60px;
}

.blog-details-text {
  background: #ffffff;
  padding-top: 60px;
  padding-left: 55px;
  padding-right: 55px;
  margin-top: -240px;
}

.blog-details-text .bd-title {
  margin-bottom: 60px;
}

.blog-details-text .bd-title .bt-bread {
  margin-bottom: 12px;
}

.blog-details-text .bd-title .bt-bread a {
  font-size: 15px;
  color: #111111;
  margin-right: 20px;
  position: relative;
}

.blog-details-text .bd-title .bt-bread a i {
  margin-right: 5px;
}

.blog-details-text .bd-title .bt-bread a:after {
  position: absolute;
  right: -18px;
  top: 1px;
  content: "5";
  font-family: "ElegantIcons";
}

.blog-details-text .bd-title .bt-bread span {
  font-size: 15px;
  color: #888888;
}

.blog-details-text .bd-title h2 {
  font-size: 42px;
  color: #111111;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 18px;
}

.blog-details-text .bd-title ul li {
  font-size: 13px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 24px;
  position: relative;
}

.blog-details-text .bd-title ul li:after {
  position: absolute;
  right: -17px;
  top: -1px;
  content: "|";
}

.blog-details-text .bd-title ul li:last-child {
  margin-right: 0;
}

.blog-details-text .bd-title ul li:last-child:after {
  display: none;
}

.blog-details-text .bd-title ul li span {
  color: #111111;
}

.blog-details-text .bd-top-text {
  margin-bottom: 50px;
}

.blog-details-text .bd-top-text p {
  font-size: 17px;
  color: #444444;
  line-height: 30px;
}

.blog-details-text .bd-quote {
  border-top: 10px solid #f2f2f2;
  position: relative;
  margin-bottom: 35px;
}

.blog-details-text .bd-quote:after {
  position: absolute;
  left: 0;
  top: -20px;
  background-image: url(../img/blog/details/quote.png);
  height: 22px;
  width: 45px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}

.blog-details-text .bd-quote p {
  font-size: 20px;
  color: #111111;
  line-height: 35px;
  font-weight: 600;
  font-style: italic;
  padding-top: 24px;
}

.blog-details-text .bd-desc {
  margin-bottom: 40px;
}

.blog-details-text .bd-desc p {
  font-size: 17px;
  color: #444444;
  line-height: 30px;
}

.blog-details-text .bd-pics {
  margin-right: -10px;
  overflow: hidden;
  margin-bottom: 34px;
}

.blog-details-text .bd-pics img {
  width: calc(33.33% - 10px);
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-details-text .bd-last-desc {
  margin-bottom: 40px;
}

.blog-details-text .bd-last-desc p {
  font-size: 17px;
  color: #444444;
  line-height: 30px;
}

.blog-details-text .bd-tag-share {
  overflow: hidden;
  padding-top: 35px;
  border-top: 1px solid #ebebeb;
  margin-bottom: 50px;
}

.blog-details-text .bd-tag-share .tags {
  float: left;
}

.blog-details-text .bd-tag-share .tags a {
  font-size: 13px;
  display: inline-block;
  color: #444444;
  text-transform: capitalize;
  padding: 8px 14px;
  background: #ebebeb;
  margin-right: 9px;
}

.blog-details-text .bd-tag-share .tags a:last-child {
  margin-right: 0;
}

.blog-details-text .bd-tag-share .share {
  float: right;
}

.blog-details-text .bd-tag-share .share span {
  display: inline-block;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  color: #111111;
  margin-right: 20px;
}

.blog-details-text .bd-tag-share .share a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  margin-left: 6px;
}

.blog-details-text .bd-tag-share .share a.facebook {
  background: #3263af;
}

.blog-details-text .bd-tag-share .share a.twitter {
  background: #40c4ff;
}

.blog-details-text .bd-tag-share .share a.youtube {
  background: #ff0000;
}

.blog-details-text .bd-tag-share .share a.instagram {
  background: -o-linear-gradient(45deg, #af00e1, #ff9e35);
  background: linear-gradient(45deg, #af00e1, #ff9e35);
}

.blog-details-text .bd-related-post {
  margin-bottom: 60px;
}

.blog-details-text .bd-related-post .post-item {
  display: block;
  overflow: hidden;
}

.blog-details-text .bd-related-post .post-item.prev-item .pi-pic {
  float: left;
  margin-right: 30px;
}

.blog-details-text .bd-related-post .post-item.prev-item .pi-text {
  overflow: hidden;
}

.blog-details-text .bd-related-post .post-item.next-item {
  text-align: right;
}

.blog-details-text .bd-related-post .post-item.next-item .pi-pic {
  float: right;
  margin-left: 30px;
}

.blog-details-text .bd-related-post .post-item.next-item .pi-text {
  overflow: hidden;
}

.blog-details-text .bd-related-post .post-item h6 {
  font-size: 15px;
  color: #111111;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 25px;
}

.blog-details-text .bd-related-post .post-item h6 span {
  font-size: 22px;
  position: relative;
  top: 3px;
}

.blog-details-text .bd-related-post .post-item .pi-text .label {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  background: #ff4191;
  padding: 2px 12px;
  text-transform: capitalize;
}

.blog-details-text .bd-related-post .post-item .pi-text h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.blog-details-text .bd-author {
  background: #f5f5f5;
  padding: 50px;
  margin-bottom: 60px;
}

.blog-details-text .bd-author .avatar-pic {
  float: left;
  margin-right: 30px;
}

.blog-details-text .bd-author .avatar-pic img {
  height: 130px;
  width: 130px;
  border-radius: 50%;
}

.blog-details-text .bd-author .avatar-text {
  overflow: hidden;
}

.blog-details-text .bd-author .avatar-text h4 {
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.blog-details-text .bd-author .avatar-text p {
  color: #444444;
  font-size: 17px;
  line-height: 30px;
}

.blog-details-text .bd-author .avatar-text .at-social a {
  font-size: 14px;
  display: inline-block;
  color: #444444;
  margin-right: 15px;
}

.blog-details-text .bd-author .avatar-text .at-social a:last-child {
  margin-right: 0;
}

.blog-details-text .bd-comment-form h4 {
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.blog-details-text .bd-comment-form .comment-item {
  margin-bottom: 35px;
}

.blog-details-text .bd-comment-form .comment-item .ci-pic {
  float: left;
  margin-right: 20px;
}

.blog-details-text .bd-comment-form .comment-item .ci-pic img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.blog-details-text .bd-comment-form .comment-item .ci-text {
  overflow: hidden;
}

.blog-details-text .bd-comment-form .comment-item .ci-text h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: 8px;
}

.blog-details-text .bd-comment-form .comment-item .ci-text p {
  color: #444444;
  margin-bottom: 10px;
}

.blog-details-text .bd-comment-form .comment-item .ci-text ul li {
  list-style: none;
  display: inline-block;
  font-size: 12px;
  color: #444444;
  margin-right: 25px;
}

.blog-details-text .bd-comment-form .comment-item .ci-text ul li:last-child {
  margin-right: 0;
}

.blog-details-text .bd-comment-form .comment-item .ci-text ul li i {
  font-size: 14px;
  color: #ff4191;
  margin-right: 5px;
}

.blog-details-text .bd-comment-form .leave-form {
  padding: 35px 40px 40px 40px;
  border: 1px solid #e1e1e1;
}

.blog-details-text .bd-comment-form .leave-form form input {
  height: 50px;
  width: 100%;
  padding-left: 20px;
  font-size: 14px;
  color: #444444;
  background: #f2f2f2;
  margin-bottom: 20px;
  border: none;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  input::-webkit-input-placeholder {
  color: #444444;
}

.blog-details-text .bd-comment-form .leave-form form input::-moz-placeholder {
  color: #444444;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  input:-ms-input-placeholder {
  color: #444444;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  input::-ms-input-placeholder {
  color: #444444;
}

.blog-details-text .bd-comment-form .leave-form form input::placeholder {
  color: #444444;
}

.blog-details-text .bd-comment-form .leave-form form textarea {
  width: 100%;
  padding-left: 20px;
  padding-top: 12px;
  height: 100px;
  font-size: 14px;
  color: #444444;
  background: #f2f2f2;
  resize: none;
  border: none;
  margin-bottom: 14px;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  textarea::-webkit-input-placeholder {
  color: #444444;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  textarea::-moz-placeholder {
  color: #444444;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  textarea:-ms-input-placeholder {
  color: #444444;
}

.blog-details-text
  .bd-comment-form
  .leave-form
  form
  textarea::-ms-input-placeholder {
  color: #444444;
}

.blog-details-text .bd-comment-form .leave-form form textarea::placeholder {
  color: #444444;
}

/*---------------------
  Gallery
-----------------------*/

.gallery-section {
  padding-top: 40px;
}

.gallery-section .container-fluid {
  padding-left: 35px;
}

.gallery-filter .gf-item {
  width: calc(20% - 20px);
  height: 360px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-filter .gf-item.small-height {
  height: 240px;
}

.gallery-filter .gf-item.medium-small-height {
  height: 410px;
}

.gallery-filter .gf-item.large-small-height {
  height: 440px;
}

.gallery-filter .gf-item.large-height {
  height: 540px;
}

.gallery-filter .gf-item.medium-large-height {
  height: 510px;
}

.gallery-filter .gf-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-filter .gf-item .gf-icon {
  font-size: 36px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-filter .gf-item:hover:after {
  opacity: 1;
}

.gallery-filter .gf-item:hover .gf-icon {
  opacity: 1;
}

/*---------------------
  Contact
-----------------------*/

/* Contact Section Styling */

/* Contact Section Styling */
.map {
  height: 435px; /* Match iframe height */
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  padding: 60px 0;
  background: #f8f8f8; /* Light background for contrast */
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* Ensure mobile-friendly wrapping */
}

.contact-info {
  flex: 1 1 45%; /* Flexible width for left side */
  max-width: 500px; /* Prevent overly wide content */
}

.contact-form {
  flex: 1 1 50%; /* Flexible width for right side */
  padding: 20px;
  border-radius: 4px;
}

.contact-text h3,
.contact-form h3 {
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
  font-size: 28px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  text-align: center;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ct-item {
  display: flex;
  align-items: center; /* Center-align icon and text */
  gap: 15px;
}

.ct-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #ff4191; /* Brand color */
  border-radius: 50%;
  font-size: 22px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-text {
  text-align: left;
}

.ct-text h5 {
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
  font-size: 18px;
  color: #111111;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.ct-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-text ul li {
  position: relative;
  margin-bottom: 5px;
}

.ct-text ul li::after {
  content: "|";
  position: absolute;
  right: -15px;
  top: 0;
}

.ct-text ul li:last-child::after {
  display: none;
}

/* Contact Form Styling */
.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-family: "Raleway";
  font-size: 14px;
  color: #444444;
  background: #ffffff; /* Ensure consistent background */
  transition: border-color 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #ff4191; /* Highlight on focus */
  outline: none;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #999999; /* Lighter placeholder for better UX */
}

.contact-form form textarea {
  height: 120px;
  resize: vertical;
}
/* Align heading and paragraph with contact items */

/* Optional: add spacing below heading */
.contact-text h3 {
  margin-bottom: 20px;
}

/* Ensure contact items stack nicely */

/* Make icons and text aligned vertically */
.ct-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 45%;
  padding: 30px;
  background: #fff;
}

.contact-form {
  flex: 1 1 45%;
  padding: 40px;
  background: #fff;
}

.contact-text h3,
.contact-form h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-items .ct-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.ct-icon {
  width: 60px;
  height: 60px;
  background: #ff4191;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* Responsive fix */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-text h3,
  .contact-text p {
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .map {
    height: 300px; /* Smaller map on mobile */
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .ct-item {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
  }
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1430px) {
  .container {
    max-width: 1400px !important;
  }
  .blog-details-section .container {
    max-width: 1170px !important;
  }
  .logo {
    margin-right: 150px;
  }
  .about-text {
    padding-left: 100px;
    padding-right: 110px;
  }
  .header-section {
    padding-left: 85px;
    padding-right: 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hs-slider.owl-carousel .owl-nav button {
    left: 50px;
  }
  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 50px;
  }
  .logo {
    margin-right: 20px;
  }
  .nav-menu ul li {
    margin-right: 5px;
  }
  .about-section .col-lg-6 {
    max-width: 100% !important;
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
  }
  .about-pic .play-btn {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50px, -50px);
    -ms-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
  .about-text {
    padding-left: 30px;
    padding-bottom: 70px;
    height: auto;
  }
  .blog-sidebar .bs-item h5:after {
    width: 45px;
  }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hs-slider.owl-carousel .owl-nav button {
    left: 10px;
  }
  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
  .about-pic .play-btn {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50px, -50px);
    -ms-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
  .about-text {
    padding-left: 30px;
    padding-bottom: 70px;
    height: auto;
  }
  .blog-sidebar {
    padding-top: 40px;
  }
  .blog-details-text .bd-tag-share .tags {
    float: none;
    margin-bottom: 20px;
  }
  .blog-details-text .bd-tag-share .share {
    float: none;
  }
  .post-item.prev-item {
    margin-bottom: 30px;
  }
  .nav-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    background: transparent;
  }
  .slicknav_menu .slicknav_menutxt {
    display: none;
  }
  .slicknav_btn {
    margin: 0;
    background-color: transparent;
    padding: 0;
    margin-top: 30px;
  }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #111;
    width: 20px;
    height: 3px;
  }
  .slicknav_nav {
    background: #111;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 8px 30px;
    margin: 0;
  }
  .header-section .container-fluid {
    position: relative;
  }
  .top-search {
    float: none;
    position: absolute;
    right: 50px;
  }
  .logo {
    margin-right: 0;
  }
  .portfolio-filter .pf-item {
    width: calc(33.33% - 20px);
  }
  .portfolio-filter .pf-item.large-width {
    width: calc(33.33% - 20px);
  }
  .gallery-filter .gf-item {
    width: calc(33.33% - 20px);
  }
  .portfolio-details-pic .pdp-item {
    width: calc(33.33% - 20px);
  }
  .portfolio-details-pic .pdp-item.large-width {
    width: calc(33.33% - 20px);
  }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
  .about-pic .play-btn {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50px, -50px);
    -ms-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
  .about-text {
    padding-left: 30px;
    padding-bottom: 70px;
    height: auto;
  }
  .blog-sidebar {
    padding-top: 40px;
  }
  .blog-details-text .bd-tag-share .tags {
    float: none;
    margin-bottom: 20px;
  }
  .blog-details-text .bd-tag-share .share {
    float: none;
  }
  .post-item.prev-item {
    margin-bottom: 30px;
  }
  .hs-slider.owl-carousel .owl-nav button {
    left: 0;
  }
  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
  .right-btn {
    text-align: left;
    padding-top: 0;
    margin-bottom: 45px;
  }
  .filter-controls ul li {
    margin-right: 10px;
  }
  .filter-controls ul li:after {
    right: -12px;
  }
  .blog-item .bi-pic {
    float: none;
    margin-right: 0;
  }
  .blog-item .bi-text {
    overflow: visible;
    padding-top: 30px;
  }
  .blog-details-text .bd-tag-share .tags a {
    margin-bottom: 15px;
  }
  .blog-details-text .bd-author .avatar-pic {
    float: none;
    margin-right: 0;
  }
  .blog-details-text .bd-author .avatar-text {
    overflow: visible;
    padding-top: 30px;
  }
  .nav-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    background: transparent;
  }
  .slicknav_menu .slicknav_menutxt {
    display: none;
  }
  .slicknav_btn {
    margin: 0;
    background-color: transparent;
    padding: 0;
    margin-top: 30px;
  }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #111;
    width: 20px;
    height: 3px;
  }
  .slicknav_nav {
    background: #111;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 8px 30px;
    margin: 0;
  }
  .header-section .container-fluid {
    position: relative;
  }
  .top-search {
    float: none;
    position: absolute;
    right: 50px;
  }
  .logo {
    margin-right: 0;
  }
  .hs-item {
    height: auto;
    padding: 150px 0 200px;
  }
  .portfolio-hero-section {
    height: auto;
    padding: 150px 0;
  }
  .portfolio-filter .pf-item {
    width: calc(50% - 20px);
  }
  .portfolio-filter .pf-item.large-width {
    width: calc(50% - 20px);
  }
  .gallery-filter .gf-item {
    width: calc(50% - 20px);
  }
  .portfolio-details-pic .pdp-item {
    width: calc(50% - 20px);
  }
  .portfolio-details-pic .pdp-item.large-width {
    width: calc(50% - 20px);
  }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
  .load-more-btn a {
    padding: 15px 70px 13px;
  }
  .ph-text {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 60px 20px 65px;
    text-align: center;
  }
  .blog-pagination a {
    margin-right: 5px;
  }
  .blog-details-text {
    padding-left: 15px;
    padding-right: 15px;
  }
  .blog-details-text .bd-tag-share .share a {
    margin-bottom: 10px;
  }
  .blog-details-text .bd-related-post .post-item.prev-item .pi-pic {
    float: none;
    margin-right: 0;
  }
  .blog-details-text .bd-related-post .post-item.prev-item .pi-text {
    overflow: visible;
    padding-top: 15px;
  }
  .blog-details-text .bd-related-post .post-item.next-item .pi-pic {
    float: none;
    margin-right: 0;
  }
  .blog-details-text .bd-related-post .post-item.next-item .pi-text {
    overflow: visible;
    padding-top: 15px;
  }
  .blog-details-text .bd-author {
    padding: 30px;
  }
  .blog-details-text .bd-comment-form .leave-form {
    padding: 35px 20px 40px 20px;
  }
  .slicknav_menu {
    display: block;
    background: transparent;
  }
  .slicknav_menu .slicknav_menutxt {
    display: none;
  }
  .slicknav_btn {
    margin: 0;
    background-color: transparent;
    padding: 0;
    margin-top: 30px;
  }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #111;
    width: 20px;
    height: 3px;
  }
  .slicknav_nav {
    background: #111;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: #ff4191;
    color: #fff;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 8px 30px;
    margin: 0;
  }
  .header-section .container-fluid {
    position: relative;
  }
  .top-search {
    float: none;
    position: absolute;
    right: 50px;
  }
  .logo {
    margin-right: 0;
  }
  .hs-item .hs-text h2 {
    font-size: 38px;
  }
  .portfolio-section .container-fluid,
  .gallery-section .container-fluid {
    padding: 0 30px;
  }
  .portfolio-filter .pf-item {
    width: 100%;
    margin-right: 0;
  }
  .portfolio-filter .pf-item.large-width {
    width: 100%;
  }
  .gallery-filter .gf-item {
    width: 100%;
  }
  .portfolio-details-pic .pdp-item {
    width: 100%;
  }
  .portfolio-details-pic .pdp-item.large-width {
    width: 100%;
  }
  .about-text .at-list .al-item .al-pic,
  .blog-details-text .bd-comment-form .comment-item .ci-pic {
    float: none;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .blog-hero {
    height: 450px;
  }
  .blog-details-text .bd-pics img {
    width: 100%;
    float: left;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .blog-details-text .bd-title h2 {
    font-size: 36px;
    line-height: normal;
  }
}

/* About home */
.home-about-section {
  padding: 60px 0;
  color: #1e2329;
}

@media (min-width: 768px) {
  .home-about-section {
    padding: 100px 0;
  }
}

.home-about-text {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Image Responsiveness */
.home-about-img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* About home */

/* Video section */
.videos-section {
  background-color: #f9f9f9;
}
/* Make video wrappers have same height */
.video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ensures equal height for all videos */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.video-item .play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff4191;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
}

/* Video section */

/* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 140px; /* top button */
  right: 20px;
  background-color: #ff4191;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 80px; /* 40px below scroll-to-top */
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 45px;
  height: 45px;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn {
  position: fixed;
  bottom: 20px; /* 40px below WhatsApp button */
  right: 20px;
  background-color: #28a745;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

/* For Firefox */
* {
  scrollbar-width: thin; /* makes the scrollbar thinner */
  scrollbar-color: #000000 #f0f0f0; /* thumb color | track color */
}

/* For Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 6px; /* width of the vertical scrollbar */
  height: 6px; /* height of the horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: #f0f0f0; /* scrollbar track color */
}

*::-webkit-scrollbar-thumb {
  background-color: #ff4191; /* scrollbar thumb color */
  border-radius: 10px; /* rounded corners */
  border: 2px solid #f0f0f0; /* optional border for spacing */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #ff6600; /* hover color */
}

/*home page Gallery Section */
.homepage-gallery-section {
  padding: 60px 0;
  background-color: #fff;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}

.ezy__numbers12 {
  /* Theme colors */
  --bs-body-color: #ffffff;
  --bs-body-bg: #000000;
  margin-top: 70px;

  /* Background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white !important;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* Darker, richer overlay */
.ezy__numbers12-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #f9f9f9;
}

/* Numbers styling */
.ezy__numbers12-heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: black !important;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .ezy__numbers12-heading {
    font-size: 60px;
  }
}

/* Sub-heading styling */
.ezy__numbers12-sub-heading {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  opacity: 0.85;
  color: black;
}

.ezy__numbers12 h2 {
  color: black;
}
.ezy__numbers12 p {
  color: black;
}

.consultation-section {
  padding: 70px 0;
  border-top: none;
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.05);
}

.consultation-section .section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #333;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif", serif;
}

.consultation-section p.lead {
  font-size: 18px;
  color: #666;
  margin: 0 auto 30px;
}

.consultation-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.consultation-section ul li:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7b7b;
  font-size: 16px;
  background: #ffeaea;
  border-radius: 50%;
  padding: 4px;
}
/*---------------------
  About Banner
-----------------------*/
.aboutbanner {
  width: 100%;
  height: 500px;
  background: url("/img/about/about-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aboutbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
  z-index: 1;
}

.aboutbanner * {
  position: relative;
  z-index: 2; /* content above overlay */
}

.about-banner-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.about-banner-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.about-banner-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #e0e0e0;
}

/*---------------------
  Image Gallery Banner
-----------------------*/
.imagegallerybanner {
  width: 100%;
  height: 500px;
  background: url("/img/banner/image-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure overlay stays inside */
}

.imagegallerybanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity (0.3 - 0.7) */
  z-index: 1;
}

.imagegallerybanner * {
  position: relative;
  z-index: 2; /* keep text/buttons above overlay */
}

.banner-content {
  text-align: center;
  color: #ffffff;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.banner-subtitle {
  font-size: 24px;
  color: #ffffff;
  font-family: "Poppins, Helvetica, Arial, Lucida, sans-serif;";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #f7bc35 !important;
  letter-spacing: 15px;
  line-height: 2em;
  text-shadow: 0.08em 0.08em 0.08em rgba(0, 0, 0, 0.4);
}

/*---------------------
  Service Banner
-----------------------*/
.servicebanner {
  width: 100%;
  height: 500px;
  background: url("/img/services/services-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.servicebanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for text visibility */
  z-index: 1;
}

.servicebanner * {
  position: relative;
  z-index: 2; /* keep content above overlay */
}

.service-banner-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.service-banner-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-banner-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #e0e0e0;
}
/*---------------------
   Video Gallery Banner
-----------------------*/
.videogallerybanner {
  width: 100%;
  height: 500px;
  background: url("/img/banner/pexels-asadphoto-1024993.jpg") no-repeat center
    center; /* Use a cinematic video-related hero image */
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.videogallerybanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay for better text readability */
  z-index: 1;
}

.videogallerybanner * {
  position: relative;
  z-index: 2; /* Ensure text stays above overlay */
}

.videogallerybanner .banner-content {
  text-align: center;
  color: #ffffff;
}

.videogallerybanner .banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/*---------------------
  Full-Width Image Section
-----------------------*/
.full-width-image-gallery {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 30px; /* space between images */
  margin: 30px 0;
}

.full-width-image-gallery .image-content {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 0 30px;
}

.full-width-image-gallery .full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.full-width-image-gallery .image-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* overlay */
  z-index: 2;
}

.full-width-image-gallery .image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 3;
  padding: 20px;
}

.full-width-image-gallery .image-title {
  font-family: "Quantico";
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.full-width-image-gallery .image-subtitle {
  font-family: "Open Sans";
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

/* View Pictures Button */
.view-pictures-btn {
  text-align: center;
  margin-top: 30px;
  overflow: hidden;
}

.view-pictures-btn.portfolio-btn a {
  background: white;
}

.view-pictures-btn a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  display: inline-block;
  padding: 15px 52px 13px;
  outline: auto;
  font-family: "Cormorant Garamond, Georgia, Times New Roman, serif";
  transition: all 0.3s ease;
}

.view-pictures-btn a:hover {
  background: #ffffff;
  color: #000000;
}

/*---------------------
  Responsive Adjustments
-----------------------*/
@media (max-width: 768px) {
  .imagegallerybanner {
    height: 300px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-subtitle {
    font-size: 14px;
  }

  .full-width-image-gallery .image-content {
    height: 250px; /* smaller height for mobile */
  }

  .full-width-image-gallery .image-title {
    font-size: 20px;
  }

  .full-width-image-gallery .image-subtitle {
    font-size: 12px;
  }

  .view-pictures-btn a {
    padding: 8px 15px;
    font-size: 12px;
  }
}

.img-gallery-hero-background {
  position: relative;
  overflow: hidden;
}

.img-gallery-hero-background .hero-img {
  width: 100%;
  height: 100vh; /* full screen height */
  object-fit: cover; /* behaves like background-size: cover */
  display: block;
}

.img-gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.5); /* dark overlay */
}

.img-gallery-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  animation: fadeInUp 1.2s ease-out; /* apply animation */
}

.img-gallery-hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.img-gallery-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .img-gallery-hero-background .hero-img {
    height: 70vh; /* smaller on mobile */
  }
  .img-gallery-hero-content h1 {
    font-size: 2rem;
  }
  .img-gallery-hero-content p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

.custom-video-gallery {
  padding: 60px 20px;
  text-align: center;
}

.custom-video-gallery .section-title {
  margin-bottom: 30px;
}

.video-wrapper {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(620px, 1fr)
  ); /* smaller min width */
  column-gap: 20px;
  row-gap: 30px;
  margin: 0 15px;
}

@media (max-width: 768px) {
  .video-wrapper {
    grid-template-columns: 1fr; /* single column for tablets & mobiles */
    margin: 0 10px;
  }
}

.custom-video-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}

.custom-video-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-right: 50px;
}

.consultation-img img {
  width: 100%;
  height: 600px;
  object-fit: cover; /* Ensures image covers the container */
}
@media (max-width: 768px) {
  .consultation-section .col-lg-6 {
    width: 100%;
    margin-bottom: 20px; /* space before text */
  }
  .consultation-img {
    width: 100%;
    height: 400px;
  }
}

/* Client Approach Section */
.client-approach-flow {
  background: url("img/about/client-bg.jpg") no-repeat center/cover;
  position: relative;
  color: #fff;
  padding: 80px 0;
}

.client-approach-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.client-approach-flow .section-title,
.client-approach-flow .row {
  position: relative;
  z-index: 2;
}

.step-item {
  position: relative;
  padding: 20px;
}

.step-circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background-color: var(--bs-primary, #f6a624);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.step-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.approach-footer {
  font-style: italic;
  font-size: 22px;
}
