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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
}

header h1 {
  font-size: 28px;
  padding: 20px 0;
  color: #2c3e50;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #0077b6;
  border-bottom: 2px solid #0077b6;
}

/* Hero Section */
.hero {
  height: 500px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}


.hero-text {
  background: rgba(0, 0, 0, 0.4); /* optional glassy dark overlay */
  padding: 40px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 22px;
  letter-spacing: 1px;
}


.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background-color: #023e8a;
}

/* Page Content */
.page-content {
  padding: 40px 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/background.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  border-radius: 10px;
}
.page-content {
  padding: 40px 0;
}

.page-content h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #2c3e50;
}

.page-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Services List */
.services-list {
  list-style: none;
  margin-top: 30px;
}

.services-list li {
  margin-bottom: 20px;
}

.services-list h3 {
  font-size: 20px;
  color: #0077b6;
}
.service-button {
  background-color: white; /* Add a solid background */
  color: #f6f1f1; /* Darker text */
  border: 1px solid #ccc; /* Make borders visible */
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}


.services-section {
  background-color: #f8f8f8; /* soft contrast with buttons */
  padding: 60px 0;
  text-align: center;
}
.service-item {
  background-color: rgba(245, 239, 239, 0.9);
  padding: 20px;
  color: #2c3e50; /* dark navy */
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


.service-item:hover {
  background-color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}



/* Portfolio Grid */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.portfolio-item {
  border: 1px solid #ddd;
  padding: 15px;
  background-color: #fafafa;
  border-radius: 5px;
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.portfolio-item h3 {
  font-size: 18px;
  color: #333;
}

/* Contact Form */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005f86;
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #0077b6;
}
.contact-section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('images/contact.jpg') no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 80px 20px;
  padding-bottom: 120px;
  position: relative;
}

/* Footer */
footer {
  background-color: #9d9a9a;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
  color: #eae8e8;
}
/* LOGO */
.logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(100) contrast(120%);
  background: transparent;
  border-radius: 6px;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

.logo img:hover {
  transform: scale(1.07);
  filter: brightness(1.2) sepia(1) hue-rotate(10deg) saturate(5);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6); /* Gold color glow */
}

/* HEADER FLEX */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* NAVBAR */
/* NAV BAR LIST STYLE */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* NAV LINKS BASE STYLE */
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #ffffff; /* White text by default */
  font-size: 18px;
  transition: color 0.4s ease, filter 0.4s ease;
}
/* Navbar Link Hover Style */
.nav-links a:hover {
  color: #ffd700; /* Pure Gold Color */
  filter: brightness(1.2) sepia(1) hue-rotate(10deg) saturate(5);
}

/* ANIMATION: UNDERLINE SLIDE IN */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.4s ease;
}

/* ON HOVER: SHOW UNDERLINE */
.nav-links a:hover::after {
  width: 100%;
}


header {
  background-color: #5a5957; /* Deep Sky Blue */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #0291f7; /* Light sky blue hover effect */
  transform: scale(1.2); /* Zoom effect */
}
/* Portfolio Gallery Grid */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}


/* Each Portfolio Item */
.portfolio-item {
  perspective: 1000px;
  width: 250px;
  margin: 15px;
  height: 300px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card-front {
  background: #fff;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.flip-card-front h3 {
  margin: 10px 0;
}

.flip-card-back {
  background-color: #1c1c1c;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}


/* Zoom Effect on Hover */
.portfolio-item:hover img {
  transform: scale(1.1);
}
/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button i {
  margin-top: 14px;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}
.clients-slider-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.clients-slider-section h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(200px * 30); /* total images: 15 × 2 */
  animation: scroll 40s linear infinite;
}

.slide-track img {
    height: 80px;
  width: auto;
  margin: 0 25px;
  object-fit: contain;
  transition: transform 0.3s ease
}

.slide-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1)
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.types-of-work {
    position: relative;
  padding: 60px 20px;
  text-align: center;
  color: white;
  background: url('images/services-bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  z-index: 1;
}

.types-of-work::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Dimming overlay */
  z-index: -1;
}

.types-of-work h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 1px;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.work-list li {
  background-color: #ffffff;
  padding: 10px 15px;
  border-left: 4px solid #0077b6;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.work-list li:hover {
  transform: scale(1.02);
  background-color: #e6f7ff;
}
.about-section {
  position: relative;
  background: url('images/about-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* This controls the dimness */
  z-index: -1;
}


.about-intro {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.about-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease;
}

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

.about-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.about-item h4 {
  margin: 10px 0;
  font-size: 20px;
  color: #fff;
}

.about-item p {
  font-size: 16px;
  color: #ddd;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff; /* White or any light color if background is dark */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;

  /* Optional Glow */
  text-shadow: 0 0 10px rgba(0, 168, 232, 0.6),
               0 0 20px rgba(0, 168, 232, 0.4);
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #00a8e8;
  border-radius: 2px;
}
.portfolio-section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.4)
    ), 
    url('images/portfolio.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 160px 10%;
}
.portfolio-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flip-card {
  background-color: transparent;
  width: 250px;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: #1e1e1e;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
}
.portfolio-section {
  background: url('portfolio.jpg') no-repeat center center/cover;
  padding: 60px 0;
  color: white;
}
.lux-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  text-align: center;
  color: white;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease forwards;
}

.gold-text {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lux-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  text-align: center;
  color: #d4af37; /* Gold color */
  margin-bottom: 50px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease both;
}

.lux-subtext {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color:  #d4af37;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  animation: fadeInUp 1s ease both;
}

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


