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

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.contact, .nav-container {
  max-width: 1200px;
}

/* ===== NAVBAR ===== */
.navbar {
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.logo-link span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #d4af37;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-link:hover span {
  color: #fff;
  transition: 0.3s ease;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a.active {
  color: #d4af37;
}

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

  .nav-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
   justify-content: center;
  }

  .nav-links a {
    display: inline-block;
    margin: 5px;
    
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a, #111111, #1a1a1a);
  background-size: 400% 400%;
  display: flex;
  padding-top: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: gradientMove 10s ease infinite;
  overflow: hidden;
}

/* Soft animated gradient movement */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Add a very subtle pattern overlay */
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #fff;
}

.hero h1 span {
  color: #d4af37;
}

.hero h2 {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #d4af37;
  height: 30px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  opacity: 0;
}

.hero-photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.hero-photo img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d4af37;
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transition: transform 0.5s ease;
}

.hero-photo img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-photo {
    margin-top: 30px;
  }

  .hero-photo img {
    width: 200px;
    height: 200px;
  }
}

/* Animated text */
.animated-text span {
  display: block;
  animation: textSlide 6s infinite;
}

@keyframes textSlide {
  0% { margin-top: 0; }
  33% { margin-top: -30px; }
  66% { margin-top: -60px; }
  100% { margin-top: 0; }
}

.tagline {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px 10px 0 0;
  display: inline-block;
  cursor: pointer;
}

.gold-btn {
  background-color: #d4af37;
  color: #000;
}

.gold-btn:hover {
  background-color: #d4af37;
}

.outline-btn {
  border: 2px solid #d4af37;
  color: #d4af37;
}

.outline-btn:hover {
  background-color: #d4af37;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #d4af37;
}

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

/* Responsive Design */
@media (max-width: 900px) {
  .about .container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 250px;
    height: 250px;
  }

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

/* ===== SERVICES SECTION ===== */
.services {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 100px 10%;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.section-title h2 span {
  color: #d4af37;
}

.section-title p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.service-card .icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 25px;
}

.service-card .btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-card .btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
  .services {
    padding: 70px 8%;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 10%;
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  opacity: 0;
  transform: translateY(30px);
}
.portfolio-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}

.portfolio-card h3 {
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.portfolio-card .btn {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-card .btn:hover {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 100px 10%;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.testimonial-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.9;
}

.testimonial-card h4 {
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;
}

.partners {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partners img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: 0.3s ease;
}

.partners img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== BLOG SECTION ===== */
.blog {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-info h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-info p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog .btn.gold-btn {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.blog .btn.gold-btn:hover {
  background: #d4af37;
}

.loading {
  color: #ccc;
  font-style: italic;
}

.skeleton {
  height: 250px;
  background: linear-gradient(90deg, #1a1a1a 25%, #111 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  color: #bbb;
  margin-bottom: 40px;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

/* WhatsApp Button */
.whatsapp-contact {
  margin-bottom: 30px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 16px;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1da851;
}

/* Contact Form */
.contact-form {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.contact-form button:hover {
  background: #e6c200;
}

#contactStatus {
  margin-top: 10px;
  color: #d4af37;
  font-size: 0.9rem;
  text-align: center;
}

/* ====== Footer Styling ====== */
.site-footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

.social-links a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #d4af37;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #777;
}

@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }
}

