/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #111;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

header h1 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 0.5rem 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #111, #444);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero .btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background-color: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  margin: 2rem 0;
}

h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: white;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 0.5rem 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

.service-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  margin-bottom: 0.5rem;
}

.service-item a {
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
}

/* Reasons (Why Choose Us) */
.reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  cursor: pointer;
}

.reason {
  background-color: #fff;
  padding: 1rem;
  border-left: 4px solid #e91e63;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.6s ease-out forwards;
  
}

/* Keyframes for animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reason {
  background-color: #fff;
  padding: 1rem;
  border-left: 4px solid #e91e63;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #111;
  color: white;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 1rem;
}

.social-media-footer a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

/* Contact Section with Background Image */
#contact {
  background-image: url('./images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1rem;
  color: white;
  position: relative;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#contact h2,
#contact form {
  position: relative;
  z-index: 1;
}

#contact form input,
#contact form textarea {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

#contact form button {
  background-color: #e91e63;
  color: white;
}

/* Screenshot Header */
.screenshot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 1rem 2rem;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.branding {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 250px;
  margin-right: 10px;
}

.branding-text h1 {
  font-size: 2rem;
  margin: 0;
}

.push {
  color: #F7931E;
  font-weight: bold;
}

.amo {
  color: #A10061;
  font-weight: bold;
}

.tagline {
  margin: 0;
  font-size: 0.9rem;
  color: pink;
}

/* Hero Banner */
.hero-banner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.overlay-text {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.overlay-text h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  font-weight: bold;
}

.subquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #ff4f85;
  margin-bottom: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.scroll-icon {
  font-size: 2rem;
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Header Container & Navigation */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  display: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Services Section */
#services {
  padding: 40px 20px;
  background-color: white;
  text-align: center;
}

.service-btn {
  color: #e91e63; /* bright pink */
  text-decoration: none;
}

.service-btn:hover {
  text-decoration: underline;
}


.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-box {
  background-color: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #333;
}

.service-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Media Queries */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reasons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    background: black;
    border: 1px solid #ccc;
    width: 180px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: max-height 0.4s ease;
    overflow: hidden;
    max-height: 0;
  }

  .nav-links.active {
    display: flex;
    max-height: 400px;
  }
}

.image-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-behavior: smooth;
}

.slides {
  display: flex;
  gap: 10px;
}

.slides img {
  height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.slides img:hover {
  transform: scale(1.05);
  cursor: pointer;
}


.about-grid-section {
  padding: 3rem 1rem
  padding: 40px 20px;
  background-color: white;;
}

.about-toggle {
  cursor: pointer;
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  margin: 0;
  padding: 0;
  position: relative;
  top: -40px; /* Adjust this value as needed for the slight upward shift */
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-video video {
  width: 100%;
  border-radius: 12px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.service-icon {
  margin-right: 8px;
  color: #ff6600; /* or any accent color you prefer */
  font-size: 1.2em;
  vertical-align: middle;
}

#services h2 {
  color: black;
}

.flip-hover {
  display: inline-block;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
  color: white;
}

.flip-hover:hover {
  transform: rotateY(360deg);
}

form select {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}
