/*==============================
 Google Font
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap");

/*==============================
 Root Variables
==============================*/
:root {
  --primary: #c04b62;
  --secondary: #472d30;
  --light: #ffebc2;

  --white: #fff;
  --black: #000;

  --text: #666666;
  --heading: #1b1b1b;

  --border: #e5e7eb;

  --transition: 0.4s ease;

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  --gradient: linear-gradient(180deg, #c04b62, #472d30);
}

/*==============================
Reset
==============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Halant", serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

/*==============================
 Topbar
==============================*/

.topbar {
  background: var(--secondary);
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-info,
.right-info {
  display: flex;
  gap: 25px;
  align-items: center;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  color: #fff;
}

.social a:hover {
  color: var(--light);
}

/*==============================
Header
==============================*/

.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* logo here for you  */
/* Logo */

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 120px; /* Desktop */
  height: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
}

/* Responsive */

@media (max-width: 991px) {
  .logo img {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 150px;
  }
}

.menu {
  display: flex;
  gap: 35px;
}

.menu li a {
  color: #222;
  font-size: 17px;
  font-weight: 500;
}

.menu li a:hover {
  color: var(--primary);
}
.menu li {
  position: relative;
  list-style: none;
}

.dropdown {
  position: relative;
}

.dropdown > a i {
  font-size: 12px;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s;
  z-index: 999;
}

.submenu li {
  display: block;
}

.submenu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.submenu li a:hover {
  background: #c04b62;
  color: #fff;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*==============================
 Buttons
==============================*/

.theme-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 34px;
  border-radius: 50px;
  transition: var(--transition);
}

.theme-btn:hover {
  background: var(--secondary);
  color: #fff;
}

.outline-btn {
  display: inline-block;
  margin-left: 15px;
  padding: 15px 34px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  transition: var(--transition);
}

.outline-btn:hover {
  background: var(--primary);
  color: #fff;
}

/*==============================
 Hero
==============================*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/slide1-4daa9b6e.png") center center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

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

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  color: #fff;
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
}

/*==============================
 Mobile Button
==============================*/

.mobile-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

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

@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .menu,
  .theme-btn {
    display: none;
  }

  .mobile-btn {
    display: block;
  }

  .nav-area {
    padding: 18px 0;
  }

  .hero {
    text-align: center;
    min-height: auto;
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .outline-btn {
    margin-left: 10px;
  }

  .hero-image {
    margin-top: 50px;
  }
}
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-cursor {
  mix-blend-mode: difference;
}

.menu a.active {
  color: #ff9800 !important;
}

.theme-btn {
  position: relative;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ==============================================================================================
About pages 
============================*/
/*==========================
ABOUT SECTION
==========================*/

.about-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f9eef1;
  color: #ba3e56;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-tag i {
  font-size: 14px;
}

.about-left h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.about-left h2 span {
  color: #ba3e56;
}

.title-line {
  position: relative;
  width: 220px;
  height: 3px;
  background: #ddd;
  margin: 30px 0;
}

.title-line span {
  position: absolute;
  right: -8px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ba3e56;
}

.about-left p {
  color: #666;

  line-height: 1.9;
  margin-bottom: 22px;
}

.about-left .lead {
  color: #444;
}

.about-left .theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ba3e56;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
  margin-top: 15px;
}

.about-left .theme-btn:hover {
  background: #8d2b43;
  color: #fff;
  transform: translateY(-4px);
}

/*==========================
RIGHT IMAGES
==========================*/

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

.shape-box {
  position: absolute;
  right: 20px;
  top: 70px;
  width: 430px;
  height: 430px;
  border: 6px solid #ba3e56;
  border-radius: 30px;
  z-index: 1;
}

.img-one {
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  z-index: 2;
}

.img-one img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.img-two {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 520px;
  z-index: 3;
}

.img-two img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

/*==========================
DECORATIONS
==========================*/

.about-section::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 70px;
  width: 10px;
  height: 140px;
  background: #ba3e56;
  border-radius: 20px;
  box-shadow: 20px 0 #ba3e56;
  opacity: 0.35;
}

.about-section::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 40px;
  width: 90px;
  height: 10px;
  background: #ba3e56;
  border-radius: 20px;
  box-shadow:
    0 20px #ba3e56,
    35px 0 #ba3e56,
    35px 20px #ba3e56,
    70px 0 #ba3e56,
    70px 20px #ba3e56;
  opacity: 0.35;
}

/*==========================
HOVER
==========================*/

.img-one img,
.img-two img {
  transition: 0.5s;
}

.img-one:hover img,
.img-two:hover img {
  transform: translateY(-8px) scale(1.03);
}
/*. hero banner ka css use hota h  */
/*==========================
ABOUT HERO
==========================*/

.blog-hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: url("../images/allBackground-8d35f342.png") center center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: #ba3e56;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 25px;
}

.breadcrumb-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.breadcrumb-area a {
  color: #ffebc2;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-area span {
  color: #fff;
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 320px;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .about-left {
    text-align: center;
  }

  .title-line {
    margin: 25px auto;
  }

  .about-left h2 {
    font-size: 42px;
  }

  .about-images {
    min-height: 540px;
    margin-top: 50px;
  }

  .img-one {
    width: 380px;
  }

  .img-two {
    width: 400px;
  }

  .shape-box {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 70px 0;
  }

  .about-left h2 {
    font-size: 34px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-images {
    min-height: 420px;
  }

  .img-one {
    position: relative;
    width: 100%;
  }

  .img-two {
    position: relative;
    width: 90%;
    margin: -80px auto 0;
  }

  .shape-box {
    display: none;
  }

  .about-section::before,
  .about-section::after {
    display: none;
  }
}
/*==============================
 WHY CHOOSE US
==============================*/

.wov-choose-section {
  padding: 90px 0;
  background: #fff;
}

.wov-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b2405a;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.wov-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.wov-title span {
  color: #b2405a;
}

.wov-text {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/*==============================
 IMAGE COLLAGE
==============================*/

.wov-gallery-wrap {
  position: relative;
}

.wov-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wov-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 28px;
  transition: 0.4s;
}

.wov-gallery-grid img:hover {
  transform: scale(1.05);
}

.wov-img-three,
.wov-img-four {
  height: 180px !important;
}

/*==============================
 COUNTER
==============================*/

.wov-counter-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 260px;
  background: #b2405a;
  color: #fff;

  text-align: center;
  padding: 35px 20px;

  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.wov-counter-card h2 {
  font-size: 68px;
  margin-bottom: 5px;
  font-weight: 800;
}

.wov-counter-card p {
  font-size: 23px;
  margin-bottom: 15px;
}

.wov-counter-card span {
  font-size: 22px;
  letter-spacing: 5px;
}

/*==============================
 FEATURES
==============================*/

.wov-feature-box {
  display: flex;
  gap: 25px;
  align-items: flex-start;

  padding: 0 0 28px;
  margin-bottom: 28px;

  border-bottom: 1px solid #ddd;
}

.wov-icon {
  width: 72px;
  height: 72px;

  background: #b2405a;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  flex-shrink: 0;
}

.wov-icon i {
  font-size: 28px;
}

.wov-content h4 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.wov-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/*==============================
 HOVER
==============================*/

.wov-feature-box:hover .wov-icon {
  transform: rotate(-8deg);
  transition: 0.35s;
}

.wov-feature-box:hover h4 {
  color: #b2405a;
  transition: 0.3s;
}

/*==============================
 RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .wov-title {
    font-size: 40px;
  }

  .wov-gallery-grid img {
    height: 220px;
  }

  .wov-img-three,
  .wov-img-four {
    height: 160px !important;
  }

  .wov-counter-card {
    width: 220px;
  }

  .wov-counter-card h2 {
    font-size: 55px;
  }

  .wov-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .wov-gallery-grid {
    grid-template-columns: 1fr;
  }

  .wov-gallery-grid img {
    height: 260px;
  }

  .wov-img-three,
  .wov-img-four {
    height: 260px !important;
  }

  .wov-counter-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 25px auto 0;
  }

  .wov-title {
    font-size: 34px;
  }

  .wov-feature-box {
    flex-direction: column;
  }
}
/*=========================
      STATS SECTION
=========================*/

.wov-stats-section {
  padding: 90px 0;
  background: #fff;
}

.wov-stats-card {
  background: #fff;
  border: 2px solid #c94d66;
  border-radius: 28px;

  text-align: center;

  padding: 45px 25px;

  height: 100%;

  transition: 0.35s;
}

.wov-stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.wov-stats-icon {
  width: 85px;
  height: 85px;

  margin: 0 auto 25px;

  background: #fff3f6;
  color: #c94d66;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.wov-stats-icon i {
  font-size: 42px;
}

.wov-stats-card h2 {
  font-size: 64px;
  font-weight: 800;
  color: #111;

  margin-bottom: 15px;
}

.wov-stats-card p {
  font-size: 26px;
  font-weight: 600;

  color: #222;

  line-height: 1.4;

  margin: 0;
}

/*=========================
      RESPONSIVE
=========================*/

@media (max-width: 991px) {
  .wov-stats-card {
    padding: 35px 20px;
  }

  .wov-stats-card h2 {
    font-size: 48px;
  }

  .wov-stats-card p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .wov-stats-section {
    padding: 70px 0;
  }

  .wov-stats-card {
    padding: 30px 20px;
  }

  .wov-stats-card h2 {
    font-size: 42px;
  }

  .wov-stats-card p {
    font-size: 18px;
  }

  .wov-stats-icon {
    width: 70px;
    height: 70px;
  }

  .wov-stats-icon i {
    font-size: 32px;
  }
}
/*=========================================
        WORLD ONE VISA SERVICES
=========================================*/

.wov-services-section {
  padding: 100px 0;
  background: #fff;
}

/*=========================
        Heading
=========================*/

.wov-service-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c84d67;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wov-service-subtitle i {
  font-size: 14px;
}

.wov-service-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.wov-service-title span {
  color: #c84d67;
}

.wov-service-divider {
  width: 180px;
  height: 3px;
  background: #c84d67;
  margin: 0 auto 25px;
  border-radius: 50px;
}

.wov-service-text {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

/*=========================
      Service Card
=========================*/

.wov-service-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  border: 2px solid #f3d7de;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.wov-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

/*=========================
      Service Image
=========================*/

.wov-service-image {
  overflow: hidden;
}

.wov-service-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s ease;
}

.wov-service-card:hover .wov-service-image img {
  transform: scale(1.08);
}

/*=========================
      Content
=========================*/

.wov-service-content {
  padding: 30px;
}

/*=========================
        Icon
=========================*/

.wov-service-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff2f5;
  color: #c84d67;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.wov-service-card:hover .wov-service-icon {
  transform: rotateY(180deg);
}

/*=========================
      Heading
=========================*/

.wov-service-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/*=========================
      Price
=========================*/

.wov-service-card h4 {
  color: #555;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wov-service-card h4 span {
  color: #c84d67;
  font-size: 34px;
  font-weight: 800;
}

/*=========================
      Paragraph
=========================*/

.wov-service-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/*=========================
      Button
=========================*/

.wov-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #c84d67;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}

.wov-service-btn:hover {
  background: #111;
  color: #fff;
}

.wov-service-btn i {
  transition: 0.3s;
}

.wov-service-btn:hover i {
  transform: translateX(6px);
}

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

@media (max-width: 991px) {
  .wov-service-title {
    font-size: 42px;
  }

  .wov-service-card h3 {
    font-size: 26px;
  }

  .wov-service-card h4 span {
    font-size: 30px;
  }

  .wov-service-image img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .wov-services-section {
    padding: 70px 0;
  }

  .wov-service-title {
    font-size: 34px;
  }

  .wov-service-content {
    padding: 25px;
  }

  .wov-service-card h3 {
    font-size: 22px;
  }

  .wov-service-card h4 span {
    font-size: 28px;
  }

  .wov-service-image img {
    height: 200px;
  }

  .wov-service-btn {
    width: 100%;
    justify-content: center;
  }
}
/*=========================================
          WORKFLOW SECTION
=========================================*/

.wov-workflow-section {
  background: #4b3134;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/*-------------------------
      Corner Decoration
-------------------------*/

.wov-workflow-section::before,
.wov-workflow-section::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-top: 6px solid #f7e8c5;
  border-left: 6px solid #f7e8c5;
  top: 30px;
}

.wov-workflow-section::before {
  left: 30px;
}

.wov-workflow-section::after {
  right: 30px;
  transform: rotate(90deg);
}

/*-------------------------
      Heading
-------------------------*/

.wov-workflow-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #f8e6bf;
  font-weight: 600;
  font-size: 15px;

  margin-bottom: 15px;
}

.wov-workflow-title {
  color: #fff;

  font-size: 58px;

  line-height: 1.2;

  font-weight: 800;

  margin-bottom: 25px;
}

.wov-workflow-title span {
  color: #cb506c;
}

.wov-workflow-line {
  width: 180px;
  height: 3px;

  background: #fff;

  margin: 0 auto;

  border-radius: 30px;
}

/*-------------------------
      Cards
-------------------------*/

.wov-workflow-card {
  position: relative;

  background: #fff;

  border: 2px solid #cb506c;

  border-radius: 28px;

  padding: 90px 30px 40px;

  text-align: center;

  height: 100%;

  transition: 0.35s;

  overflow: hidden;
}

.wov-workflow-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/*-------------------------
      Number Badge
-------------------------*/

.wov-workflow-number {
  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 110px;
  height: 78px;

  background: #cb506c;

  color: #fff;

  font-size: 42px;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 20px 20px;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

/*-------------------------
      Content
-------------------------*/

.wov-workflow-card h3 {
  font-size: 30px;

  color: #111;

  font-weight: 700;

  margin-bottom: 20px;

  line-height: 1.3;
}

.wov-small-line {
  width: 80px;
  height: 2px;

  background: #cb506c;

  margin: 0 auto 22px;
}

.wov-workflow-card p {
  color: #666;

  font-size: 16px;

  line-height: 1.8;

  margin: 0;
}

/*-------------------------
      Hover
-------------------------*/

.wov-workflow-card:hover .wov-workflow-number {
  background: #111;

  transition: 0.35s;
}

.wov-workflow-card:hover h3 {
  color: #cb506c;

  transition: 0.35s;
}

/*-------------------------
      Responsive
-------------------------*/

@media (max-width: 991px) {
  .wov-workflow-title {
    font-size: 42px;
  }

  .wov-workflow-card {
    padding: 80px 25px 35px;
  }

  .wov-workflow-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .wov-workflow-section {
    padding: 70px 0;
  }

  .wov-workflow-title {
    font-size: 32px;
  }

  .wov-workflow-number {
    width: 90px;
    height: 65px;

    font-size: 34px;
  }

  .wov-workflow-card {
    padding: 75px 20px 30px;
  }

  .wov-workflow-card h3 {
    font-size: 22px;
  }

  .wov-workflow-section::before,
  .wov-workflow-section::after {
    display: none;
  }
}
/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.wov-testimonial-section {
  padding: 100px 0;
  background: #fff;
}

/*=========================
      Heading
=========================*/

.wov-testimonial-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c84d67;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wov-testimonial-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.wov-testimonial-title span {
  color: #c84d67;
}

.wov-testimonial-divider {
  width: 180px;
  height: 3px;
  background: #4b3134;
  border-radius: 50px;
}

.wov-testimonial-text {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
}

/*=========================
      Navigation
=========================*/

.wov-testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.wov-nav-btn {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #c84d67;
  color: #fff;
  font-size: 18px;
  transition: 0.35s;
}

.wov-nav-btn:hover {
  background: #4b3134;
  transform: translateY(-4px);
}

/*=========================
      Card
=========================*/

.wov-testimonial-card {
  position: relative;
  padding-top: 35px;
}

.wov-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 92%;
  background: #4b3134;
  border-radius: 28px;
}

.wov-card-content {
  position: relative;
  margin: 45px 0 0 50px;
  background: #fff;
  border: 2px solid #c84d67;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.wov-card-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/*=========================
      Quote
=========================*/

.wov-quote {
  font-size: 50px;
  color: #c84d67;
  margin-bottom: 15px;
}

/*=========================
      Rating
=========================*/

.wov-rating {
  margin-bottom: 20px;
}

.wov-rating i {
  color: #c84d67;
  margin-right: 4px;
  font-size: 15px;
}

.wov-card-content p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 25px;
}

.wov-card-content hr {
  margin: 25px 0;
  border-color: #ddd;
}

/*=========================
      Client
=========================*/

.wov-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wov-client img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.wov-client h5 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.wov-client span {
  color: #777;
  font-size: 15px;
}

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

@media (max-width: 991px) {
  .wov-testimonial-title {
    font-size: 42px;
  }

  .wov-testimonial-nav {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .wov-card-content {
    margin: 35px 0 0 35px;
    padding: 28px;
  }

  .wov-client h5 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .wov-testimonial-section {
    padding: 70px 0;
  }

  .wov-testimonial-title {
    font-size: 32px;
  }

  .wov-card-bg {
    width: 100%;
  }

  .wov-card-content {
    margin: 25px 15px 0;
    padding: 25px;
  }

  .wov-nav-btn {
    width: 50px;
    height: 50px;
  }

  .wov-client img {
    width: 55px;
    height: 55px;
  }

  .wov-client h5 {
    font-size: 18px;
  }

  .wov-client span {
    font-size: 14px;
  }
}
/*=========================================
            PREMIUM FOOTER
=========================================*/

.wov-footer {
  position: relative;
  background: #4b3134;
  color: #fff;
  padding: 90px 0 0;
  overflow: hidden;
}

/* Background City Image (Optional) */

.wov-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/whitelogo-1.png") center bottom/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/*========================
      Corner Decoration
========================*/

.wov-footer::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 130px;
  height: 130px;
  border-top: 6px solid #f5e3b5;
  border-left: 6px solid #f5e3b5;
  opacity: 0.9;
}

.wov-footer-logo img {
  max-height: 95px;
  margin-bottom: 30px;
}

.wov-footer-divider {
  width: 100%;
  height: 2px;
  background: #f5e3b5;
  margin: 0 auto 50px;
}

/*========================
        Widget
========================*/

.wov-footer-widget h3 {
  color: #f8e3b0;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.wov-widget-line {
  width: 120px;
  height: 2px;
  background: #f5e3b5;
  margin-bottom: 25px;
}

.wov-footer-widget p {
  color: #f0f0f0;
  line-height: 1.9;
  font-size: 16px;
}

/*========================
        List
========================*/

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

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

.wov-footer-widget ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.wov-footer-widget ul li a i {
  color: #f5e3b5;
  margin-right: 10px;
}

.wov-footer-widget ul li a:hover {
  color: #cb506c;
  padding-left: 8px;
}
/*========================
      Office Timing
========================*/

.wov-office-time {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.wov-office-time li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 15px;
}

.wov-office-time li i {
  color: #f5e3b5;
  font-size: 18px;
  margin-top: 3px;
  min-width: 20px;
}

.wov-office-time li strong {
  color: #fff;
  margin-right: 5px;
}

/*========================
      Social Icons
========================*/

.wov-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.wov-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;
  transition: 0.35s;
}

.wov-social a:hover {
  background: #cb506c;
  border-color: #cb506c;
  transform: translateY(-5px);
}

/*========================
      Newsletter
========================*/

.wov-newsletter {
  position: relative;
  margin-top: 25px;
}

.wov-newsletter input {
  width: 100%;
  height: 65px;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0 80px 0 25px;
  font-size: 16px;
}

.wov-newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;

  width: 53px;
  height: 53px;

  border: none;
  border-radius: 50%;

  background: #cb506c;
  color: #fff;
  font-size: 18px;
  transition: 0.35s;
}

.wov-newsletter button:hover {
  background: #111;
}

/*========================
        Bottom
========================*/

.wov-footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.wov-footer-bottom p {
  margin: 0;
  color: #ddd;
}

.wov-footer-bottom a {
  color: #f5e3b5;
  text-decoration: none;
}

.wov-footer-bottom a:hover {
  color: #cb506c;
}

/*========================
      Hover
=======================yah logo h footer ka =*/

.wov-footer-widget {
  transition: 0.35s;
}

.wov-footer-widget:hover {
  transform: translateY(-6px);
}
.wov-footer-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  text-decoration: none;
}

.wov-footer-logo img {
  width: auto;
  max-width: 300px;
  max-height: 120px;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.wov-footer-logo img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 25px rgba(203, 80, 108, 0.35));
}

/* Divider */

.wov-footer-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #f5e3b5, transparent);
  margin: 0 auto 50px;
}
/*========================
      Responsive
========================*/

@media (max-width: 991px) {
  .wov-footer {
    padding: 70px 0 0;
  }

  .wov-footer-widget h3 {
    font-size: 28px;
  }

  .wov-footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .wov-footer {
    padding: 60px 0 0;
  }

  .wov-footer-logo img {
    max-height: 75px;
  }

  .wov-footer-widget {
    text-align: center;
  }

  .wov-widget-line {
    margin: 0 auto 20px;
  }

  .wov-social {
    justify-content: center;
  }

  .wov-footer-bottom {
    flex-direction: column;
  }
}
/*       ===============================================whatup and call buttons====

=====================================================*/
/*=============================
 Premium Floating Buttons
=============================*/

.wov-call-btn,
.wov-whatsapp-btn {
  position: fixed;

  right: 25px;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 26px;

  color: #fff;

  backdrop-filter: blur(15px);

  overflow: hidden;

  z-index: 99999;

  transition: 0.4s;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.wov-call-btn {
  bottom: 110px;

  background: rgb(192, 75, 98);

  animation: ring 2s infinite;
}

.wov-whatsapp-btn {
  bottom: 30px;

  background: #25d366;

  animation: bounce 2s infinite;
}

.wov-call-btn:hover,
.wov-whatsapp-btn:hover {
  transform: translateY(-8px) scale(1.1);

  color: #fff;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.wov-call-btn i,
.wov-whatsapp-btn i {
  position: relative;

  z-index: 2;
}

/* Ripple */

.wov-call-btn::before,
.wov-whatsapp-btn::before {
  content: "";

  position: absolute;

  width: 0;

  height: 0;

  background: rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  transition: 0.6s;
}

.wov-call-btn:hover::before,
.wov-whatsapp-btn:hover::before {
  width: 180px;

  height: 180px;
}

/* Tooltip */

.wov-tooltip {
  position: absolute;

  right: 80px;

  background: #111;

  color: #fff;

  padding: 8px 15px;

  border-radius: 30px;

  font-size: 13px;

  white-space: nowrap;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;
}

.wov-call-btn:hover .wov-tooltip,
.wov-whatsapp-btn:hover .wov-tooltip {
  opacity: 1;

  visibility: visible;

  right: 90px;
}

/* Ring Animation */

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  2% {
    transform: rotate(12deg);
  }

  4% {
    transform: rotate(-12deg);
  }

  6% {
    transform: rotate(12deg);
  }

  8% {
    transform: rotate(-12deg);
  }

  10% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

/* Bounce */

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Pulse */

.wov-call-btn::after,
.wov-whatsapp-btn::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.5);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);

    opacity: 1;
  }

  100% {
    transform: scale(1.6);

    opacity: 0;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .wov-call-btn,
  .wov-whatsapp-btn {
    width: 58px;

    height: 58px;

    font-size: 22px;

    right: 15px;
  }

  .wov-call-btn {
    bottom: 95px;
  }

  .wov-whatsapp-btn {
    bottom: 20px;
  }

  .wov-tooltip {
    display: none;
  }
}
/* ================================================================
visa Details 
============================================================================*/
/*==============================
Google Font
==============================*/

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: "DM Serif Display", serif;
  color: var(--heading);
}

/*====================================
Hero
====================================*/

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #fff;
  font-size: 58px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 720px;
  margin: auto;
  color: #f3f3f3;
}

.hero-content nav {
  margin-top: 25px;
  color: #fff;
}

.hero-content nav a {
  color: #fff;
}

.hero-content nav span {
  margin: 0 10px;
}

/*====================================
Main
====================================*/

.visa-details {
  padding: 90px 0;
}

.visa-image img {
  border-radius: 28px;
  border: 3px solid var(--primary);
}

.visa-title h2 {
  font-size: 48px;
  margin-bottom: 5px;
}

.visa-title h4 {
  font-size: 34px;
}

.price {
  font-size: 52px;
  font-family: "DM Serif Display", serif;
  color: var(--secondary);
}

.divider {
  width: 100%;
  height: 2px;
  background: #4a2c2c;
  position: relative;
  margin: 18px 0 35px;
}

.divider::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #4a2c2c;
  position: absolute;
  right: 0;
  top: -8px;
  transform: rotate(45deg);
}

.content-box {
  margin-top: 70px;
}

.content-box h2 {
  font-size: 45px;
}

.content-box h2 span {
  font-size: 24px;
  font-weight: 400;
}

.content-box ul {
  margin-top: 35px;
}

.content-box li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.content-box li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.gallery-img {
  border-radius: 24px;
  border: 3px solid var(--primary);
  transition: 0.4s;
}

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

/*====================================
Sidebar
====================================*/

.sidebar-box {
  margin-bottom: 45px;
}

.sidebar-box h3 {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Search */

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 68px;
  border: 2px solid var(--primary);
  border-radius: 45px;
  padding: 0 85px 0 28px;
  outline: none;
}

.search-box button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
}

/* Categories */

.category-list li {
  margin-bottom: 18px;
}

.category-list a {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--primary);
  border-radius: 40px;
  padding: 0 25px;
  color: #222;
  font-size: 21px;
  font-weight: 600;
  transition: 0.35s;
}

.category-list a::after {
  content: "➜";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.category-list a:hover {
  background: var(--primary);
  color: #fff;
}

/* Form */

.sidebar-box form input,
.sidebar-box form select,
.sidebar-box form textarea {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  outline: none;
}

.sidebar-box form button {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 40px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.sidebar-box form button:hover {
  background: #ab3652;
}

/* Tags */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tags a {
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
}

.tags a:hover {
  background: var(--primary);
  color: #fff;
}

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

@media (max-width: 991px) {
  .visa-title {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .price {
    margin-top: 15px;
    font-size: 42px;
  }

  .sidebar-box {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 90px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .visa-title h2 {
    font-size: 34px;
  }

  .visa-title h4 {
    font-size: 24px;
  }

  .content-box h2 {
    font-size: 32px;
  }

  .content-box li {
    font-size: 18px;
  }

  .sidebar-box h3 {
    font-size: 32px;
  }

  .price {
    font-size: 34px;
  }
}
