
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Playfair Display', serif; */
}

:root {
  --red: #0A192F;
  --black: #000;
  --white: #fff;
  --pink: #fdf5f7f2;
   --primary-dark: #0A192F;
    --gold-bright: #F0E68C;
    --gold-dark: #D4AF37;
    --text-white: #F5F5F5;
    --glass-bg: rgba(255, 255, 255, 0.03);
     --glass: rgba(255, 255, 255, 0.05);
    --text-main: #F5F5F5;
    --gold-grad: linear-gradient(45deg, #D4AF37, #F0E68C);
}

.button-whatsapp {
  position: fixed;
  background: rgb(21, 156, 21);
  bottom: 30px;
  right: 50px;
  padding: 12px 15px;
  border-radius: 70%;
  z-index: 99;
  transition: all ease 0.5s;
  animation: buzz 0.4s infinite alternate-reverse;
}

.button-whatsapp i {
  font-size: 40px;
  color: #fff;
  transition: all ease 0.5s;
}

/* ---header- */
header {
  width: 100%;
}

header .top-header {
  background-color: #0A192F;
  padding: 10px;
  height: 45px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

header .top-header .left-top-header {
  display: flex;
  width: 70%;
}

header .top-header .left-top-header {
  padding: 0 0 0 50px;
  gap: 40px;
}

header .top-header .right-top-header {
  justify-content: end;
  gap: 45px;
  padding: 0 50px 0 0;
  width: 30%;
  display: flex;
}

.top-contact-phone,
.top-contact-location,
.top-contact-whatsapp {
  color: var(--white);
  display: flex;

  gap: 12px;
}
.top-contact-phone .icon-text p a,
.top-contact-location .icon-text p a,
.top-contact-whatsapp .icon-text p a{
    color: #fff;
    text-decoration: none;
}

/*.whatsapp {*/
/*  background: rgb(21, 156, 21);*/
/*  border-radius: 20px;*/
/*  font-size: 15px;*/
/*  padding: 4px 3px;*/
/*  width: 18%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  animation: buzz 0.4s infinite alternate-reverse;*/
/*}*/

 .whatsapp i {
  color: var(--white);
  background: rgb(21, 156, 21);
  padding: 11px 13px;
  font-size: 1.7rem;
  position: fixed;
  bottom: 35px;
  z-index: 99;
  right: 40px;
  border-radius: 50%;
  animation: buzz 0.4s infinite alternate-reverse;
  /* margin: 0 !important; */
}
.phone i {
  color: #fff;
  background: #0A192F;
  padding: 11px 13px;
  font-size: 1.7rem;
  position: fixed;
  bottom: 35px;
  z-index: 99;
  left: 40px;
  border-radius: 50%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  animation: buzz 0.4s infinite alternate-reverse;
}

@keyframes buzz {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.whatsapp .icon,
.whatsapp .icon-text {
  margin-top: -2px;
}

.right-top-social-links {
  display: flex;
  gap: 20px;
}

.right-top-social-links i {
  font-size: 1rem;
  background: var(--white);
  padding: 5px;
  color: #0A192F;
  border-radius: 25px;
  transition: all ease 0.5s;
}

.right-top-social-links i:hover {
  margin-top: -2px;
  background: #0A192F;
  color: var(--white);
}

.main-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.main-header .left-main-header {
  margin: 0 0 0 20px;
  width: 40%;
}

.left-main-header .main-header-logo {
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  height: 100px;
}

.left-main-header .main-header-logo img {
  width: 100%;
}

.right-main-header {
  width: 70%;
  padding: 20px;
}

.right-main-header .main-header-links {
  display: flex;
  height: 100%;
  gap: 40px;
  justify-content: end;
  margin: 0 40px 0 0;
  align-items: center;
}

.right-main-header .main-header-links li {
  list-style: none;
}

.right-main-header .main-header-links li a {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 600;
  transition: all ease 0.2s;
  position: relative;
  text-decoration: none;
}

.right-main-header .main-header-links li a::before {
  content: "";
  position: absolute;
  background: #0A192F;
  height: 2px;
  width: 0px;
  transition: all ease 0.5s;
  bottom: -5px;
}

.right-main-header .main-header-links li a:hover::before {
  width: 45px;
  color: #0A192F;
}

#header-contact {
  background: #0A192F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
}

#header-contact:hover::before {
  width: 0px;
}

.ham-menu {
  display: none;
}

.hamburger {
  display: flex;
  width: 5%;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.hamburger i {
  font-size: 30px;
}

.active{
  display: block !important;
}
/* ------hero----- */

#hero-banner {
  width: 100%;
  position: relative;
}

#hero-banner .banner {
  width: 100%;
  height: 500px;
  position: relative;
}

#hero-banner .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-banner .banner::before {
  content: "";
  position: absolute;
  height: 500px;
  width: 100%;
  background: rgb(25, 25, 25);
  opacity: 0.75;
  top: 0;
}

.banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  width: 100%;
  height: 500px;
}

.banner-text .banner-title h1 {
  font-size: 45px;
  font-weight: 600;
  color: var(--white);
}

.banner-text .banner-title h1 span {
  color: var(--gold-dark);
}

.banner-text .banner-para {
  width: 60%;
  text-align: center;
  padding-top: 15px;
  font-size: 15px;
}

.banner-text .banner-para p {
  color: var(--white);
}

.all-btn {
  padding-top: 20px;
}

.all-btn button {
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--gold-dark);
  border: none;
  position: relative;
  color: var(--primary-dark);
}

.all-btn button a {
  color: var(--primary-dark);
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
}

/* ---about--- */

#about {
  width: 100%;
  background: #F5F5F5;
  padding: 20px 0;
}

#about .about-box {
  padding: 10px;
  width: 100%;
}

.about-video {
  width: 100%;
  height: 400px;
  margin-top: -10px;
}

.about-video video {
  width: 100%;
  height: 100%;
}

.about-right-content .about-title {
  padding: 5px 0;
}

.about-right-content .about-title h2 {
  font-size: 35px;
}

.about-right-content .about-title h2 span {
  color: #0A192F;
  font-weight: bold;
}

.about-right-content .about-desc {
  padding: 10px 0;
}

.about-right-content .about-desc p {
  text-align: justify;
}

/* ----profile-- */

#profiles {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../images/banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  padding: 20px;
  /* padding-bottom: 0; */
  overflow: hidden;
}

#profiles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.875);
  z-index: 1;
}

#profiles>* {
  position: relative;
  z-index: 2;
}

#profiles .profiles-title {
  padding: 5px 0;
  text-transform: uppercase;
}

#profiles .profiles-title h3 {
  font-size: 30px;
  font-weight: 600;
}

#profiles .profiles-title h3 span {
  color: #0A192F;
  text-decoration: underline var(--gold-dark);
  text-underline-offset: 5px;
}

.profile-carousel {
  margin: 30px 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-carousel-images {
  display: flex;
  width: calc(100% * 11 / 4); /* totalSlides / slidesToShow */
}

.profile-card {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 7.5px;
}

.profile-card .profile-card-name {
  background: #0A192F;
  width: 100%;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.profile-card .profile-card-name p {
  color: var(--white);
  text-align: center;
  padding-top: 10px;
}

.profile-carousel-images img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ----dream--- */

#dream {
  width: 100%;
  margin: 30px 0 0 0;
}

#dream .dream-title {
  text-align: center;
}

#dream .dream-title h3 {
  font-size: 30px;
  font-weight: 700;
}

#dream .dream-title h3 span {
  color: #0A192F;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.dream-box {
  padding: 20px 0;
}

.dream-box .dream-text {
  padding: 10px 0;
}

.dream-box .dream-text p {
  text-align: justify;
}

/* ---service--- */

#services {
  width: 100%;
  background: #ffff;
  padding: 40px 20px;
  margin:  0;
}

#services .service-title {
  text-align: center;
}

#services .service-title h3 {
  font-size: 35px;
  font-weight: 600;
  color: #0A192F;
  text-decoration: underline;
  text-underline-offset: 5px;
}

#services .service-box {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 1px 1px 6px -2px;
  background: #ffffff2b;
  border-radius: 10px;
  height: 290px;
}

.service-box .service-box-title {
  text-align: center;
}

.service-box .service-box-title h3 {
  font-size: 25px;
  color: #0A192F;
  font-weight: 700;
}

.service-box .service-box-desc {
  text-align: center;
  padding-top: 15px;
}

.service-box .service-box-button {
  text-align: center;
  padding-top: 15px;
}

.service-box .service-box-button button {
  padding: 8px 12px;
}

/* ---high-profile--  */

#high-profile {
  width: 100%;
  margin: 30px 0 0 0;
}

#high-profile .high-profile-title {
  text-align: center;
}

#high-profile .high-profile-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-dark);
}

#high-profile h3 span {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.high-profile-desc {
  padding: 20px 0;
}

.high-profile-desc h3 {
  font-size: 25px;
  font-weight: 600;
}

#high-profile p {
  padding: 10px 0 0 0;
  text-align: justify;
}

/* ----pricing-- */

#pricing {
  width: 100%;
}

#pricing .pricing-title {
  text-align: center;
}

#pricing .pricing-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-dark);
}

#pricing h3 span {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

#pricing .pricing-desc p {
  padding: 10px 0 0 0;
  text-align: justify;
}

.pricing-table {
  width: 100%;
  margin: 20px 0 0 0;
}

.pricing-table table {
  width: 100%;
  border: 1px solid #ccc;
}

.pricing-table table thead tr th {
  border: 1px solid #d4d4d4;
  background: #0A192F;
  color: #fff;
}

.pricing-table table tr th {
  padding: 10px;
}

.pricing-table table tbody tr td {
  border: 1px solid #ccc;
  padding: 4px 0 3px 10px;
}

.pricing-table table tbody tr:nth-child(even) {
  background: rgba(241, 186, 7, 0.201);
}

/* =====long-content==== */

.long-content {
  width: 100%;
  margin: 20px 0;
}

.long-content-details h3 {
  font-weight: 600;
}

.long-content-details p {
  text-align: justify;
}

/* ---cta-- */

.cta {
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.cta .cta-bg {
  width: 100%;
  height: 150px;
  position: relative;
}

.cta .cta-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cta .cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0A192F;
  opacity: 0.8;
}

.cta .cta-text {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.cta-box {
  width: 100%;
  padding: 20px 0;
}

.cta-box h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.cta-box p {
  color: #fff;
}

.cta-button {
  text-align: right;
}

.cta-text button {
  background: rgb(21, 156, 21);
  animation: buzz 0.4s infinite alternate-reverse;
  color: #fff !important;
}
.cta-text button a{
  color: #fff;
}

.cta-text button i {
  padding-right: 10px;
  font-size: 18px;
}

/* ==choose==== */

#choose {
  width: 100%;
  margin: 20px 0 20px 0;
}

.choose-box {
  padding: 20px 0;
}

.choose-title h3 {
  font-size: 30px;
  font-weight: 700;
}

.choose-title h3 span {
  color: #0A192F;
}

.choose-content {
  padding-top: 20px;
}

.choose-image {
  width: 100%;
  height: 500px;
}

.choose-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

/* ---faq--- */

#faq {
  margin: 20px 0;
  width: 100%;
}

.faq-title {
  text-align: center;
}

.faq-title h3 {
  font-style: 30px;
  font-weight: 600;
}

.faq-title h3 span {
  color: #0A192F;
}

.accordion {
  margin: 30px 0;
}

.accordion-button {
  font-weight: 700;
  background: #0A192F;
  color: #fff;
}

/* ----------city----------- */

#explore {
  width: 100%;
  margin: 20px 0;
}

.explore-title {
  text-align: center;
  padding: 20px 0;
}

.explore-title h3 {
  font-size: 30px;
  font-weight:600;
}

.cities-box {
  padding: 20px 15px;
  border-top: 1px solid #ccc;
  background: rgba(241, 186, 7, 0.201);
}

.cities-box p {
  margin-top: -10px;
  border-bottom: 1px solid #ccc;
}

.cities-box p i {
  color: #0A192F;
  padding-right: 10px;
}

/* ===================about-page============== */

#breadcrums {
  width: 100%;
  position: relative;
}

#breadcrums .breadcrums-hero {
  width: 100%;
  height: 400px;
  position: relative;
}

#breadcrums .breadcrums-hero::before {
  content: "";
  position: absolute;
  height: 400px;
  width: 100%;
  background: rgb(25, 25, 25);
  opacity: 0.75;
  top: 0;
  left: 0;
}

#breadcrums .breadcrums-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrums-banner-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}

.breadcrums-banner-text .breadcrums-banner-heading h1 {
  font-size: 45px;
  font-weight: 600;
  color: var(--white);
}

.breadcrums-banner-text .breadcrums-banner-heading p {
  color: #fff;
  text-align: center;
}

.breadcrums-banner-text .breadcrums-banner-heading p a {
  font-weight: 800;
  color: #fdf5f7f2;
  text-decoration: none;
}

/* ---about-content-- */

.about-content {
  width: 100%;
  margin: 30px 0 0 0;
}

.about-content-title {
  text-align: left;
}

.about-content-title h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-dark);
}

.about-content-title h2 span {
  color: var(--gold-dark);
}

.about-content-desc {
  padding: 20px 0;
}

.about-content-desc p {
  text-align: justify;
}

/* ===========about-points-content----- */

.points-content {
  width: 100%;
  margin: 20px 0;
}

.points-content .point-heading {
  text-align: left;
  padding: 5px 0;
}

.points-content .point-heading h3 {
  font-size: 30px;
  font-weight: 700;
}

.points-content .point-heading h3 span {
  color: #0A192F;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.point-short-content {
  padding: 5px 0;
}

.point-short-content p {
  text-align: justify;
}

.point-content {
  text-align: justify;
}

.point-box {
  padding: 20px 10px;
  border: 1px solid #ccc;
}

.point-bg {
  background: #fdf5f7f2;
  padding: 20px 0;
}

/* =======gallery page========= */

#gallery {
  width: 100%;
  margin: 30px 0;
}

.gallery-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}

.gallery-title h2 {
  font-size: 30px;
  font-weight: 600;
}

.gallery-title h2 span {
  color: #0A192F;
}

.gallery-title p {
  padding: 10px 0;
  width: 80%;
}

/* =========gallery-models== */

.gallery-model {
  width: 100%;
  margin: 30px 0 20px 0;
}

.gallery-model-image-box {
  padding: 20px;
}

.gallery-wrapper {
  border: 1px solid #ccc;
  box-shadow: 1px 1px 5px 2px #ccc;
  padding: 10px;
}

.gallery-main-image {
  width: 100%;
  height: 400px;
  text-align: center;
}

.gallery-main-image img {
  width: 70%;
  height: 100%;
}

.gallery-model-name {
  text-align: left;
}

.gallery-model-name h4 {
  font-size: 30px;
  font-weight: 600;
  color: #0A192F;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.gallery-model-details {
  padding: 20px 0 0 0;
}

.gallery-model-more-image {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  width: 150px;
  height: 150px;
}

.gallery-model-more-image img {
  height: 100%;
  width: 100%;
  cursor: pointer;
}

/* ===========service-page======== */

#services {
  width: 100%;
}

.service-head {
  text-align: center;
}

.service-head h2 {
  font-style: 30px;
  font-weight: 700;
}

.service-box {
  padding: 20px;
}

.service-desc {
  padding: 20px 10px;
  text-align: center;
}

.service-page .service-box{
    height: 250px !important;
}
/* ------contact-page----- */

#contact {
  width: 100%;
  margin: 30px 0;
}

.contact-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title h2 {
  font-style: 35px;
  font-weight: 600;
  color: #0A192F;
}

.contact-title p {
  text-align: center;
  width: 80%;
}

.contact-box {
  margin-top: 30px;
  padding: 20px;
}

.right-contact-box {
  background: var(--primary-dark);
}

.contact-box-title {
  text-align: left;
  padding: 10px 0;
}

.contact-box-title h3 {
  font-style: 25px;
  font-weight: 600;
  text-decoration: 2px underline dotted var(--gold-dark);
  text-underline-offset: 5px;
  color: #fff;
}

.contact-box-title p {
  padding: 20px 0;
  color: #fff;
}

.contact-info {
  margin-top: 10px;
  padding: 20px 0 0 0;
}

.contact-info .phone,
.contact-info .email,
.contact-info .location {
  display: flex;
  gap: 15px;
 
}

.contact-info .phone .icon-text p a,
.contact-info .email .icon-text p a,
.contact-info .location .icon-text p a{
    color: #fff;
    text-decoration: none;
}

.contact-info .phone .icon-text p a:hover,
.contact-info .email .icon-text p a:hover,
.contact-info .location .icon-text p a:hover{
    color: var(--gold-dark);
}

.contact-info .icon i {
  font-size: 20px;
  color: #fff;
}

.contact-info .icon-text p {
  font-style: 20px;
  font-weight: 600;
  color: #fff;
}

.contact-social {
  margin: 30px 0;
  display: flex;
  gap: 20px;
}

.contact-social a {
  color: #fff;
  transition: all ease 0.4s;
}

.contact-social i {
  background: #fff;
  color: var(--primary-dark);
  padding: 10px;
  border-radius: 50%;
  transition: all ease 0.4s;
  margin-top: -2px;
  animation: buzz 0.4s infinite alternate-reverse;
}

.contact-social i:hover {
  background: var(--primary-dark);
  color: #fff;
}

.contact-social i:hover>a {
  color: #0A192F;
}

.form {
  width: 100%;

}

.form-box {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.first-group,
.second-group {
  display: flex;
  gap: 30px;
  width: 100%;
}

.name,
.phone,
.email,
.location {
  width: 50%;
}

.form .submit button {
  color: #fff;
}

.form input,
textarea {
  width: 100%;
  padding: 5px 8px;
}

.form textarea {
  height: 150px;
}

.form label {
  font-size: 15px;
  margin-top: 10px;
}

/* ------footer------ */

footer {
  background: var(--primary-dark);
  padding: 40px 0 40px 0;
}

.footer-box {
  padding: 20px 0;
}

.footer-box .footer-logo {
  width: 70%;
}

.footer-box .footer-logo img {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
}

.footer-box .footer-details {
  padding: 10px 0;
}

.footer-box .footer-details p {
  font-size: 15px;
  color: #fff;
}

.footer-box .footer-title {
  color: var(--gold-dark);
}

.footer-box .footer-title h4 {
  font-weight:600;
}


.footer-links {

  padding-top: 10px;
}

.footer-links ul{
  margin-left: -28px;
}

.footer-links ul li {
  list-style: none;
  padding: 5px 0;
}
.footer-links ul li i{
  color: #fff;
  margin-right: 10px;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all ease 0.5s;
}

.footer-links ul li a:hover {
  color: var(--gold-dark);
  margin-left: 4px;
}

.footer-contact {
  margin: 20px 0 20px 0;
}

.footer-contact .ftr-phone,
.footer-contact .ftr-email {
  display: flex;
  gap: 10px;
}
.ftr-icon i{
  color: #fff;
}

.footer-social-link {
  margin: 15px 0 0 0;
  display: flex;
  gap: 20px;
}

.footer-social-link i {
  font-size: 1rem;
  background: var(--gold-dark);
  padding: 5px;
  color: #0A192F;
  border-radius: 25px;
  transition: all ease 0.5s;
  animation: buzz 0.3s infinite alternate-reverse;
}

.footer-social-link i:hover {
  margin-top: -2px;
  background: #fff;
  color: var(--primary-dark);
}

.ftr-icon-text p a{
    text-decoration: none;
    color: #fff;
}
.ftr-icon-text p a:hover{
    color: var(--gold-dark);
}
.footer-copy {
  background: #fff;
  width: 100%;
  padding: 7px 0;
  height: 50px;
}

.footer-copy p {
  color: var(--primary-dark);
  text-align: center;
}

.footer-copy p a {
  color: #fdf5f7f2;
  text-decoration: none;
  font-weight: 800;
}



/* ============media query======= */

@media screen and (max-width: 1300px) {
  .whatsapp {
    width: 23%;
  }
}

@media screen and (max-width: 1024px) {
  .whatsapp {
    width: 30%;
  }

  .right-main-header {
    width: 100%;
    padding: 20px;
  }

  .left-main-header .main-header-logo {
    width: 64%;
    padding: 5px;
  }
}

@media screen and (max-width: 768px) {
  .main-header{
    position: relative;
  }
  .right-main-header {
    display: none;
    position: absolute;
    top: 80% !important;
    left: -20px;
    width: 100%;
  }
    .right-main-header .main-header-links {
    display: block;
    background: var(--white);
    z-index: 999;
    height: auto;
    width: 100%;
    position: absolute;
  }
  #header-contact{
    background: transparent;
    color: #000;
    padding-left: 0;
    padding-right: 0;
  }
  .right-main-header .main-header-links li {
    list-style: none;
    padding: 10px 15px;
    text-align: right;
}

  .ham-menu {
    display: block;
  }

  header .top-header .left-top-header {
    width: 100%;
    padding: 0;
    gap: 30px;
  }

  header .top-header .right-top-header {
    display: none;
  }

  .left-main-header .main-header-logo {
    width: 100%;
    padding: 5px;
  }

  .profile-card {
    flex: 0 0 75%;
  }

  .banner-text {
    text-align: center;
  }

  .banner-text .banner-para {
    width: 92%;

  }

  .cta-box {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .cta-button {
    text-align: center;
  }

  .cta .cta-bg {
    width: 100%;
    height: 200px;
    position: relative;
  }

 

  .whatsapp {
    width: 38%;
  }
  .banner-text .banner-title h1 {
    font-size: 36px;
  }
  .gallery-model-more-image {
    display: flex;
    gap: 6px;
    margin-top: 30px;
    width: 112px;
    height: 129px;
}
}


@media screen and (max-width: 500px) {
  .top-header{
    display: none !important;
  }
  .gallery-model-more-image {
    display: flex;
    gap: 6px;
    margin-top: 30px;
    width: 86px;
    height: 108px;
    margin-left: -15px;
  }

  #breadcrums .breadcrums-hero {
    width: 100%;
    height: 219px;
  }

  #breadcrums .breadcrums-hero:before {
    width: 100%;
    height: 219px;
  }

  .breadcrums-banner-text {
    height: 219px;
  }
  .service-page .service-box{
    height: auto !important;
}
  #services .service-box{
    height: auto !important;
}
}

.abt-cont{
  background-color: var(--primary-dark);
  width: 100%;
  padding: 50px 0;
}
.elite-container {
  
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: var(--glass-bg);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }

  .video-wrapper {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  }

  .video-wrapper video {
    width: 100%;
    display: block;
    height: 400px;
  }

  .content-wrapper {
    flex: 1.2;
  }

  .brand-tag {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
  }

  .elite-container h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

 .elite-container p {
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background:var(--gold-dark);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
  }

  @media (max-width: 850px) {
    .elite-container { flex-direction: column; padding: 20px; }
  }

  
  .interactive-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
  }

  .section-title span {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #D4AF37;
  }

  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .info-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  .info-card ul li{
    color: #fff;
  }

  /* Interactive Hover Effect */
  .info-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.08);
  }

  .info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 0;
    background: var(--gold-grad);
    transition: height 0.4s ease;
  }

  .info-card:hover::before {
    height: 100%;
  }

  .info-card h3 {
    color: #F0E68C;
    font-size: 1.5rem;
    margin-top: 0;
  }

  .info-card p {
    line-height: 1.8;
    color: rgba(245, 245, 245);
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .section-title { 
        font-size: 1.8rem;
        text-align: center;
    }
  }

   .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-top: 30px;
  }

  .service-card {
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
    border-radius: 4px; /* Sharp edges feel more "Elite" */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  /* Decorative Corner */
  .service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(241, 186, 7, 0.304) transparent transparent;
    transition: 0.4s;
  }

  .service-card:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    background: #0a192fe8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .service-card h3 {
    color: var(--gold-dark);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .service-card p {
    color: #fff;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
    font-family: sans-serif;
    opacity: 0.8;
  }

  .service-card:hover p{
    color: #fff;
  }
  .read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
  }

  .read-more-btn:hover {
    background: var(--gold-dark);
    color: #000;
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  .why-choose{
    background-color: var(--primary-dark);
    display: grid;
    place-items: center;
    padding: 50px 0;
  }
 .bento-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
   
  }

 
  /* Core Card Styling */
  .bento-card {
    background: var(--glass-bg);
    border: 1px solid #f0e68c63;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }

  .bento-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
  }

  /* Image Section Styling */
  .model-showcase {
    width: 40%;
    height: 500px;
    padding: 0; /* Remove padding to let image fill */
    display: flex;
    justify-content: center;
  
  }

  .model-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
  }

  .model-showcase:hover img {
    transform: scale(1.05);
  }
 .bento-card-cont{
  width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

   .bento-card-cont .bento-card{
    width: 45%;
   }
  /* Icon & Text Styling */
  .icon-box {
    font-size: 2rem;
    background: var(--gold-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
  }

  .bento-card h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: #F0E68C;
  }

  .bento-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  /* Layout variations */
  .wide { grid-column: span 2; }
  .tall { grid-row: span 2; }

  @media (max-width: 900px) {
    
    
  }

   .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Bodoni Moda', serif;
            font-size: 3rem;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 5px;
            margin: 0;
        }

        .section-header .divider {
            width: 50px;
            height: 2px;
            background-color: var(--gold-dark);
            margin: 20px auto;
        }

       /* --- Interactive Gallery Layout --- */

        .gal-cont{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap;
          width: 100%;
          gap: 20px;
          padding:0 5% 5% 5%;
        }
        .gallery-container {
            width: 32%;
            
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 20px;
            background: #fff;
            border-radius: 4px; /* Minimalist sharp edges */
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .main-display {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            width: 300px;
        }

        .main-display .main-display-img {
            width: 100%;
            height: 400px;
            display: block;
            transition: transform 0.6s ease;
            margin-bottom: 20px;
        }

        .main-display:hover .main-display-img {
            transform: scale(1.05);
        }

        .profile-info {
            flex: 1;
            padding-right: 20px;
        }

        .profile-info h3 {
            font-family: 'Bodoni Moda', serif;
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin: 0 0 15px 0;
            border-bottom: 2px solid var(--gold-dark);
            display: inline-block;
        }

        .profile-info p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        /* --- Interactive Thumbnails --- */
        .thumbnail-track {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .thumb {
            width: 70px;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
            filter: grayscale(100%);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .thumb:hover, .thumb.active {
            filter: grayscale(0%);
            border-color: var(--gold-dark);
            transform: translateY(-5px);
        }

        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--gold-dark);
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            font-size: 12px;
            transition: 0.3s;
            box-shadow:0 10px 20px rgba(212, 175, 55, 0.15);
        }

        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(10, 25, 47, 0.2);
            color: #fff;
        }

        /* @media (max-width: 850px) {
            .gallery-container { flex-direction: column; padding: 20px; }
            .section-header h2 { font-size: 2rem; }
        } */

    

        /* Class for the fade effect */
        .fade-in {
            opacity: 0;
        }

        .thumb {
            cursor: pointer;
            transition: 0.3s;
        }

        .thumb.active {
            border: 2px solid #D4AF37; /* Gold border for active thumb */
            transform: scale(1.1);
        }

        @media (max-width:768px) {
                     .gallery-container {
            width: 50%;
            
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 20px;
            background: #fff;
            border-radius: 4px; /* Minimalist sharp edges */
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        }

        
        @media (max-width:540px) {
                     .gallery-container {
            width: 100%;
            
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 20px;
            background: #fff;
            border-radius: 4px; /* Minimalist sharp edges */
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        }
        @media (max-width:768px){
            .bento-container{
                display: block;
                padding: 0 10px;
            }
            .model-showcase{
                width: 100%;
                margin-bottom: 20px;
            }
            .bento-card-cont{
                width: 100%;
            }
            .bento-card-cont .bento-card {
    width: 100%;
    margin-bottom: 10px;
}
        }
        
        @media (max-width:540px){
            #hero-banner .banner {
  width: 100%;
  height: 600px;
  position: relative;
}

#hero-banner .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-banner .banner::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 100%;
  background: rgb(25, 25, 25);
  opacity: 0.75;
  top: 0;
}
.banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  width: 100%;
  height: 600px;
}
            .name, .phone, .email, .location {
    width: 100%;
}
            .banner-text .banner-para p{
                text-align: justify;
            }
            
            .elite-container h2{
                font-size: 2rem;
            }
            .elite-container p{
                text-align: justify;
            }
            #profiles .profiles-title h3 {
    font-size: 24px;
    font-weight: 600;
}
            #profiles .profiles-title h3 span{
                text-decoration: none;
            }
            
            .section-title span {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     border-bottom: none; 
}

.abt-cont {
    background-color: var(--primary-dark);
    width: 100%;
    padding: 50px 10px;
}
}
.info-card p{
    text-align: justify;
}

#high-profile h3 span{
    text-decoration: none;
}

.breadcrums-banner-text .breadcrums-banner-heading h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}
        }
        
        
         .tag-section {
  padding: 50px 20px;
  background: #f7f7f9;
  font-family: 'Poppins', sans-serif;
}

.tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tag {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  color: #1a1a1a;
}

.tag:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Different Soft Colors */
.t1 { background: #f8c8c8; }
.t2 { background: #c8e6f8; }
.t3 { background: #d5c8f8; }
.t4 { background: #c8f8d8; }
.t5 { background: #f8e6c8; }
.t6 { background: #c8f0f8; }
.t7 { background: #f8c8e8; }
.t8 { background: #d8f8c8; }
.t9 { background: #e0c8f8; }
.t10 { background: #f8d8c8; }
.t11 { background: #c8d8f8; }
.t12 { background: #e8f8c8; }

@media (max-width: 768px) {
  .tag {
    font-size: 14px;
    padding: 10px 18px;
  }
}