/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff; /* White text */
  background-color: #000000; /* Black background */
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  color: #ffffff; /* White headings */
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
/* Combined blinking and glowing animation */
@keyframes blink-glow {
  0% { opacity: 1; box-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
  50% { opacity: 0.5; box-shadow: 0 0 20px rgba(255, 255, 255, 0.9); }
  100% { opacity: 1; box-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
}

/* Apply the combined animation to the button */
.cta-button.blink-glow {
  animation: blink-glow 1.5s infinite;
}
}
/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.camera-icon {
  font-size: 5rem;
  color: #ffd700; /* Gold icon */
  animation: pulse 1.5s infinite, rotate 3s infinite linear;
}

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

@keyframes rotate {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #000000; /* Black header */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: rotateY(20deg) scale(1.1);
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff; /* White text */
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700; /* Gold text on hover */
  background-color: rgba(255, 215, 0, 0.1); /* Light gold background on hover */
  border-radius: 5px;
}

nav ul li a.active {
  color: #ffd700; /* Gold text for active link */
  border-bottom: 2px solid #ffd700; /* Gold underline for active link */
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffd700; /* Gold underline */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%; /* Full width underline on hover */
}

.cta-button {
  background-color: #ffd700; /* Gold button */
  color: #000000; /* Black text */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cta-button {
  background-color: #ffd700; /* Gold button */
  color: #000000; /* Black text */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; 
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-button:hover {
  background-color: #ffcc00; /* Darker gold */
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
  animation: glowing 1.5s infinite alternate;
}

/* Glowing effect animation */
@keyframes glowing {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  perspective: 1000px; /* For 3D effect */
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); /* Radial gradient overlay */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff; /* White text */
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ff6f61, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 5s ease infinite;
}

@keyframes gradient-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-btn {
  background-color: #ffd700; /* Gold button */
  color: #000000; /* Black text */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
  background-color: #ffcc00; /* Darker gold on hover */
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateZ(0) translateY(0); }
  50% { transform: translate(-50%, -50%) translateZ(0) translateY(-20px); }
}
/* About Section */
.about {
  background-color: #111;
  color: #fff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.about-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  max-width: 250px; /* Smaller profile image */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.about-text {
  animation: fadeInUp 1s ease-in-out;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Compact Button */
.cta-button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #c99822, #f3c623);
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
}

/* Ensure button doesn't shrink on mobile */
@media (max-width: 768px) {
  .about-container {
    text-align: center;
  }

  .about-image img {
    max-width: 200px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 12px 30px; /* Slightly larger on mobile */
    font-size: 1.1rem;
  }
}


/* Text Styling */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #f5a623; /* Gold accent */
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px); 
  animation: fadeInUp 0.8s ease-in-out forwards;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #f5a623;
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.small-cta {
    width: 120px !important; /* Set a fixed width */
    padding: 6px 10px !important; /* Reduce padding */
    font-size: 12px !important; /* Adjust text size */
    text-align: center; /* Ensure text is centered */
    display: inline-block;
    text-transform: uppercase;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }
}

/* Services Section */
.services {
  padding: 10px 10%;
  direction: rtl; /* Right-to-left text direction */
  background-color: #000000; /* Black background */
}

.service-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.service-item {
  background-color: #ffd700; /* Gold background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  min-width: 250px;
  border: 2px solid #ffd700; /* Gold border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  text-align: center; /* Centering text */
}

.service-item:hover {
  transform: translateY(-10px) rotateX(10deg) rotateY(10deg) translateZ(20px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000000; /* Black text */
}

.service-item p {
  font-size: 1rem;
  color: #333; /* Darker gray for better contrast */
}


/* Ensures Centering */
.services {
  text-align: center;
  padding: 10px 10%;
}


/* Portfolio Section */
.portfolio {
  text-align: center;
  padding: 40px 20px;
  background-color: #000; /* Black background */
  color: #fff; /* White text for contrast */
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff; /* White text */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* Light glow effect */
  transition: transform 0.3s ease-in-out;
}

.portfolio-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Hover Caption */
.portfolio-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1); /* Subtle transparent white */
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.portfolio-item:hover::after {
  opacity: 1;
}



.footer {
  background-color: black;
  color: white; 
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Adds space between elements */
}

.social-links { 
  display: flex;
  gap: 20px; /* Even spacing between links */
}

.social-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.social-links a:hover {
  color: #d4af37; /* Gold accent on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .about-content {
    flex-direction: column;
  }

  .service-item {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }
}

html {
  scroll-behavior: smooth;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin: 0;
    color: #FFD700;
}

/* Navigation */
nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}

/* Buttons */
.button {
    background-color: #FFD700;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button:hover {
    background-color: #fff;
    box-shadow: 0 0 10px #FFD700;
}

/* General Contact Section Styling */
.contact {
    background-color: #121212;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ddd;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #333; /* Adding border around input and select */
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
    background-color: #222;
    transition: all 0.3s ease;
    width: 100%; /* Make the input fields stretch to full width */
    box-sizing: border-box; /* Ensure padding does not affect the width */
}

/* Focus on input and select */
.form-group input:focus,
.form-group select:focus {
    border-color: #f1c40f; /* Highlight border color on focus */
    outline: none;
}

/* Booking Buttons */
.cta-button {
    padding: 12px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%; /* Make buttons stretch to full width on mobile */
    max-width: 300px; /* Limit button width on larger screens */
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.email-btn {
    background-color: #007bff;
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

.email-btn:hover {
    background-color: #0056b3;
}

/* Contact Info Section */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
    text-align: center; /* Center align for mobile */
}

.contact-info h3 {
    font-size: 1.25rem;
    color: #f1c40f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 15px;
}

.contact-info a {
    color: #f1c40f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

/* Google Maps Embed Section */
.map-container {
    margin-top: 40px;
    text-align: center;
}

.map-wrapper {
    max-width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem;
    }

    .form-group input,
    .form-group select {
        font-size: 1rem;
        padding: 15px;
    }

    .cta-button {
        font-size: 1rem;
        max-width: 90%; /* Allow the buttons to fill most of the screen width */
    }

    .contact-info {
        padding-top: 20px;
    }

    .map-wrapper {
        height: 300px; /* Adjust map size for mobile screens */
    }
}

/* Large PC Screens */
@media (min-width: 1200px) {
    .contact {
        padding: 80px 100px;
    }

    .contact-info {
        text-align: left; /* Align text left on larger screens */
    }

    .cta-button {
        max-width: 300px; /* Keep buttons a reasonable width */
    }

    .map-wrapper {
        height: 450px;
    }
}
/* Google Maps Embed Section */
.map-container {
    margin-top: 40px;
    text-align: center;
}

.map-wrapper {
    max-width: 100%;
    height: 450px; /* Default height for large screens */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background-color: #ccc; /* Fallback background color */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px; /* Adjust map height for mobile screens */
    }
}

/* Footer Styling */
footer {
    background-color: #1a1a1a; /* Dark background for the footer */
    color: #f1f1f1; /* Light text color */
    padding: 40px 0; /* Padding for spacing */
    text-align: center; /* Center the text */
    font-family: 'Montserrat', sans-serif; /* Font for the footer text */
}

.footer-content {
    max-width: 1200px; /* Limit the width of content */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Padding on the sides */
}

.social-links {
    margin-bottom: 20px; /* Spacing below the social links */
    display: flex; /* Flexbox for layout */
    justify-content: center; /* Center the links */
    flex-wrap: wrap; /* Allow the links to wrap on smaller screens */
}

.social-links a {
    color: #f1f1f1; /* Light text color for links */
    text-decoration: none; /* Remove underlines from links */
    margin: 0 15px; /* Spacing between icons */
    font-size: 18px; /* Font size for the links */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

.social-links a:hover {
    color: #f4c542; /* Gold color on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

footer p {
    font-size: 16px; /* Font size for copyright text */
    margin-top: 20px; /* Spacing above the copyright text */
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    footer {
        padding: 20px 0; /* Reduced padding on mobile */
    }

    .social-links a {
        font-size: 16px; /* Smaller font size for mobile */
        margin: 10px 10px; /* Less margin for social links */
    }

    footer p {
        font-size: 14px; /* Smaller text for copyright */
        margin-top: 15px; /* Reduced spacing above the copyright text */
    }
}

/* Larger Screen Styling (PC/Tablet) */
@media screen and (min-width: 769px) {
    footer {
        padding: 40px 0; /* Keep the larger padding on PC screens */
    }

    .social-links a {
        font-size: 18px; /* Larger font size for PC */
        margin: 0 15px; /* Maintain margin for social links */
    }

    footer p {
        font-size: 16px; /* Larger text for copyright */
        margin-top: 20px; /* Maintain spacing for copyright text */
    }
}
#new-offer {
    padding: 50px;
    background: #f8f8f8;
    text-align: center;
}

.offer-gallery { 
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.offer-gallery img {
    width: 300px; /* Adjust size */
    height: auto; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

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


