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

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2a2a40); /* Dark gradient */
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Header */
.main-header {
  background: #111827;
  padding: 12px 20px;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
}

.btn-primary {
  background: #4f46e5;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #4338ca;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  transition: right 0.3s ease-in-out;
  z-index: 2000;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  margin: 15px 0;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* hide desktop nav */
  }

  .hamburger {
    display: block; /* show hamburger */
  }

  .mobile-menu.active {
    right: 0; /* slide in */
  }

  /* Hide button from desktop nav */
  .desktop-nav .btn-primary {
    display: none;
  }
}
/* Logo */
.logo img {
  height: 60px;       /* Adjust size */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 62px;   
    width: auto;  /* Smaller logo for mobile */
  }
}

/* Hero Section */
/* Hero Section */
.hero-section {
  text-align: center;
  padding: 100px 20px;
  width: 100%;

  color: #fff;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Purple gradient */
  border-radius: 1px;
  margin-top: 1px;
  font-family: "Times New Roman", Times, serif;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 15px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}
/* Section Divider */
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 252, 252, 0.3), transparent);
  margin: 40px 0;
  border-radius: 50px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

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

/* Projects Section */
.section {
  padding: 80px 20px;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Project Card */
/* Standardize image sizes */
.project-card img {
  width: 100%;
  height: 200px;              /* fixed height for all images */
  object-fit: cover;          /* crop while maintaining aspect ratio */
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Make all cards same height */
.project-card {
  display: flex;
  flex-direction: column;     /* stack content vertically */
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25),
              inset 0 1px rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;               /* let grid rows equalize */
}

/* Ensure button section stays at bottom */
.project-card-actions {
  margin-top: auto;           /* push buttons to bottom */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Zoom-in + brightness */
.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Optional subtle tilt (extra spice) */
.project-card:hover img {
  transform: scale(1.05) rotate(0.5deg);
}


/* Hover Effect */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Card Content */
.project-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.project-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.85;
}

/* Card Details */
.project-card-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: 600;
}

.project-tag {
  color: #ffd700;
}

.project-price {
  color: #4ade80; /* Green */
}

/* Card Actions (Buttons) */


.btn {
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-buy {
  background: #4f46e5;
  color: #fff;
}

.btn-buy:hover {
  background: #4338ca;
}

.btn-images {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-images:hover {
  background: #fff;
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

/* Offer Section */
#offer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* Offer Card */
.offer-card {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.offer-card h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-card p {
  font-size: 1.2rem;
  color: #f1f1f1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.offer-card strong {
  color: #ffd700;
}

.offer-card span {
  color: #4ade80; /* green highlight */
  font-weight: bold;
}

/* Offer Button */
.btn-offer {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1.5s infinite;
}

.btn-offer:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(238, 9, 121, 0.6);
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .offer-card {
    padding: 30px 20px;
  }

  .offer-card h2 {
    font-size: 1.8rem;
  }

  .offer-card p {
    font-size: 1rem;
  }
}
/* Contact Section */
#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "Times New Roman", serif;
}

/* Section Header */
#contact .section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

#contact .section-header p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form-container {
  display: flex;
  justify-content: center;
}

.contact-form {
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #f1f1f1;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.form-input::placeholder {
  color: #ccc;
}
.form-group option{
    background-color: #5c4a4aae;
}
.form-input:focus {
  background: rgba(255,255,255,0.3);
  box-shadow: 0 0 8px #00ff84;
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  fill: white;
}

/* Responsive */
@media (max-width: 768px) {
  #contact {
    padding: 60px 15px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* Footer */
/* Footer Styling */
.main-footer {
  background: rgba(0, 0, 0, 0.8); /* dark background */
  color: #f1f1f1;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-footer a {
  color: #6366f1; /* accent color (blueish) */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: #a5b4fc; /* lighter blue on hover */
}

.main-footer p {
  margin: 0.4rem 0;
}

/* Responsive footer text */
@media (max-width: 600px) {
  .main-footer {
    font-size: 0.85rem;
    padding: 1.2rem 0.8rem;
  }

  .main-footer p {
    margin: 0.3rem 0;
  }
}


/* Subtle background rotation */
@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Custom Project Section */
#custom-project {
  margin-top: 3rem;
  text-align: center;
}

.custom-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1); /* glass effect */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  margin: auto;
}

.custom-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff7b54; /* orange accent for heading */
}

.custom-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f1f1;
  margin-bottom: 1.5rem;
}

/* Custom button */
.btn-custom {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ff7b54, #ff3c3c);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: linear-gradient(135deg, #ff3c3c, #ff7b54);
  transform: scale(1.05);
}
