<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #0d0601;
  color: #3c0d35;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 0.1rem 0.1rem;
}

/* Header styles */
.main-header {
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  border-bottom: 0.1px solid #eee;
  padding: 0.1rem 0;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 90px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  font-family: 'Fredoka One', cursive;
  font-size: 0.6rem;
}
.nav-menu a {
  position: relative;
  overflow: hidden;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #a5799e;
  bottom: -4px;
  left: -100%;
  transition: left 0.3s ease;
}

.nav-menu a:hover::after {
  left: 0;
}

.nav-menu a {
  color: #3c0d35;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #a5799e;
}
.dropdown {
  position: relative;
}
/* Responsive nav for small screens */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    margin-right: 30px;
  }
}

/* Active nav item highlight */
.nav-menu .active {
  border-bottom: 2px solid #a5799e; /* your brand color */
  font-weight: bold;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* --- NAV MENU HOVER EFFECTS --- */
.nav-menu a,
.dropbtn {
  position: relative;
  font-family: 'Fredoka One', cursive;
  font-size: 0.6rem;
  color: #3c0d35;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Slight scale &amp; color transition */
.nav-menu a:hover,
.dropbtn:hover {
  transform: scale(1.05);
  color: #a5799e;
}

/* Underline swipe from left */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #a5799e;
  transition: left 0.3s ease;
}

.nav-menu a:hover::after {
  left: 0;
}

/* --- DROPDOWN CONTENT ANIMATION --- */
.dropdown-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-radius: 6px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Glow effect for dropdown button */
.dropbtn:hover {
  text-shadow: 0 0 5px #c98080;
}

/* Optional: refine dropdown link hover */
.dropdown-content a:hover {
  background-color: #f8f5f0;
  color: #592451;
  font-weight: 500;
}
.nav-menu a.active {
  color: #a5799e;
  font-weight: bold;
  border-bottom: 2px solid #a5799e;
}

/* Dropdown Base */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: none;
  border: none;
  font-family: 'Fredoka One', cursive;
  font-size: 0.6rem;
  color: #3c0d35;
  cursor: pointer;
}
.dropbtn:hover {
  color: #a5799e;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: 6px;
}
.dropdown-content a {
  font-family: 'Inter', sans-serif;
  color: #3c0d35;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.7rem;
}
.dropdown-content a:hover {
  background-color: #f8f5f0;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero section */
.hero {
  background: linear-gradient(to bottom, #ffffff,#2f0a2a);
  padding: 0.1rem 2rem;
  position: relative;
}


.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Hero text styling */
.hero-text .main-title {
  font-family: 'The Seasons', serif; /* Replace with real font once loaded */
  font-size: 2.5rem;
  color: #3c0d35;
}
.hero-text .sub-title {
  font-family: 'TT Ramillas',sans-serif; /* Replace with real font once loaded */
  font-size: 2.1rem;
  color: #a5799e;
  display: block;
  margin-top: 0.5rem;
}
.hero-subline {
 
  color: #592451;
  margin: 1rem 0;
  line-height: 1.4;
  font-size: 1.1rem;
  margin-left: 1.5rem;
}
/* Text outline using stroke */
.sub-title,
.hero-subline {
  -webkit-text-stroke: 3px white;
  paint-order: stroke fill;
}


.features {
  list-style: none;
  color: white;
  font-weight: 600;
  font-size: 0.7rem;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.3;
  margin-top: 1rem;
  padding-left: 0;
}
.features li {
  margin-bottom: 0.5rem;
  margin-left: 3rem;
}

/* Right image layout */

.hero-img {
  width: 180px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 4px 1px rgba(0,0,0,0.1);
}
.top-img {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 130px;
}
.bottom-img {
  position: absolute;
  bottom: 10px;
  right: 260px;
  width: 130px;
}
.dubai-icons {
  position: absolute;
  top: 95px;
  right: 10px;
  height: 90px;
}
.hero-text h1 span,
.hero-subline,
.features li,
.hero-img,
.dubai-icons {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.hero-text h1 span.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-subline.animate {
  opacity: 1;
  transform: translateY(0);
}

.features li {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.features li.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-img.animate {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.top-img.animate {
  transform: translateX(0);
}

.bottom-img.animate {
  transform: translateX(0);
}

.top-img {
  transform: translateX(-40px);
}

.bottom-img {
  transform: translateX(40px);
}

.dubai-icons.animate {
  opacity: 1;
  transform: scale(1);
}

.dubai-icons {
  transform: scale(0.9);
  transition: transform 0.8s ease, opacity 0.8s ease;
}


/* MOBILE IMAGE SLIDER - Only visible on small screens */
/* MOBILE SLIDER STYLING */
.hero-slider {
  display: none;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  height: 250px;
  margin: 1.5rem auto 0 auto;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slideImages 7s infinite ease-in-out;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px;
}

/* Slide animation */
@keyframes slideImages {
  0% { transform: translateX(0%); }
  45% { transform: translateX(0%); }
  55% { transform: translateX(-100%); }
  100% { transform: translateX(-100%); }
}

/* Show slider only on small screens */
@media (max-width: 768px) {
  .hero-slider {
    display: block;
  }

  .top-img,
  .bottom-img,
  .dubai-icons {
    display: none !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-text {
    padding: 0 1rem;
  }

  .features li {
    margin-left: 1.5rem;
    font-size: 0.75rem;
  }
}




/* Footer Styles */
.site-footer {
  background: linear-gradient(to top, #ffffff, #3c0d35);
  padding: 0rem 0.1rem;
  color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
 /* border-top-left-radius: 30px;
  border-top-right-radius: 30px;*/
}
.footer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-icon {
  background-color: #592451;
  color: #f8f5f0;
  border-radius: 50%;
  padding: 0.7rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  margin-top: 10px;
  margin-bottom: -15px;
}
.footer-icon:hover {
  background-color: #c98080;
  color: white;
  transform: scale(1.1) rotate(6deg);
}
.footer-text {
  font-size: 0.7rem;
  color: #3c0d35;
}


/* ----------------- ABOUT SECTION ----------------- */
.about-section {
  background: linear-gradient(to bottom, #3c0d35, #f8f5f0);
  color: #3c0d35;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}





.about-heading h2 {
  font-family: 'Shrikhand', cursive;
  font-size: 2.5rem;
  background: white;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30% 10% 30% 10%;
  box-shadow: 0 8px 20px rgb(255, 255, 255);
  color: #592451;
  text-align: left;
  transition: transform 0.7s ease;
  margin-top: -30px;
}
.about-image img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-bubble {
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.about-text {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
  z-index: 2;
  transition: transform 0.6s ease-in-out;
}
.about-bubble {
  font-family: 'The Seasons',sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  color: #3c0d35;
  background: white;
  border-radius: 50%;
  padding: 40px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Highlight styling */
.highlight {
  font-family: 'tt ramilas', light;
  font-weight: 700;
  color: #000000;
}


.about-image {
  flex: 1 1 90%;
  text-align: right;
  z-index: 2;
}

.about-image img {
  max-width: 350px;
  border-radius: 100%;
  
  box-shadow: 10 3px 3px rgb(103, 48, 93);
  transition: transform 0.6s ease-in-out;
}

.about-svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.about-section svg path {
  stroke-dasharray:1000;
  stroke-dashoffset: 1000;
}

.about-section svg path.animate {
  animation: drawLine 5.5s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Optional: hover effect for a little surprise */
.about-heading h2:hover,
.about-bubble:hover,
.about-image img:hover {
  transform: scale(1.03);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.highlight {
  opacity: 0;
  display: inline-block;
}

/* Add class when in view */
.highlight.animate {
  animation: fadeInUp 0.5s forwards, pulse 1.2s 0.5s ease-in-out;
}


/* ----------------- WHY CHOOSE US ----------------- */
.why-section {
  background: top linear-gradient(to bottom, #f8f5f0,#3c0d35 );
  text-align: left;
}

/* Heading */
.why-heading h3 {
  font-family: 'Shrikhand', cursive;
  font-size: 2rem;
  color: white;
  background: #592451;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.why-heading h3.animate-in {
  opacity: 1;
  transform: translateY(0);
}
/* Try resetting margin and padding */
section {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Layout */
.reasons {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin-inline: auto;
  color: #3c0d35;
}

/* Animated Boxes */
.reason-box {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  background: #fff;
  padding: 10px;
  margin: 15px ;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(189, 49, 49, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reason-box.show {
  opacity: 1;
  transform: translateY(0);
}

.reason-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-7px);
}

/* Icon Styling */
.reasons .icon {
  font-size: 1.2rem;
  font-weight: bold;
  background: white;
  color: #592451;
  padding: 10px 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.reasons i {
  font-size: 1.5rem;
  background: #a5799e;
  padding: 12px;
  border-radius: 50%;
  color: white;
}

.reasons strong {
  color: #c98080;
}
.fi {
  width: 90px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/*--------------------------*/
body {
  background: #3c0d35; /* White background */
}



/* Responsive */
@media (max-width: 768px) {
  .why-heading h3 {
    font-size: 1.5rem;
  }

  .reason-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*______________services_____________________*/
/* Base styles */
body {
  margin: 0;
  font-family: 'shrikhand', sans-serif;
  background: linear-gradient(to bottom ,#ffffff,#f5f1ee,#3c0d35,#3c0d35);
  color: #3c0d35;
  padding: 0;
}

.services-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.services-title {
  text-align: center;
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-box {
  background: #69175b;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(89, 36, 81, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  box-shadow: 0 0 20px rgba(89, 36, 81, 0.2);
  transform: scale(1.01);
}

.service-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-family: 'Fredoka One', sans-serif;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.icon-rotate {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.icon-rotate.rotated {
  transform: rotate(90deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  margin-left: 80px;
  color: #fff;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
}

.service-content.show {
  max-height: 1000px;
  opacity: 1;
  padding: 20px;
}


.service-image {
  float: right;
  max-width: 100px;
  margin-left: 1rem;
  border-radius: 12px;
}

ul ul {
  margin-left: 1.7rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
  .service-image {
    float: none;
    display: block;
    margin: 1rem auto;
  }
}.collab-section {
  background-color: #ffffff;
  padding: 10px 20px;
  margin-top: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  animation: fadeUp 1s ease-in-out;
}

.collab-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.collab-heading h2 {
  font-size: 1.5rem;
  font-family: 'Times New Roman', Times, serif;
  color: #3c0d35;
  margin-bottom: 10px;
  animation: fadeSlide 0.8s ease forwards;
}



.collab-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  
}

.collab-logos img {
  width: 150px;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;

}

.collab-logos img:hover {
  transform: scale(1.1) rotate(2deg);
 
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .collab-logos img {
    width: 100px;
  }
  .collab-heading h2 {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
/*______________contact____________________*/
.contact-section {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom ,#ffffff,#3c0d35,#f5f1ee,#3c0d35);
  font-family: 'Inter', sans-serif;
  position: relative;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.contact-text {
  flex: 1 1 45%;
  padding: 1rem;
}

.contact-text h2 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.experience-highlight {
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.contact-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  color: #eee;
}

.contact-text li {
  margin-bottom: 0.8rem;
  color: #f5f1ee;
}

.contact-text li i {
  margin-right: 10px;
  color: #f5f1ee;
}

.whatsapp-btn {
  background: #592451;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #3c0d35;
}

.contact-map {
  flex: 1 1 45%;
  padding: 1rem;
  text-align: center;
}

.map-location-text {
  margin-top: 0.5rem;
  color: #3c0d35;
}

.collab-slider {
  overflow: hidden;
  margin: 3rem auto;
  max-width: 1000px;
}

.collab-track {
  display: flex;
  animation: slide 10s linear infinite;
  gap: 30px;
}

.collab-track img {
  height: 60px;
  object-fit: contain;
}

@keyframes slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #a5799e;
  color: white;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  display: none;
}

.scroll-top.show {
  display: block;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .collab-track {
    animation: none;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    bottom: 70px;
    right: 15px;
  }

  .scroll-top {
    bottom: 15px;
    right: 15px;
  }
}
.floating-service-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  animation: floaty 2s ease-in-out infinite alternate;
}

@keyframes floaty {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.floating-service-button {
  background-color: #3c0d35;
  border-radius: 50%;
  display: inline-block;
  padding: 3px;
  box-shadow: 0 0 20px rgb(255, 255, 255);
  transition: transform 0.3s ease;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.floating-service-button:hover {
  transform: scale(1.08);
}

.floating-service-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-bubble {
  background-color: #3c0d35;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  border: 2px solid #3c0d35;
  font-weight: bold;
  font-size: 0.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  animation: pulseBubble 3s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(0,0,0,0.12);
  white-space: nowrap;
  margin-right: 5px;
}

@keyframes pulseBubble {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
</pre></body></html>