/* Google Fonts: Outfit & Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --ua-navy: #0B2B5C;
  --ua-navy-dark: #071D3F;
  --ua-purple: #783E82;
  --ua-purple-light: #F5EEF6;
  --ua-accent: #8A3C8B;
  --ua-text-dark: #2B303A;
  --ua-text-muted: #6C757D;
  --ua-white: #FFFFFF;
  --ua-bg-light: #F8F9FA;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ua-text-dark);
  background-color: var(--ua-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ua-navy);
  font-weight: 700;
}
h2{
  font-size: 2.1rem;
    line-height: 1.2;
}
/* Utilities */
.text-ua-navy { color: var(--ua-navy) !important; }
.text-ua-purple { color: var(--ua-purple) !important;     }
.bg-ua-navy { background-color: var(--ua-navy) !important; }
.bg-ua-purple { background-color: var(--ua-purple) !important; }
.bg-ua-light { background-color: var(--ua-purple-light) !important; }

/* Buttons */
.btn-ua-purple {
  background-color: var(--ua-purple);
  color: var(--ua-white);
  border: 2px solid var(--ua-purple);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-ua-purple:hover {
  background-color: transparent;
  border-color: var(--ua-purple);
  color: var(--ua-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 62, 130, 0.2);
}

.btn-ua-outline {
  background-color: transparent;
  color: var(--ua-navy);
  border: 2px solid var(--ua-navy);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-ua-outline:hover {
  background-color: var(--ua-navy);
  color: var(--ua-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 43, 92, 0.15);
}
.policies-img{
  width: 100%;
    border-radius: 15px;
    margin-bottom: 0!important;
    overflow: hidden;
}
.policies-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uniq-clr{
  position: relative;
  z-index: 1;
  display: inline-block;
  /*font-style: italic;*/
}
.uniq-clr::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 6px;
    z-index: -1;
    background: linear-gradient(135deg, rgb(116 53 124 / 30%) 0%, rgb(13 40 93 / 30%) 100%);
    bottom: 5px;
    left: 0;
}

/* Character Split Animation for Section Headings */
.split-line-heading {
  position: relative;
  display: inline-block;
}

/* Split characters - static state (no animation) */
.split-line-heading .split-char {
  display: inline-block;
}

/* Underline animation for uniq-clr spans */
.uniq-clr .split-line-bg {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 17px;
  /* background: #74357c; */
  background: url(../images/banner-line.png);
  border-radius: 3px;
  z-index: -1;
  transition: width 2.2s cubic-bezier(0.16, 1, 0.3, 1);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.uniq-clr .split-line-bg.animate {
  width: 100%;
}

/* Keep the original uniq-clr underline as static bg */
.uniq-clr::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 6px;
  z-index: -1;
  background: linear-gradient(135deg, rgb(116 53 124 / 30%) 0%, rgb(13 40 93 / 30%) 100%);
  bottom: 5px;
  left: 0;
  display: none;
}

/* Center-aligned split line for .text-center headings */
.text-center .uniq-clr .split-line-bg {
  left: 0;
  width: 0;
}
.text-center .uniq-clr .split-line-bg.animate {
  width: 100%;
}

/* Responsive: disable animation transition details on small screens */
@media (max-width: 480px) {
  .uniq-clr .split-line-bg {
    width: 100% !important;
    transition: none;
  }
}
/* Navbar & Topbar */
.top-bar {
 background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: var(--ua-white);
}

.navbar {
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: var(--ua-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 55px;
  width: auto;
  transform: scale(1.5);
}

.navbar-nav .nav-link {
  color: var(--ua-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 15px !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ua-purple);
}

/* Custom Dropdown Styling */
.navbar-nav .custom-dropdown-menu {
  background: #ffffff;
  border-radius: 12px !important;
  padding: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  min-width: 200px;
}

.custom-dropdown-item {
  border-radius: 6px;
  font-weight: 500;
  color: var(--ua-navy) !important;
  padding: 8px 16px !important;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.custom-dropdown-item:hover {
  background-color: var(--ua-purple-light) !important;
  color: var(--ua-purple) !important;
}

.custom-dropdown-item.active-submenu {
  background-color: var(--ua-purple) !important;
  color: #ffffff !important;
}

/* Hide default bootstrap caret */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* Dropdown chevron styling */
.dropdown-chevron {
  font-size: 0.7rem;
  display: inline-block;
  vertical-align: middle;
}

/* Premium Hover Dropdown Style */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s ease;
    margin-top: 0;
  }
}

.navbar-login-btn {
  border: 1px solid #D2C4D5;
  color: var(--ua-purple);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-login-btn:hover {
  background-color: var(--ua-purple-light);
  color: var(--ua-purple);
}

/* Hero Section */
.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  background: white;
}

/* Premium Apple-inspired Curved Content Card & shadows */
.hero-content-panel {
  background-color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px 0px 0px 40px;
  /* border: 1px solid rgba(255, 255, 255, 0.8); */
  padding: 0 50px;
  /* box-shadow: 0 80px 120px rgba(0, 0, 0, 0.08), 0 30px 60px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9); */
  position: relative;
  z-index: 10;
  transition: transform 0.4s ease;
}

.hero-image-container-premium {
  position: relative;
  border-radius: 0px 40px 40px 0px;
  overflow: hidden;
  /* box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05); */
  background: url(../../assets/images/display_office.png) no-repeat center center;
  background-size: cover;
  min-height: 500px;
  width: 100%;
}

.hero-image-container-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Add Apple-style subtle light blur elements in background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(108, 59, 255, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(11, 43, 92, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0F172A;
}

.hero-title span {
  display: block;
}

/* Gradient Text Highlight matching premium Apple Style */
.hero-title .accent-text {
  background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12), 
              0 0 0 1px rgba(15, 23, 42, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover {
  transform: scale(1.015) translateY(-4px);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}



/* Redefined custom gradients for buttons with Apple Premium feel */
.btn-ua-purple {
  background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
  color: var(--ua-white);
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 11px !important;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(108, 59, 255, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ua-purple:hover {
  background: transparent;
  border: 2px solid #74357c;
  color: #74357c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(108, 59, 255, 0.15);
}

.btn-ua-outline {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 15px !important;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.btn-ua-outline:hover {
  background-color: #FFFFFF;
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* University logos ticker */
.partners-section {
  padding: 55px 0;
  background: #061833;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
  z-index: 10;
}

.partners-subtitle {
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.partners-heading {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.partners-heading span {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  /* font-style: italic; */
}
.partners-heading .uniq-clr .split-line-bg {
  background: url(../images/banner-line-white.png);
  background-repeat: no-repeat;
    background-size: 100% 100%;
}
.partners-heading span::after{
  position: absolute;
    content: '';
    width: 100%;
    height: 6px;
    z-index: -1;
    background: linear-gradient(135deg, rgb(255 255 255 / 30%) 0%, rgb(255 255 255 / 30%) 100%);
    bottom: 5px;
    left: 0;
    display: none;
}
.partners-logo-card {
  background: var(--ua-white);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03),
              0 1px 3px rgba(15, 23, 42, 0.02),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 210px;
  height: 80px;
}

.partners-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(108, 59, 255, 0.08);
  border-color: rgba(108, 59, 255, 0.15);
}

.partner-logo {
  max-height: 38px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  transform: scale(1.2);
}

.partners-logo-card:hover .partner-logo {
  transform: scale(1.28);
  opacity: 1;
}

/* Logo Carousel Slider */
.logo-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
  background-color: transparent;
  display: flex;
}

.logo-carousel-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services Section Navigation Bar Ticker */
.services-nav-ticker {
  background-color: #061833;
  border-radius: 24px;
  padding: 30px 40px;
  box-shadow: 0 30px 60px rgba(6, 24, 51, 0.15);
  margin-top: -80px;
  position: relative;
  z-index: 50;
}

.services-ticker-item {
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.services-ticker-item:last-child {
  border-right: none;
}

.services-ticker-item:hover {
  transform: translateY(-4px);
}

.ticker-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--ua-purple);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(120, 62, 130, 0.4);
}

.ticker-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Services section card revisions */
.services-section {
  padding: 55px 0;
  background-color: #FAFBFD;
}

.service-card {
  background: var(--ua-white);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06);
  border-color: rgba(120, 62, 130, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(120, 62, 130, 0.06);
  color: var(--ua-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--ua-purple);
  color: var(--ua-white);
  transform: rotate(5deg) scale(1.05);
}
.uni-slide-card>div{
  background: #fff;
    border-radius: 12px;
    padding: 8px;
    height: 95px;
}
.uni-slide-card>div img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.service-card .btn-learn-more {
  margin-top: auto;
  color: var(--ua-purple);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  padding-top: 15px;
}

.service-card .btn-learn-more:hover {
  color: var(--ua-navy);
}

.service-card .btn-learn-more i {
  transition: transform 0.2s ease;
}

.service-card .btn-learn-more:hover i {
  transform: translateX(4px);
}

/* Destination Cards */
.destinations-section {
  padding: 55px 0;
}

.destination-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ua-white);
  z-index: 1;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(11, 43, 92, 0.95) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.destination-card:hover::before {
  background: linear-gradient(180deg, rgba(120, 62, 130, 0.2) 20%, rgba(11, 43, 92, 0.98) 100%);
}

.destination-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
  transform: scale(1.1);
}

.destination-content {
  padding: 24px;
}

.destination-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ua-white);
  margin-bottom: 12px;
}

.destination-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.destination-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-destination-explore {
  background-color: var(--ua-white);
  color: var(--ua-navy);
  border: none;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-destination-explore:hover {
  background-color: var(--ua-purple);
  color: var(--ua-white);
}

/* Process Steps Timeline */
.process-section {
  padding: 55px 0;
  background-color: #FFFFFF;
}

.process-subtitle {
  font-family: var(--font-heading);
  color: #7e3d80;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.process-heading {
  font-family: var(--font-heading);
  color: #002c5a;
  /* font-weight: 800; */
  /* font-size: 2.3rem; */
  /* letter-spacing: -0.02em; */
  margin-bottom: 50px;
}

.process-heading span {
  color: #7e3d80;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

/* Connective line behind process circles */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1.5px dashed #D2C4D5;
  z-index: 1;
}

.process-step {
  width: 20%;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.process-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #F8F4F9;
  border: 1px solid rgba(126, 61, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #7e3d80;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(126, 61, 128, 0.03);
}

.process-step:hover .process-icon-circle {
  transform: scale(1.1) translateY(-4px);
  background-color: #7e3d80;
  color: #FFFFFF;
  box-shadow: 0 15px 30px rgba(126, 61, 128, 0.25);
}

.process-step h4 {
  font-family: var(--font-heading);
  color: #0d285d;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 55px 0;
  background-color: #F6F7FA;
  border-radius: 50px 50px 0 0;
}

.why-choose-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.checklist-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--ua-purple-light);
  color: var(--ua-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Success Stories Section */
.success-stories-section {
      padding: 50px 0 20px 0 !important;
  background-color: #FFFFFF;
}

.stories-heading {
  font-family: var(--font-heading);
  color: #002c5a;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.stories-heading span {
  color: #7e3d80;
}

.btn-view-all {
  color: #7e3d80;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.btn-view-all:hover {
  color: var(--ua-navy);
}

.btn-view-all i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}
#reviewsCarousel .owl-stage-outer{
  padding: 30px 0;
}

/* Center active card in reviews carousel - larger & elevated */
#reviewsCarousel .owl-item.center .story-feedback-card {
  /* transform: scale(1.08);
  border-color: #74357c;
  box-shadow: 0 15px 40px rgba(116, 53, 124, 0.2);
  z-index: 10;
  position: relative; */
}
#reviewsCarousel .owl-item.center .story-feedback-card .srory-cntnt-card{
  background: #faeffd;
}
#reviewsCarousel .owl-item.center .story-feedback-card .lft-quotes, #reviewsCarousel .owl-item.center .story-feedback-card .btm-quotes{
  color: #74357c;
}
.story-feedback-card {
  background-color: #FFFFFF;
    border-radius: 13px;
    padding: 10px;
    border: 1px solid rgb(25 41 96 / 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.stdnt-rvw-img {
       position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 3px solid #6d347a;
    border-radius: 50%;
    overflow: hidden;
}
.stdnt-rvw-img img{
  width: 100% !important;
    height: 100%;
    object-fit: cover;
}
/* .story-feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
} */
.story-feedback-card .srory-cntnt-card{
  padding: 35px 10px 20px 10px;
    background: #fff;
    border-radius: 8px;
}
.story-feedback-card .srory-cntnt-card .story-quote{
  margin: 0;
    min-height: 80px;
    max-height: 80px;
    overflow-x: auto;
    scrollbar-width: none;
}
.story-quote {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

/* .story-quote::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: #7e3d80;
  font-weight: bold;
  margin-right: 4px;
} */

.story-user-info {
 display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
    margin-top: 5px;
}
.story-user-info .stars-google-post .start-list ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.story-user-info .stars-google-post .start-list li{
  display: inline-block;
}
.story-user-info .stars-google-post .start-list li img{
  width: 15px;
}
.story-user-info .stars-google-post .pst-gle img{
  width: 115px;
}
/* .story-user-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
} */

.story-user-details h5 {
  font-size: 1rem!important;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.story-user-details p {
  font-size: 0.81rem;
    color: #783e82 !important;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-style: italic;
    margin-top: 2px;
}

.story-user-details p img {
  width: 24px;
  height: auto;
}
.lft-quotes {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #ffffff;
    top: -18px;
    left: 26px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    color: #0d285d;
}
.btm-quotes {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #ffffff;
    bottom: -18px;
    right: 26px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    color: #0d285d;
}
/* Latest from Our Blog Section */
.blog-section {
  padding: 55px 0;
  background-color: #FAFBFD;
}

.blog-card {
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 170px;
  margin-bottom: 16px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 0;
}

.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #F5EEF6;
  color: #7e3d80;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
  color: #7e3d80;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #64748B;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* CTA Card */
.cta-wrapper {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.cta-card {
  background-color: var(--ua-purple-light);
  border-radius: 20px;
  padding: 40px 50px;
  border: 1px solid rgba(120, 62, 130, 0.15);
  box-shadow: 0 15px 35px rgba(120, 62, 130, 0.08);
}

/* Footer styling */
.main-footer {
      background-color: #061833;
    color: #FFFFFF;
    padding: 55px 0 15px;
    font-size: 0.9rem;
}

.main-footer h5 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 0px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
      color: rgb(255 255 255 / 80%);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #fff;  
  opacity: 0.8;
  padding-left: 5px;
  text-decoration: underline;
}

.footer-links.text-white-50 a,
.footer-links.text-white-50 span {
 color: rgb(255 255 255 / 80%) !important;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--ua-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--ua-purple);
  color: var(--ua-white);
  transform: translateY(-3px);
}
.policies-links {
   margin-top: 15px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    /* padding: 12px 0px; */
    /* background: rgb(107 52 121 / 25%); */
    text-align: center;
    /* border-radius: 10px; */
    border-top: 1px solid rgb(255 255 255 / 7%);
    /* background: linear-gradient(135deg, rgb(116 53 124 / 25%) 0%, rgb(13 40 93 / 20%) 100%); */
    padding-top: 15px;
}
.policies-links a{
      color: rgb(255 255 255 / 80%);
    font-size: 14px;
    padding: 0 5px;
}
.policies-links a:hover{
  color: #fff;
  cursor: pointer;
}
.policies-links .text-muted{
  --bs-text-opacity: 1;
    color: rgb(255 255 255 / 07%) !important;
}
.footer-bottom {
       padding-top: 15px;
    margin-top: 20px;
    font-size: 0.85rem;
    border-top: 1px solid rgb(255 255 255 / 7%);
}
.footer-bottom .ftr-btm-para{
  text-align: center;
    color: rgb(255 255 255 / 85%);
    line-height: 26px;
}
.footer-bottom .ftr-btm-para a{
     color: #f0c2fd;
    text-decoration: none;
    font-weight: 700;
}
.footer-bottom .ftr-btm-para a:hover{
  text-decoration: underline;
}
.service-card h4 {
    font-weight: 600 !important;
    font-size: 18px;
}
.footer-description {
        font-size: 0.9rem;
    line-height: 23px;
    color: rgb(255 255 255 / 80%);
}

.process-step h4 {
    font-family: var(--font-heading);
    color: #0d285d;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    color: #64748B;
    font-size: 0.90rem;
    line-height: 1.6;
    margin: 0;
}
.checklist-wrapper h5 {
    font-size: 1.2rem;
}
.counter-section2 {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}
.faq_img{
  width: 100%;
  
}
.faq_img img{
  max-width: inherit!important;
  width: 100%;
}
.why-choose-us-section {
  background: url(../images/choose-us-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    /* margin-top: -62px; */
    padding-top: 105px !important;
}
.legacy-section{
   position: relative;
   z-index: 1;
}
.legacy-section::after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(to top, rgb(148 129 252 / 10%) 55%, transparent 70%);
}
/* ==========================================
   RESPONSIVE MEDIA QUERIES (100% RESPONSIVE)
   ========================================== */

/* Large screens adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

/* Tablets / Medium screens */
@media (max-width: 991.98px) {
  /* Hero panel adjustments when stacked */
  .hero-content-panel {
    border-radius: 24px 24px 0 0;
    padding: 30px;
    text-align: center;
  }
  
  .hero-image-container-premium {
    border-radius: 0 0 24px 24px;
    min-height: 350px;
  }
  
  .hero-image-container-premium::after {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0) 100%);
    width: 100%;
    height: 30%;
  }

  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-title span {
    display: inline;
  }

  /* Process Timeline when stacked */
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Small devices / Mobile screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-content-panel {
    padding: 20px;
  }
  
  .hero-image-container-premium {
    min-height: 250px;
  }
  
  .cta-card {
    padding: 24px 20px;
    text-align: center;
  }
  
  .main-footer {
    padding: 55px 0 30px;
  }
}

/* ==========================================
   About Page Styles
   ========================================== */
.about-hero {
  
  width: 100%;
    height: 350px;
    /* border-radius: 20px; */
    position: relative;
    z-index: 1;
}
.pg-brdcrmb-img {
    width: 100%;
    height: 100%;
}
.pg-brdcrmb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-hero::after{
  position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.about-hero .container{
 position: absolute !important;
    /* position: absolute; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    text-align: center;
    /* padding: 25px; */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.brdcm-lst {
      margin: 0px;
    position: absolute;
    top: 20px;
    background: rgb(255 255 255 / 11%);
    padding: 8px 18px;
    border-radius: 10px;
    width: fit-content;
    backdrop-filter: blur(15px);
    border: 1px solid rgb(255 255 255 / 30%);
    left: 0;
}

.brdcm-lst li {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}

.brdcm-lst li:first-child {
  margin-left: 0;
}

.brdcm-lst li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.brdcm-lst li::after {
  position: absolute;
  content: ">";
  width: 15px;
  color: rgb(255 255 255 / 50%);
  right: -22px;
  top: 2px;
  font-size: 16px;
  line-height: 1;
}

.brdcm-lst li:last-child::after {
  display: none;
}

.brdcm-lst li a.secondry-color {
  color: rgb(255 255 255 / 90%);
  font-weight: 300;
}

.brdcm-lst li a.secondry-color:hover {
  /* color: rgba(70, 89, 190, 1); */
  text-decoration: none;
  cursor: unset;
}
/* .about-hero::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left:0;
  background: linear-gradient(135deg, rgb(11 43 92 / 85%) 0%, rgb(26 58 110 / 85%) 50%, rgb(120 62 130 / 85%) 100%);
  z-index: -1;
}
.about-hero-circle-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: none;
}
.about-hero-circle-2 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(120,62,130,0.3);
  filter: blur(60px);
  display: none;
} */
.about-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.about-hero-title-gradient {
  background: linear-gradient(135deg, #C8A2D6, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-desc {
  max-width: 650px;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}
.about-section-padding {
  padding: 55px 0;
}
.about-img-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-counter-badge-1 {
  position: absolute;
  top: 40px;
  left: -25px;
  background: #ffffff;
  border-radius: 18px;
  padding: 15px 25px;
  box-shadow: 0 15px 35px rgba(120,62,130,0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid #74357c;
  animation: floatSoft 6s ease-in-out infinite;
}
.about-counter-icon-1 {
  width: 45px;
  height: 45px;
  background: rgba(116, 53, 124, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-counter-number-dark {
  font-size: 1.6rem;
  color: #0F172A;
  display: flex;
  align-items: center;
  line-height: 1;
}
.about-counter-label-dark {
  color: #64748B;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}
.about-counter-badge-2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 15px 35px rgba(13,40,93,0.3);
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-counter-icon-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
}
.about-counter-number-light {
  font-size: 1.8rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  line-height: 1;
}
.about-counter-label-light {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}
.about-who-we-are-heading {
  font-weight: 800;
  color: #0B2B5C;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.about-desc-paragraph {
  color: #555;
  line-height: 1.7;
}
.about-stats-flex {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.about-stat-box {
  background: #F5EEF6;
  border-radius: 14px;
  padding: 20px;
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(120,62,130,0.1);
  transition: all 0.3s;
}
.about-stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(120,62,130,0.15);
}
.about-stat-icon-container {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.about-stat-value {
  font-size: 1.8rem;
  color: #783E82;
  display: flex;
  align-items: center;
  line-height: 1;
}
.about-stat-label-text {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
}
.about-impact-section {
  padding: 55px 0;
  background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
}
.about-impact-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}
.about-impact-title-highlight {
  color: #C8A2D6;
}
.about-impact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 15px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-impact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.about-impact-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.about-impact-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-impact-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-values-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0B2B5C;
  margin-top: 8px;
}
.about-value-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.about-value-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #74357c 0%, #0d285d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.about-value-name {
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}
.about-value-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.about-aqf-section {
  padding: 65px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.about-aqf-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0B2B5C;
  margin: 10px 0 20px;
}
.about-aqf-p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-aqf-p-last {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 25px;
}
.about-guides-box {
  background: rgba(116,53,124,0.03);
  border: 1px solid rgba(116,53,124,0.1);
  border-radius: 16px;
  padding: 20px;
}
.about-guides-title {
  font-weight: 800;
  color: #0B2B5C;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-guides-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-guide-link {
  color: #74357c;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about-guide-link:hover {
  text-decoration: underline;
}
.about-btn-wrap {
  margin-top: 12px;
}
.about-compliance-card {
  background: linear-gradient(135deg, #0B2B5C 0%, #783E82 100%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(11,43,92,0.15);
}
.about-compliance-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-compliance-title {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}
.about-compliance-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-compliance-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.about-compliance-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-compliance-step-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.about-cta-section {
  background: linear-gradient(135deg, #F5EEF6, #ffffff);
  padding: 55px 0;
  text-align: center;
}
.about-cta-heading {
  font-weight: 800;
  color: #0B2B5C;
  margin-bottom: 10px;
}
.about-cta-p {
  color: #666;
  max-width: 500px;
  margin: 0 auto 25px;
}
/* ==========================================
   Owl Carousel Premium Nav Button Styling
   ========================================== */
.success-stories-section .owl-carousel .owl-nav,
.destinations-section .owl-carousel .owl-nav,
.partners-section .owl-carousel .owl-nav {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  gap: 8px;
  z-index: 10;
  margin-top: 0;
}

.success-stories-section .owl-carousel .owl-nav button,
.destinations-section .owl-carousel .owl-nav button,
.partners-section .owl-carousel .owl-nav button {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  /* background: linear-gradient(135deg, #74357c 0%, #0d285d 100%) !important; */
  background: #fff !important;
  color: #74357c !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgb(116 53 124 / 20%) !important;
  /* box-shadow: 0 4px 8px rgba(116, 53, 124, 0.15) !important; */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  line-height: 40px !important;
  margin: 0!important;
}

.success-stories-section .owl-carousel .owl-nav button:hover,
.destinations-section .owl-carousel .owl-nav button:hover,
.partners-section .owl-carousel .owl-nav button:hover {
  background: linear-gradient(135deg, #8a3c8b 0%, #0d285d 100%) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(116, 53, 124, 0.4) !important;
  /* border-color: rgba(255, 255, 255, 0.3) !important; */
  color: #fff!important;
}

.success-stories-section .owl-carousel .owl-nav button:active,
.destinations-section .owl-carousel .owl-nav button:active,
.partners-section .owl-carousel .owl-nav button:active {
  transform: scale(0.95) !important;
}

.success-stories-section .owl-carousel .owl-nav button span,
.destinations-section .owl-carousel .owl-nav button span,
.partners-section .owl-carousel .owl-nav button span {
  font-size: 20px !important;
  line-height: 1 !important;
  display: block !important;
  margin-top: -2px !important;
}
.success-stories-section .tab-content{
  margin-top: 70px;
}

/* ===== Offices Page Styles ===== */
.offices-hero {
  background: linear-gradient(135deg, #0B2B5C 0%, #783E82 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.offices-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.offices-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200,162,214,0.05);
  pointer-events: none;
}
.region-header {
  border-bottom: 3px solid var(--ua-purple-light);
  padding-bottom: 15px;
}
.region-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ua-purple-light), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ua-purple);
  border: 1px solid rgba(120,62,130,0.1);
  flex-shrink: 0;
}
.region-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ua-navy);
}
.office-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(120,62,130,0.12);
  border-color: rgba(120,62,130,0.15);
}
.office-card-header {
  padding: 20px 22px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.office-flag {
  font-size: 2rem;
  line-height: 1;
}
.office-city {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ua-navy);
}
.office-card-body {
  padding: 16px 22px 10px;
  flex: 1;
}
.office-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--ua-text-muted);
  line-height: 1.5;
}
.office-info i {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.office-info a {
  color: var(--ua-text-muted);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.office-info a:hover {
  color: var(--ua-purple);
}
.office-card-footer {
  padding: 10px 22px 20px;
}
.global-reach-box {
  background: linear-gradient(135deg, #0B2B5C 0%, #783E82 100%);
  border-radius: 20px;
}
/* Office Details Page */
.office-detail-hero {
  background: linear-gradient(135deg, #0B2B5C 0%, #783E82 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.office-detail-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.office-detail-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}
.office-detail-map {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}
.office-detail-info {
  padding: 35px;
}
.office-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ua-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ua-purple);
  flex-shrink: 0;
}
.country-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.country-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid rgba(120,62,130,0.15);
  background: #fff;
  color: var(--ua-text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.country-btn:hover {
  border-color: var(--ua-purple);
  background: var(--ua-purple-light);
  color: var(--ua-purple);
}
.country-btn.active {
  background: linear-gradient(135deg, #783E82, #0B2B5C);
  color: #fff;
  border-color: transparent;
}
.country-btn .flag {
  margin-right: 6px;
}
.office-detail-hero-flag {
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 8px;
  line-height: 1;
}
.office-hero-quick-info {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 28px;
  display: inline-block;
  min-width: 300px;
}
.quick-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.office-detail-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}
.office-detail-map-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.office-detail-map {
  width: 100%;
  height: 100%;
  border: 0;
}
.office-contact-sidebar {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.contact-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-sidebar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ua-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ua-purple);
  font-size: 1rem;
  flex-shrink: 0;
}
.other-office-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(120,62,130,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.other-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(120,62,130,0.12);
  border-color: rgba(120,62,130,0.2);
}
.country-support-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.country-support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(120,62,130,0.12);
  border-color: rgba(120,62,130,0.2);
}
.country-support-flag {
  font-size: 2rem;
  line-height: 1;
}
.country-support-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ua-navy);
}
.what-we-do-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
  border: 1px solid rgba(120,62,130,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.what-we-do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(120,62,130,0.12);
  border-color: rgba(120,62,130,0.15);
}
.what-we-do-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ua-purple-light), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-color, #783E82);
  margin-bottom: 18px;
  border: 1px solid rgba(120,62,130,0.1);
  transition: all 0.35s ease;
}
.what-we-do-card:hover .what-we-do-icon-wrap {
  background: var(--accent-color, #783E82);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.what-we-do-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ua-navy);
  margin-bottom: 10px;
}
.what-we-do-desc {
  font-size: 0.88rem;
  color: var(--ua-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}
.what-we-do-bottom-bar {
  margin-top: 18px;
  width: 40px;
  height: 3px;
  border-radius: 10px;
  background: var(--accent-color, #783E82);
  opacity: 0.3;
  transition: all 0.35s ease;
}
.what-we-do-card:hover .what-we-do-bottom-bar {
  width: 60px;
  opacity: 0.8;
}
.flags-carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 30px;
}
.flags-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: flagsScroll 30s linear infinite;
}
.flags-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes flagsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
.flags-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px 12px;
  border: 1px solid rgba(120,62,130,0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 110px;
}
.flags-carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(120,62,130,0.12);
  border-color: rgba(120,62,130,0.2);
}
.flags-carousel-img {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.flags-carousel-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ua-navy);
  text-align: center;
}
@media (max-width: 768px) {
  .offices-hero { padding: 60px 0 40px; }
  .office-detail-hero { padding: 60px 0 40px; }
  .office-detail-info { padding: 25px; }
  .office-detail-map { min-height: 280px; }
  .office-detail-map-wrapper { height: 280px; }
  .office-hero-quick-info { min-width: unset; width: 100%; padding: 18px 20px; }
}

/* ==========================================================================
   BootstrapValidator Feedback Icons & Input Field State Design
   ========================================================================== */
.frm-field-bx,
.form-group {
  position: relative;
}

/* Feedback icon positioning inside relative wrappers */
.frm-field-bx .form-control-feedback,
.form-group .form-control-feedback {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 26px;
  height: 26px;
  font-size: 0.85rem;
  pointer-events: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Position feedback icon when input is wrapped in a relative div */
.frm-field-bx > div .form-control-feedback,
.form-group > div .form-control-feedback {
  top: 50%;
  transform: translateY(-50%);
}

/* Offset feedback icon when password eye toggle button is present */
.frm-field-bx:has(#passwordToggle) .form-control-feedback,
#passwordToggle ~ .form-control-feedback,
#loginPassword ~ .form-control-feedback {
  right: 48px !important;
}

/* Valid Check Icon Styling (fa-regular fa-check) */
.form-control-feedback.fa-check,
.form-control-feedback.fa-regular.fa-check {
  color: #10B981 !important;
  background: rgba(16, 185, 129, 0.14);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
  animation: feedbackPopIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Invalid Xmark Icon Styling (fa-regular fa-xmark) */
.form-control-feedback.fa-xmark,
.form-control-feedback.fa-regular.fa-xmark {
  color: #EF4444 !important;
  background: rgba(239, 68, 68, 0.14);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  animation: feedbackPopIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Validating Refresh Spinner Icon */
.form-control-feedback.fa-refresh,
.form-control-feedback.fa-regular.fa-refresh {
  color: #3B82F6 !important;
  background: rgba(59, 130, 246, 0.14);
  animation: spin 1s linear infinite;
}

/* Input Field State Borders & Rings */
.has-success .form-control {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14) !important;
}

.has-error .form-control {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14) !important;
}

/* Error Help Message Text Styling */
.frm-field-bx .help-block,
.form-group .help-block {
  color: #DC2626 !important;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: alertSlideDown 0.2s ease-out;
}

@keyframes feedbackPopIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.4);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

