@font-face {
  font-family: 'Arima Madurai';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url() format('truetype')
}

@font-face {
  font-family: 'Beau Rivage';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url() format('truetype')
}

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url() format('truetype')
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url() format('truetype')
}

@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Arima+Madurai:wght@700&display=swap');

:root {
  --bg: #0b0f1a;
  --text: #e5e7eb;
  --muted: #9aa3b2;
  --surface: rgba(15, 23, 42, 0.85);
  --border: #1f2937;
  --primary: #f97316;
  --primary-600: #ea580c;
  --secondary: #ec4899;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-pink: #ec4899;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.35);
  --section-1-bg: #19398a;
  --section-2-bg: #1b021d;
  --section-separator: inset 0 1px var(--border), inset 0 -1px var(--border);
}

* {
  padding: 0;
  margin: 0
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text)
}
.welcomesection ul{
  list-style:inside disc;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  line-height: 1.25;
  font-family: 'Beau Rivage', cursive;
}

h1 {
  font-size: 2.6rem;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
}

h3 {
  font-size: 1.9rem
}

figure,
h1,
h2,
h3,
h4,
h5,
li,
p,
ul {
  padding: 0;
  margin: 0
}

p {
  line-height: 1.8rem;
  padding-bottom: 15px;
  text-align: justify;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color .2s ease
}

li,
ul {
  list-style-type: none
}

.ptop-7 {
  padding-top: 7rem
}

.section-heading {
  font-family: 'Beau Rivage', cursive;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--text)
}

.xline {
  width: 260px;
  margin: 8px auto 0
}

.xline .bxline {
  height: 4px;
  background-color: var(--primary);
  width: 120px;
  margin: 0 auto;
  border-radius: 999px
}

.xline .txline {
  height: 2px;
  background-color: var(--primary);
  position: relative;
  top: -2px;
  width: 180px;
  margin: 0 auto;
  border-radius: 999px
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--surface);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 100
}

header .mvbutton a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px 0;
  background-color: var(--primary);
  box-shadow: var(--shadow)
}

header .navbar {
  font-family: 'Beau Rivage', cursive;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  z-index: 9;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--text)
}

.navbar.bg-light {
  background-color: transparent !important;
  border-bottom: 1px solid var(--border)
}

.navbar-light .navbar-toggler {
  border-color: var(--border)
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(229,231,235,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar.navbar-light .navbar-brand {
  color: var(--text);
  font-family: 'Beau Rivage', cursive;
  font-size: 1.6rem;
  letter-spacing: .02em
}

.navbar.navbar-light .navbar-nav .nav-link {
  color: var(--text)
}

.navbar.navbar-light .navbar-nav .nav-link:hover,
.navbar.navbar-light .navbar-nav .nav-link:focus {
  color: #fff;
  background-color: var(--primary-600);
  border-radius: 8px
}

.navbar-light .navbar-toggler {
  color: var(--text)
}

header .navbar .navbar-nav>li {
  padding-left: 13px;
  padding-right: 13px
}

header .navbar .navbar-nav>li+li {
  border-left: none
}

header .navbar .navbar-nav>li>a {
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Beau Rivage', cursive;
  font-size: 1.25rem;
  letter-spacing: .02em;
}

header .navbar .navbar-nav>li>a:hover,
header .navbar .navbar-nav>li>a.active {
  color: #fff;
  background-color: var(--primary-600)
}

.mainbanner {
  font-weight: 700;
  background: url('../images/banner1.webp') top/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.mainbanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2,8,23,.25), rgba(2,8,23,.55)),
    linear-gradient(90deg, rgba(249,115,22,.12), rgba(236,72,153,.10));
}

.mainbanner .container {
  position: relative;
  z-index: 1;
}

.mainbanner .details {
  font-family: 'Nunito Sans', sans-serif;
  padding: 2rem 0;
  text-align: center
}

.mainbanner .details .hello {
  font-size: 1rem;
  color: var(--muted)
}

.mainbanner .details .name {
  font-size: 3rem;
  padding: 6px 0;
  font-family: 'Arima Madurai', cursive;
  color: #fff
}

.mainbanner .details .category {
  font-size: 1.1rem;
  padding-bottom: 14px;
  color: var(--muted)
}

.mainbanner .aboutbtn {
  border: 1px solid var(--primary);
  border-radius: 999px;
  background-color: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 10px 24px;
  box-shadow: var(--shadow)
}
.mainbanner p{
  text-align: center;
}

.welcomesection {
  padding-top: 3rem
}

.profiletype {
  padding-top: 3rem
}

.profiletype figure {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.profiletype figcaption {
  text-align: center;
  position: absolute;
  bottom: 20px;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  z-index: 99
}

.profiletype figcaption span {
  background-color: var(--surface);
  width: 100%;
  display: block;
  padding: 10px 0
}

.homeabout {
  padding-top: 5rem
}

.homeabout figure {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.ourprofiles {
  padding-top: 3rem
}

.ourprofiles figure {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.ourservicearea {
  padding-top: 3rem
}

.ourservicearea ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-bottom: 10px;
  text-align: justify;
  list-style: none
}

.ourservicearea ul>li {
  position: relative;
  margin: 5px;
  overflow: hidden
}

.ourservicearea ul>li>a {
  color: var(--text);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 8px 14px;
  font-size: 1.05rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  transition: all .2s ease
}

.ourservicearea ul>li>a:hover {
  border-color: var(--primary);
  background: rgba(234,88,12,.18);
  color: #fff
}

.ourservicearea ul li:nth-child(n+1) {
  flex-grow: 1
}

.searchkeywords {
  padding-top: 3rem;
  padding-bottom: 2rem
}

.searchkeywords ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-bottom: 10px;
  text-align: justify;
  list-style: none
}

.searchkeywords ul>li {
  position: relative;
  margin: 5px;
  overflow: hidden
}

.searchkeywords ul>li>a {
  color: var(--text);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  transition: all .2s ease
}

.searchkeywords ul li:nth-child(n+1) {
  flex-grow: 1
}

.searchkeywords ul>li>a:hover {
  border-color: var(--secondary);
  background: rgba(236,72,153,.15);
  color: #fff
}

article h1,
article h2,
article h3,
article h4 {
  font-family: 'Beau Rivage', cursive
}

article strong {
  color: var(--primary)
}

footer {
  font-size: .9rem;
  background-color: var(--surface);
  padding-top: 2rem;
  padding-bottom: 3rem;
  color: var(--text);
  border-top: 1px solid var(--border)
}

footer a {
  color: var(--primary);
  transition: color .2s ease
}

footer a:hover {
  color: #38bdf8
}

footer .container {
  padding-top: .5rem;
  padding-bottom: .5rem
}

footer .row {
  align-items: center;
  row-gap: .5rem
}

footer .col-md-6 {
  padding: 6px 0
}

.page-gallery figure {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.page-rates table {
  border: 1px solid var(--border);
  color: var(--text);
  width: 100%;
  margin-bottom: 2rem
}

.page-rates table tr>td,
.page-rates table tr>th {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border)
}

.page-contactme .contacme {
  margin-bottom: 2rem
}

.page-contactme .contacme .citems {
  padding: 16px;
  border: 1px solid var(--border);
  text-align: center;
  background-color: rgba(14,165,233,.15);
  border-radius: 12px
}

.page-contactme .contacme .citems>a {
  color: var(--primary)
}

.page-blogs a {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 16px 0;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: rgba(124,58,237,.12);
  color: #fff;
  border-radius: 12px
}

.page-blog {
  padding-top: 7rem
}

.page-blog p {
  text-align: justify
}

.page-aboutus figure,
.page-blog figure {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.page-blog .keywordsidebar {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

.page-blog .keywordsidebar .section-heading {
  background-color: var(--surface);
  font-size: 1.6rem;
  padding: 8px 12px
}

.page-blog .keywordsidebar ul>li {
  margin: 5px
}

.page-blog .keywordsidebar ul>li>a {
  padding: 8px 12px;
  display: inline-block;
  border: 1px solid var(--border);
  width: 100%;
  background-color: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 8px
}

.page-hotel .hotels {
  border: 1px solid var(--border);
  height: 650px;
  overflow-y: scroll;
  scrollbar-width: thin
}

.page-hotel .hotels .section-heading {
  background-color: var(--surface);
  font-size: 1.6rem;
  padding: 8px 12px
}

.page-hotel .hotels ul>li {
  margin: 5px
}

.page-hotel .hotels ul>li>a {
  padding: 8px 12px;
  display: inline-block;
  border: 1px solid var(--border);
  width: 100%;
  background-color: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 8px
}

.outcallhotels {
  padding-top: 1rem;
  padding-bottom: 2rem
}

.outcallhotels ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-bottom: 10px;
  text-align: justify;
  list-style: none
}

.outcallhotels ul>li {
  position: relative;
  margin: 5px;
  overflow: hidden
}

.outcallhotels ul>li>a {
  color: var(--text);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  transition: all .2s ease
}

.outcallhotels ul li:nth-child(n+1) {
  flex-grow: 1
}

.callingbtn {
  position: fixed;
  bottom: 50px;
  right: 5px;
  width: 68px;
  height: 120px;
  display: none
}

.callingbtn a {
  border-radius: 50px;
  box-shadow: var(--shadow)
}

.callingbtn .whatsappbtn {
  background-color: #4cb762;
  padding: 20px 18px
}

.callingbtn .callbtn {
  background-color: #0b1279;
  padding: 18px 18px;
  bottom: 0;
  position: absolute;
  right: 0
}

@media (max-width:576px) {
  header .navbar {
    padding-top: 8px;
    padding-bottom: 8px
  }

  header .navbar .navbar-nav {
    background-color: transparent
  }

  .navbar.navbar-light .navbar-collapse {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
  }

  header .navbar .navbar-nav>li {
    text-align: center
  }

  header .navbar .navbar-nav>li+li {
    border-left: none
  }

  header .navbar .weblogo {
    transform: scale(.8)
  }

  .section-heading {
    font-size: 2rem
  }

  .xline {
    width: 200px;
    margin: 0 auto
  }

  .xline .bxline {
    height: 8px;
    background-color: #fff;
    width: 60px;
    margin: 0 auto
  }

  .xline .txline {
    height: 3px;
    background-color: #fff;
    position: relative;
    top: -5px
  }

  .navbar .navbar-nav {
    margin: 12px 0
  }

  .navbar .navbar-brand {
    font-size: 1.4rem
  }
}

  .callingbtn {
    display: block;
    z-index: 9999
  }


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: rgba(31,41,55,.8);
  box-shadow: var(--shadow);
  transition: background-color .2s ease, transform .2s ease;
}

.whatsapp-button img {
  width: 64px;
  height: 64px;
  border-radius: 10%;
}

.whatsapp-button:hover {
  background-color: #22c55e;
  transform: translateY(-2px)
}

.call-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: rgba(31,41,55,.8);
  box-shadow: var(--shadow);
  transition: background-color .2s ease, transform .2s ease;
}

.call-button img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.call-button:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px)
}

/* Outer dark background */

.pricingsection {
  padding-top: 40px;
}

/* Grid layout */
.price-grid {
  width: 100%;
  /* mobile default */
}

/* Tablet layout */
@media (min-width: 700px) {
  .price-grid {}
}

/* Desktop layout */
@media (min-width: 992px) {
  .price-grid {}
}

/* Card */
.price-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  min-height: 360px;
  box-shadow: 0 6px 18px rgba(12, 18, 30, 0.18);
  transition: all 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 18, 30, 0.24);
}

/* Header: icon + price */
.price-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Icon box */
.price-header i {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.price-header i img {
  background: var(--primary);
  border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
  padding: 8px;
  height: 60px;
  display: flex;
  width: 60px;
}

/* Price text */
.price-header h5 {
  color: var(--primary);
  font-size: 30px;
}

.price-header h5 span {
  color: var(--muted);
  font-size: 20px;
}

/* List */
.price-list {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.price-list li i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

/* check icon */
.price-list li i.fa-check-circle-o {
  color: #2ecc71;
}

/* cross icon */
.price-list li i.fa-times-circle-o {
  color: #e74c3c;
  opacity: 0.7;
}

.price-list li .fa {
  padding-right: 12px;
  font-size: 20px;
}

.price-list li .fa-check-circle-o {
  color: #018003;
}

.price-list li .fa-times-circle-o {
  color: #ff0100;
}

.price-list li {
  padding: 8px 0px;
  border-bottom: dotted 1px #b7b7b7;
}

/* Rotate image max 10 degrees continuously on hover */
.price-card:hover .price-header i img {
  animation: rotate10deg 1.6s ease-in-out infinite;
}

/* Keyframes for +/- 10 degree rotation */
@keyframes rotate10deg {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Main box */


.profile-box {
  display: flex;
  flex-direction: column;
  /* mobile */
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image box */


.profile-img img {
  width: 150px;
  /* control image size here */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Content */
/* Content section */
.profile-content {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.profile-content h3 {
  margin: 0 0 8px;
  font-size: 30px;
  color: var(--primary);
}

.profile-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.4;
  text-align: justify;
}

.profile-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.profile-btn:hover {
  color: #fff;
  background: var(--primary-600);
}


/* DESKTOP MODE */
@media (min-width: 768px) {
.profile-content h3 {
  text-align: left;
}
.mainbanner{
    min-height:70vh;
}
  .profile-box {
    flex-direction: row;
    /* side by side */
    align-items: center;
    gap: 20px;
    /* space between image & content */
  }

  .profile-img {
    max-width: 50%;
    flex: 0 0 auto;
    /* image width stays fixed, no stretch */
  }

  .profile-content {
    flex: 1;
    /* take remaining full width */
    margin-top: 0;
  }
}
.welcomesection,

.pricingsection,
.homeabout,
.content1,
article,
.bg1
 {
  background: var(--section-1-bg);
  box-shadow: var(--section-separator);
  padding: 3rem 0;
  color: var(--text)
}
.content1 h3{
  text-align: left;
}
.profiles-section,
.profiletype,
.ourprofiles,
.ourservicearea,
.searchkeywords,
.outcallhotels,
.bg2 {
  background: var(--section-2-bg);
  box-shadow: var(--section-separator);
  padding: 3rem 0;
  color: var(--text)
}

.welcomesection .section-heading,
.profiletype .section-heading,
.ourprofiles .section-heading,
.searchkeywords .section-heading,
article .section-heading,
.profiles-section .section-heading,
.pricingsection .section-heading,
.homeabout .section-heading,
.ourservicearea .section-heading,
.outcallhotels .section-heading {
  color: #fff
}

.welcomesection a,
.profiletype a,
.ourprofiles a,
.searchkeywords a,
article a,
.profiles-section a,
.pricingsection a,
.homeabout a,
.ourservicearea a,
.outcallhotels a {
  color: var(--primary)
}
a.profile-btn{
  color: #fff;
}
.ourservicearea a{
  border: 1px solid var(--primary);
}
.welcomesection a:hover,
.profiletype a:hover,
.ourprofiles a:hover,
.searchkeywords a:hover,
article a:hover,
.profiles-section a:hover,
.pricingsection a:hover,
.homeabout a:hover,
.ourservicearea a:hover,
.outcallhotels a:hover {
  color: var(--primary-600)
}
a.profile-btn:hover{
  color: #fff;
}
.welcomesection ul li, .contnt1 ul li, .contnt2 ul li, .content1 ul, .welcomesection ul{
  list-style-type: disc !important;
  list-style-position: inside !important;
}
