/* Fonts */
:root {
  --default-font: "poppins";
  --heading-font: "Playfair Display";
  --nav-font: "Playfair Display";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #222222;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FF65C3;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #161616;
  /* The default color of the main navmenu links */
  --nav-hover-color: #FF65C3;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f5f5f5;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #fcd8e5ee;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #172A28;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FF65C3;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

/* Changes the color of text when selected */
::selection {
  background: #e297e2;
  color: #fff;
}

::-moz-selection {
  background: #e297e2;
  color: #fff;
}

.light-background {
  --background-color: #f2f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #008374;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00b6a1;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  cursor: url('../img/cursor.png') 1 1, auto;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f5f5f5;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FF65C3;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .bi::before,
  [class^="bi-"]::before,
  [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-weight: 900 !important;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

/* .footer-top-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer::before {
  content: "";
  position: absolute;
  top: -150px; 
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url('./assets/img/dubai-skyline.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1; 
} */

.footer-logo {
  max-height: 90px;
}

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

.footer-links ul li {
  color: #fff;
  padding: 5px 0;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #FF65C3;
  color: #FF65C3;
  margin-right: 8px;
  font-size: 18px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #FF65C3;
  color: #fff;
}

.footer-links ul a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul a:hover {
  color: #FF65C3;
}

.contact-info p {
  margin: 0 0 6px;
}

.contact-info a {
  text-decoration: none;
}

.contact-info i {
  font-size: 20px;
  color: #FF65C3;
  margin-right: 8px;
}

.newsletter h5 {
  color: #FF65C3;
  margin-bottom: 8px;
}

.newsletter input {
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #FF65C3;
  background: transparent;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter button {
  padding: 8px 18px;
  border-radius: 20px;
  background: #FF65C3;
  border: none;
  color: #fff;
}

.newsletter button:hover {
  background: #e055af;
}

@media (max-width: 768px) {

  .footer-about,
  .footer-links,
  .newsletter {
    text-align: center;
  }

  .footer .newsletter input,
  .footer .newsletter button {
    width: 100%;
  }

  .footer .footer-about {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 0;
  }

  .footer-logo {
    max-height: 90px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #f1b8dbf5;
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #FF65C3;
}


.section-title p {
  margin-bottom: 0;
  z-index: 2;
}



/* -----------------------------------------
Bird Logo 
-------------------------------------------- */
.bird-logo-wrapper {
  position: relative;
  width: 100%;
  height: 0;
}

.bird-logo-symbol {
  position: absolute;
  top: 0;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  opacity: 0.50;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1200px) {
  .bird-logo-symbol {
    width: 250px;
    left: 88%;
  }
}

@media (max-width: 1199px) {
  .bird-logo-symbol {
    width: 150px;
    left: 85%;
  }
}

@media (max-width: 991px) {
  .bird-logo-symbol {
    width: 120px;
    left: 85%;
  }
}

@media (max-width: 767px) {
  .bird-logo-symbol {
    width: 90px;
    left: 85%;
  }
}

@media (max-width: 575px) {
  .bird-logo-symbol {
    width: 70px;
    left: 85%;
  }
}


/* -----------------------------------------
Bird Logo (Left Side, Flipped)
-------------------------------------------- */
/* -----------------------------------------
Bird Logo (Left Side, Flipped)
-------------------------------------------- */
.bird-logo-wrapper-left {
  position: relative;
  width: 100%;
  height: 0;
}

.bird-logo-symbol-left {
  position: absolute;
  top: 0;
  left: 12%;
  transform: translate(-50%, -50%) scaleX(-1);
  width: 300px;
  height: auto;
  opacity: 0.50;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1200px) {
  .bird-logo-symbol-left {
    width: 270px;
    left: 10%;
  }
}

@media (max-width: 1199px) {
  .bird-logo-symbol-left {
    width: 150px;
    left: 10%;
  }
}

@media (max-width: 991px) {
  .bird-logo-symbol-left {
    width: 120px;
    left: 12%;
  }
}

@media (max-width: 767px) {
  .bird-logo-symbol-left {
    width: 90px;
    left: 12%;
  }
}

@media (max-width: 575px) {
  .bird-logo-symbol-left {
    width: 70px;
    left: 12%;
  }
}




/*------------------------------------------
Inner Page Bird
-------------------------------------------*/

/* -----------------------------------------
Bird Logo Internal Right
-------------------------------------------- */
.bird-logo-wrapper-internal-right {
  position: relative;
  width: 100%;
  height: 0;
}

.bird-logo-symbol-internal-right {
  position: absolute;
  top: 0;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  opacity: 0.50;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1200px) {
  .bird-logo-symbol-internal-right {
    width: 200px;
    left: 100%;
  }
}

@media (max-width: 1199px) {
  .bird-logo-symbol-internal-right {
    width: 110px;
    left: 90%;
  }
}

@media (max-width: 991px) {
  .bird-logo-symbol-internal-right {
    width: 110px;
    left: 90%;
  }
}

@media (max-width: 767px) {
  .bird-logo-symbol-internal-right {
    width: 90px;
    left: 90%;
  }
}

@media (max-width: 575px) {
  .bird-logo-symbol-internal-right {
    width: 70px;
    left: 90%;
  }
}


/* -----------------------------------------
Bird Logo Internal left
-------------------------------------------- */
.bird-logo-wrapper-internal-left {
  position: relative;
  width: 100%;
  height: 0;
}

.bird-logo-symbol-internal-left {
  position: absolute;
  top: 0;
  left: 12%;
  transform: translate(-50%, -50%) scaleX(-1);
  width: 250px;
  height: auto;
  opacity: 0.50;
  pointer-events: none;
  z-index: 1;
}

/* Extra Large screens (≥1200px) */
@media (min-width: 1200px) {
  .bird-logo-symbol-internal-left {
    width: 200px;
    left: 10%;
  }
}

/* Large screens (992px - 1199px) */
@media (max-width: 1199px) {
  .bird-logo-symbol-internal-left {
    width: 110px;
    left: 10%;
  }
}

/* Medium screens (768px - 991px) */
@media (max-width: 991px) {
  .bird-logo-symbol-internal-left {
    width: 100px;
    left: 12%;
  }
}

/* Small screens (576px - 767px) */
@media (max-width: 767px) {
  .bird-logo-symbol-internal-left {
    width: 90px;
    left: 12%;
  }
}

/* Extra Small screens (<576px) */
@media (max-width: 575px) {
  .bird-logo-symbol-internal-left {
    width: 70px;
    left: 12%;
  }
}


/*--------------------------------------------------
Custome Buttons
---------------------------------------------------*/

.btn-design-img {
  background: none;
  border: none;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  /* makes button scale with form width */
  text-align: center;
}

.btn-design-img img {
  max-width: 250px;
  /* default size for large screens */
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.btn-design-img img:hover {
  transform: scale(1.02);
}

/* Responsiveness */
@media (max-width: 992px) {
  .btn-design-img img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .btn-design-img img {
    max-width: 60%;
  }
}

@media (max-width: 576px) {
  .btn-design-img img {
    max-width: 90%;
  }
}


.btn-join-design-img {
  background: none;
  border: none;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  width: 80%;
  /* makes button scale with form width */
  text-align: center;
}

.btn-join-design-img img {
  max-width: 220px;
  /* default size for large screens */
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.btn-join-design-img img:hover {
  transform: scale(1.02);
}

/* Responsiveness */
@media (max-width: 992px) {
  .btn-join-design-img img {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .btn-join-design-img img {
    max-width: 55%;
  }
}

@media (max-width: 576px) {
  .btn-join-design-img img {
    max-width: 70%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* Hero Section */
.hero {
  width: 100%;
  position: relative;
  padding: 140px 0;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.301);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .accent {
  color: var(--accent-color);
}

.hero h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f2f9f9;
}

.hero h3 {
  font-size: 35px;
  font-weight: 550;
  margin-bottom: 10px;
  color: #f2f9f9;
}

.hero p {
  font-size: 20px;
  font-weight: 480;
  margin-bottom: 10px;
  color: #f2f9f9;
}

.hero-form-mobile {
  display: none;
}

.hero-form {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  backdrop-filter: blur(6px);
  max-width: 80%;
}

.hero-form p {
  font-size: 15px;
  color: #fff;
}

.hero-form .form-control {
  border: 2px solid #f7a4d7;
  border-radius: 15px;
  height: 42px;
  font-size: 16px;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

.hero-form textarea.form-control {
  height: 50px;
}

.hero-form .form-control::placeholder {
  color: gray;
  opacity: 1;
  font-size: 15px;
}

.hero-form .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

.hero-form input[name="name"]::placeholder,
.hero-form input[name="email"]::placeholder,
.hero-form input[name="phone"]::placeholder {
  color: gray;
}

.hero-form input[name="name"]::placeholder:after,
.hero-form input[name="email"]::placeholder:after,
.hero-form input[name="phone"]::placeholder:after {
  content: " *";
  color: red;
}

.hero-form .btn-submit {
  background-color: #fff;
  color: #FF65C3;
  border: 2px solid #f7a4d7;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f2f9f9;
  }

  .hero h3 {
    font-size: 25px;
    font-weight: 550;
    margin-bottom: 10px;
    color: #f2f9f9;
  }

  .hero p {
    font-size: 15px;
    font-weight: 480;
    margin-bottom: 10px;
    color: #f2f9f9;
  }

  .hero .text-white {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-form {
    /*max-width: 100%;*/
    display: none;
  }

  .hero-form-mobile {
    display: block;
    background: #fde7ef;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    backdrop-filter: blur(6px);
    max-width: 100%;
  }

  .hero-form-mobile p {
    font-size: 15px;
    color: #212529;
    font-weight: 600;
  }

  .hero-form-mobile .form-control {
    border: 2px solid #f7a4d7;
    border-radius: 15px;
    height: 42px;
    font-size: 16px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
  }

  .hero-form-mobile textarea.form-control {
    height: 50px;
  }

  .hero-form-mobile .form-control::placeholder {
    color: gray;
    opacity: 1;
    font-size: 15px;
  }

  .hero-form-mobile .form-control:focus {
    border-color: var(--accent-color);
    outline: none;
  }

  .hero-form-mobile input[name="name"]::placeholder,
  .hero-form-mobile input[name="email"]::placeholder,
  .hero-form-mobile input[name="phone"]::placeholder {
    color: gray;
  }

  .hero-form-mobile input[name="name"]::placeholder:after,
  .hero-form-mobile input[name="email"]::placeholder:after,
  .hero-form-mobile input[name="phone"]::placeholder:after {
    content: " *";
    color: red;
  }

  .hero-form-mobile .btn-submit {
    background-color: #fff;
    color: #FF65C3;
    border: 2px solid #f7a4d7;
    font-weight: 600;
  }


}


/*-------------------------------------------------------
Stats Section
--------------------------------------------------------*/
.stats {
  background: #e47da3;
  padding-top: 10px;
}

.stats h2 {
  font-family: poppins;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
}

.stats p {
  font-size: 20px;
  font-weight: 600;
  color: #1c1b1c;
  font-family: "Playfair Display";
}

.stats .col-lg-3 {
  border-right: 2px dotted #fff;
}

.stats .col-lg-3:last-child {
  border-right: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .stats .col-lg-3:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .stats .col-lg-3 {
    border-right: none;
    border-bottom: 2px dotted #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .stats .col-lg-3:last-child {
    border-bottom: none;
  }
}


/* ------------------------------------------------------------
About - iwd
 */

.about-iwd .title {
  color: #FF65C3;
  font-weight: bold;
  font-size: 45px;
}

.about-iwd .subtitle {
  color: #FF65C3;
  font-weight: bold;
  margin-top: 15px;
  font-size: 25px;
}

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

.about-iwd .btn-pink {
  background-color: #FF65C3;
  color: white;
  border-radius: 25px;
  padding: 6px 20px;
  border: none;
  margin-right: 5px;
  display: flex;
  align-items: center;
}

.about-iwd .btn-outline-pink {
  border: 1px solid #FF65C3;
  color: #FF65C3;
  border-radius: 25px;
  padding: 6px 20px;
  margin-right: 5px;
  display: flex;
  align-items: center;
}

.about-iwd .btn-outline-pink:hover {
  background-color: #FF65C3;
  color: white;
}

.about-iwd .shine-text {
  color: #FF65C3;
  font-size: 24px;
  font-family: 'Playfair Display';
  font-weight: 600;
}

.about-iwd span.shine-subtext {
  color: #010f27;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
}

.circle-image-wrapper {
  position: relative;
  display: inline-block;
}

.pink-shape {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 350px;
  height: 350px;
  background: url('pink-shape.png') no-repeat center/contain;
  z-index: 1;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-btn.active {
  background-color: #FF65C3;
  color: #fff;
}

.circle-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .circle-image {
    max-width: 250px;
  }
}

/*--------------------------------------------------------------
# media-partners Section
--------------------------------------------------------------*/
.media-partners-v2 .section-title p {
  font-size: 18px;
}

.media-partners-v2 .section-title h2 {
  color: #FF65C3;
  font-size: 45px;
}

.media-partners-v2 .mp-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.media-partners-v2 .mpSwiper {
  overflow: hidden;
}

.media-partners-v2 .mp-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 140px;
  box-sizing: border-box;
}

.media-partners-v2 .mp-logo {
  max-height: 110px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}

.media-partners-v2 .mp-logo:hover {
  transform: scale(1.04);
}

.media-partners-v2 .mp-slide::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  border-right: 2px dotted #d63384;
  z-index: 1;
}

.media-partners-v2 .mp-slide:last-child::after {
  display: none;
}

.media-partners-v2 .mp-prev,
.media-partners-v2 .mp-next {
  color: #ec7fb6de;
  font-size: 22px;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.media-partners-v2 .mp-prev {
  left: -50px;
}

.media-partners-v2 .mp-next {
  right: -50px;
}

.media-partners-v2 .mp-prev:hover,
.media-partners-v2 .mp-next:hover {
  color: #b0246e;
}

@media (max-width: 992px) {
  .media-partners-v2 .mp-prev {
    left: -30px;
  }

  .media-partners-v2 .mp-next {
    right: -30px;
  }
}

@media (max-width: 576px) {
  .media-partners-v2 .mp-wrapper {
    width: 95%;
  }

  .media-partners-v2 .mp-prev {
    left: -15px;
  }

  .media-partners-v2 .mp-next {
    right: -15px;
  }

  .media-partners-v2 .mp-slide::after {
    right: -6px;
  }
}

@media (max-width: 480px) {
  .media-partners-v2 .mp-slide::after {
    border-right: none;
  }
}







/*--------------------------------------------------------------
# Empower Section
--------------------------------------------------------------*/
.empower-section {
  background-color: #fde7ef;
}

.empower-section .section-title h2 {
  font-weight: bold;
  font-size: 2rem;
  color: #060606;
  font-size: 45px;
}

.empower-card {
  background: white;
  padding: 20px;
  border: 2px solid #f7c9d8;
  border-radius: 15px;
  text-align: center;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.empower-heading {
  color: #FF65C3;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 25px
}

.empower-card p {
  font-size: 1rem;
  line-height: 1.3;
}

.empower-card img {
  margin-top: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.empower-section .row>[class*="col-"] {
  display: flex;
}

.empower-section .btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #FF65C3;
  color: #FF65C3;
  background: transparent;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-icon {
  height: 30px;
  width: auto;
}

/*-----------------------------------------
#Brand Collaboration
-------------------------------------------*/
.brand-collaboration {
  background-color: #fff;
}

.brand-collaboration .section-title h2 {
  color: #FF65C3;
  font-size: 45px;
}

.brand-collaboration .text-pink {
  color: #FF65C3;
  font-size: 25px;
}

.brand-collaboration .btn-pink-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #FF65C3;
  color: #FF65C3;
  background: transparent;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-collaboration .btn-icon {
  height: 30px;
  width: auto;
}

.brand-collaboration .video-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
}

.brand-collaboration .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

/* ===============================
   Features Grid Layout
================================ */

.brand-collaboration .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
}

.brand-collaboration .feature-item span {
  font-size: 18px;
  font-family: "playfair", serif;
}

.brand-collaboration .feature-icon {
  margin-top: 15px;
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-collaboration .feature-icon:hover {
  transform: scale(1.1);
}

.brand-collaboration .vertical-line {
  width: 2px;
  height: 100%;
  background-color: #FF65C3;
}

/* ===============================
   Responsive Adjustments
================================ */

@media (max-width: 768px) {
  .brand-collaboration .vertical-line {
    display: none;
  }
}





/* -----------------------------------------------------------
Brand Collaboration logos 
-------------------------------------------------------------*/
.collaboration-section {
  background-color: #ffffff;
  padding: 20px 0 20px;
  text-align: center;
}

.collaboration-section .section-title h2 {
  color: #FF65C3;
  font-weight: 700;
  font-size: 45px;
}

.collab-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.collab-card {
  margin: 0 auto;
  max-width: 80%;
  background: #fff;
  border: 2px solid #d63384;
  border-radius: 15px;
  padding: 35px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-card img {
  max-width: 100%;
  max-height: 90px;
  min-height: 90px;
  object-fit: contain;
}

.collaboration-section .swiper-button-next,
.collaboration-section .swiper-button-prev {
  color: #ec7fb6de;
  font-size: 22px;
  font-weight: normal;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.collaboration-section .swiper-button-next {
  right: -50px;
}

.collaboration-section .swiper-button-prev {
  left: -50px;
}

.collaboration-section .swiper-button-next:hover,
.collaboration-section .swiper-button-prev:hover {
  color: #b0246e;
}

@media (max-width: 992px) {
  .collaboration-section .swiper-button-next {
    right: -30px;
  }

  .collaboration-section .swiper-button-prev {
    left: -30px;
  }
}

@media (max-width: 576px) {
  .collaboration-section .collab-wrapper {
    width: 95%;
  }

  .collaboration-section .swiper-button-next {
    right: -15px;
  }

  .collaboration-section .swiper-button-prev {
    left: -15px;
  }
}






/* ----------------------------------------------------------
Discount in dubai
------------------------------------------------------------ */
.discounts-section {
  background-color: #ffe6f2;
  padding: 20px 0;
  text-align: center;
}

.discounts-section .section-title h2 {
  color: #FF65C3;
  font-weight: 700;
  font-size: 45px;
}

.discounts-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.discount-card {
  background: #ffffff;
  border: 2px solid #d63384;
  border-radius: 15px;
  padding: 25px 20px;
  margin: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.discount-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.discount-card h3 {
  color: #FF65C3;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.btn-discount {
  display: inline-block;
  padding: 6px 20px;
  border: 1.5px solid #d63384;
  color: #d63384;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-discount:hover {
  background: #d63384;
  color: #fff;
}

.discounts-section .swiper-button-next,
.discounts-section .swiper-button-prev {
  color: #ec7fb6de;
  font-size: 22px;
  font-weight: normal;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.discounts-section .swiper-button-next {
  right: -50px;
}

.discounts-section .swiper-button-prev {
  left: -50px;
}

.discounts-section .swiper-button-next:hover,
.discounts-section .swiper-button-prev:hover {
  color: #b0246e;
}

@media (max-width: 992px) {
  .discounts-section .swiper-button-next {
    right: -30px;
  }

  .discounts-section .swiper-button-prev {
    left: -30px;
  }
}

@media (max-width: 576px) {
  .discounts-section .swiper-button-next {
    right: -15px;
  }

  .discounts-section .swiper-button-prev {
    left: -15px;
  }
}





/* ------------------------------------------------------
Join Us 
--------------------------------------------------------- */
.join-us-section {
  background-color: #fff;
}

.join-us-section .section-title h2 {
  font-weight: bold;
  margin-bottom: 0px;
  color: #060606;
  font-size: 45px;
}

.join-us-section .video-wrapper {
  position: relative;
  display: inline-block;
}

.join-us-section .video-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
}

.join-us-section .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  min-height: 100%;
}

.join-us-section .row {
  display: flex;
  align-items: stretch;
}

.join-us-section .join-us-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.join-us-section .btn-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #ff65c3;
  color: #ff65c3;
  background: transparent;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-us-section .bird-logo {
  height: 30px;
  width: auto;
}

@media (max-width: 768px) {
  .join-us-section .join-title {
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #ffe6f2;
  padding: 40px 0;
  text-align: center;
}

.testimonials .section-title h2 {
  color: #FF65C3;
  font-weight: 700;
  font-size: 45px;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
}

.testimonial-card {
  max-width: 90%;
  margin: 0 auto;
  background: #ffe6f2;
  border: 2px solid #d63384;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card h3 {
  color: #d63384;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  color: #ec7fb6de;
  font-size: 22px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.testimonials .swiper-button-next {
  right: -50px;
}

.testimonials .swiper-button-prev {
  left: -50px;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  color: #b0246e;
}

@media (max-width: 992px) {
  .testimonials .swiper-button-next {
    right: -30px;
  }

  .testimonials .swiper-button-prev {
    left: -30px;
  }
}

@media (max-width: 576px) {
  .testimonials .swiper-button-next {
    right: -15px;
  }

  .testimonials .swiper-button-prev {
    left: -15px;
  }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* Footer Dubai Image */
.footer-dubai-img img {
  width: 100%;
  height: auto;

}

/*-------------------------------------------------
Banner Section
---------------------------------------------------*/
.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.400);
  z-index: 1;
}

.banner-content {
  margin-top: 2%;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.banner-content h1 {
  font-family: "poppins";
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 400;
}

.banner-content .btn-primary {
  background-color: #FF65C3;
  border: none;
  padding: 12px 50px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 500;
}

.banner-content .btn-primary:hover {
  background-color: #FF65C3;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}


/* -------------------------------------------------
Contact Us
---------------------------------------------------- */
.contact-section {
  background-color: #ffe6f2;
  padding: 40px 0;
  text-align: center;
}

.contact-section .section-title h2 {
  color: #FF65C3;
  font-weight: 700;
  font-size: 45px;
}

.contact-section .section-title p {
  font-weight: 500;
}

.contact-section .contact-form {
  background: #fab8e13b;
  border: 2px solid #f7a4d7;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  margin: auto;
  text-align: left;
}

.contact-section .contact-form h4 {
  color: #FF65C3;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.contact-section .contact-form .form-control {
  border: 1.5px solid #ddd;
  border-radius: 15px;
  height: 45px;
  font-size: 15px;
  padding: 10px 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.contact-section .contact-form textarea.form-control {
  height: 120px;
  resize: none;
}

.contact-section .contact-form .form-control:focus {
  border-color: #FF65C3;
  box-shadow: 0 0 8px rgba(255, 101, 195, 0.3);
  outline: none;
}

.contact-section .contact-form .form-control[required]::placeholder {
  position: relative;
}

.contact-section .contact-form .form-control[required]::placeholder:after {
  content: " *";
  color: red;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section .contact-form .form-control {
    max-width: 100%;
  }
}



/* -------------------------------------------------
About Page
---------------------------------------------------- */
.about-section {
  background-color: #fff;
  padding: 0 0;
  text-align: center;
}

.about-section .section-title h2 {
  color: #FF65C3;
  font-weight: 700;
  font-size: 45px;
}

.about-section .section-title p {
  font-weight: 500;
}

.about-section .img-iwd-journey {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.about-section .about-iwd-empower {
  background-color: #FDE7EF;
  padding: 50px;
}

.about-section .about-iwd-empower .about-iwd-empower-info {
  margin: auto 0;
}

.about-section .about-iwd-empower .about-iwd-empower-info h2 {
  font-weight: 700;
  font-size: 45px;
  text-align: left;
}

.about-section .about-iwd-empower .about-iwd-empower-info {
  text-align: left;
}

.about-section .about-iwd-empower .video-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
}

.about-section .about-iwd-empower .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-section .about-iwd-wow h2 {
  color: #ff64c3;
  font-weight: 600;
  font-size: 36px;
}

.about-section .about-iwd-wow .img-iwd-wow {
  max-width: 100%;
  border-radius: 15px;
}

.about-section .about-iwd-wow .video-list h4 {
  color: #ff64c3;
  font-weight: 600;
  font-size: 36px;
}

.about-section .about-iwd-wow .video-list ul li {
  margin-bottom: 12px;
}

.about-section .about-iwd-wow .video-list a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.about-section .about-iwd-wow .video-list a:hover {
  color: #ff64c3;
  font-weight: normal;
}

.about-section .about-iwd-wow .btn-pink-outline {
  display: inline-block;
  border: 2px solid #FF65C3;
  color: #FF65C3 !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.about-section .about-iwd-wow .btn-pink-outline:hover {
  display: inline-block;
  border: 2px solid #FF65C3;
  color: #FF65C3 !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600 !important;
  text-decoration: none;
  transform: none;
}

@media (max-width: 992px) {
  .about-section .about-iwd-wow h2 {
    font-size: 28px;
  }

  .about-section .about-iwd-wow .img-iwd-wow {
    display: none !important;
  }

  .about-section .about-iwd-wow .reema-img {
    display: none !important;
  }
}

@media (max-width:768px) {
  .about-section .about-iwd-wow .video-list {
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .about-section .about-iwd-wow h2 {
    font-size: 24px;
  }

  .about-section .about-iwd-wow .video-list ul li {
    font-size: 14px;
  }
}


.about-section .about-iwd-our-founder {
  background-color: #FDE7EF;
}

.about-section .about-iwd-our-founder .about-iwd-our-founder-info h2 {
  font-weight: 700;
  font-size: 45px;
  color: #FF65C3;
}

.about-section .about-iwd-our-founder .about-iwd-our-founder-img {
  border-radius: 15px;
  max-width: 100%;
  min-height: 300px;
  object-fit: cover;
}




@media (max-width: 991px) {
  .about-section .about-iwd-our-founder .about-iwd-our-founder-info h2 {
    margin-top: 1%;
  }
}

@media (max-width: 768px) {
  .about-section .about-iwd-our-founder .about-iwd-our-founder-img {
    max-width: 100%;
    margin: 5px;
  }

  .about-section .about-iwd-our-founder .about-iwd-our-founder-info h2 {
    margin-top: 1%;
  }
}




/*-----------------------------------------
Meet Reema Page
----------------------------------------*/
.meet-reema-section {
  padding: 0 0;
}

.meet-reema-section .meet-reema-mahajan h2 {
  font-weight: 700;
  font-size: 45px;
  color: #FF65C3;
}

.meet-reema-section .section-title p {
  font-weight: 500;
}

.meet-reema-section .img-meet-reema-journey {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .meet-reema-section .img-meet-reema-journey {
    max-width: 100%;
  }
}

.meet-reema-section .meet-reema-awards {
  background-color: #FDE7EF;
}

.meet-reema-section .meet-reema-awards h2 {
  font-weight: 700;
  font-size: 45px;
  color: #FF65C3;
}

.meet-reema-section .meet-reema-awards p {
  font-weight: 500;
}

.meet-reema-section .meet-reema-awards img {
  max-height: 240px;
  object-fit: cover;
  border-radius: 15px;
}

.meet-reema-section .meet-reema-awards h5 {
  font-weight: 500;
  font-family: "Poppins";
  font-size: 16px;
}


/* --------------------------------------
Discount In Dubai
----------------------------------------- */

.discounts-in-dubai .card {
  max-width: 100%;
  width: 100%;
  max-width: 500px;
  min-height: 180px;
  border-radius: 15px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(252deg, rgba(255, 101, 195, 1) 22%, rgba(240, 173, 225, 1) 97%);
  padding: 15px;
  position: relative;
  border: none;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.discounts-in-dubai .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.discounts-in-dubai .card::after,
.discounts-in-dubai .card::before {
  position: absolute;
  content: "";
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  width: 40px;
}

.discounts-in-dubai .card::after {
  right: -20px;
}

.discounts-in-dubai .card::before {
  left: -20px;
}

.discounts-in-dubai .co-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 150px;
}

.discounts-in-dubai .co-img img {
  width: 80px;
  height: 80px;
}

.discounts-in-dubai .vertical {
  border-left: 2px dotted rgb(0, 0, 0);
  position: absolute;
  left: 30%;
  top: 0;
  bottom: 0;
}

.discounts-in-dubai .content {
  flex: 1;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discounts-in-dubai .content h1 {
  font-size: 45px;
  color: #ffffffff;
  margin: 5px 0;
  font-weight: 650;
}

.discounts-in-dubai .content h2 {
  font-size: 20px;
  color: #3a0e2dff;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}

.discounts-in-dubai .content p {
  font-size: 14px;
  color: #ffffffff;
  margin: 5px 0;
}

.discounts-in-dubai .copy-button {
  display: flex;
  margin-top: 15px;
}

.discounts-in-dubai .copy-button button {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  background-color: #ffffffff;
  color: #110f0fff;
  border: none;
  border-radius: 6px 0 0 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
}

.discounts-in-dubai .copy-button button:hover {
  background-color: #ffffffff;
  color: #110f0fff;
}


.discounts-in-dubai .copy-button .masked {
  display: inline-flex;
  align-items: center;
  color: #333;
  padding: 4px 6px;
  border-right: #333 2px dashed;
  border-top: #333 2px dashed;
  border-bottom: #333 2px dashed;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.discounts-in-dubai .code-info h2 {
  font-size: 35px;
}

@media (max-width: 768px) {
  .discounts-in-dubai .card {
    margin-bottom: 10px;
  }

  .discounts-in-dubai .code-info {
    margin-top: 10px;
  }

  .discounts-in-dubai .code-info h2 {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .discounts-in-dubai .vertical {
    border-left: none;
    border-top: 4px dotted black;
    position: relative;
    width: 80%;
    margin: 15px auto;
    left: 0%;
  }

  .discounts-in-dubai .main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .discounts-in-dubai .content {
    margin-left: 0;
    margin-top: 15px;
  }

  .discounts-in-dubai .co-img {
    margin-bottom: 15px;
  }
}