* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

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

.logo {
  width: 70px;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
filter: drop-shadow(0px 0px 6px white);
}

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

nav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  
}

nav a:hover,
nav a.active {
  color: #ff6b35;
}

.header-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-icon,
.social-icon {
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}
.search-icon:hover,
.social-icon:hover {
  color: #ff6b35;
  transition: color 0.3s;
}
/* Hero Section */
.hero {
  background-image: url("https://images.pexels.com/photos/1229356/pexels-photo-1229356.jpeg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: #ff6b35;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: bold;
}
.hero-title {
  font-size: 6.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: #ff6b35;
}

.hero-btn {
  background: #ff6b35;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.hero-btn:hover {
  background: #e55530;
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #111111;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-subtitle {
  color: #ff6b35;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.features-title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 90px;
  height: 90px;
  color: #ff6b35;
  background: rgba(34, 34, 34, 0.692);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(
      to bottom,
      rgb(0, 0, 0),
      rgba(255, 107, 53, 0.466)
    ),
    url("./assets/img5.jpg");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.096);
}

.service-content {
    padding: 25px;
    background: #0a0a0ab2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-content span {
  color: #ff6b35;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.service-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.103), rgba(0, 0, 0, 0.164)),
    url("/assets/Img2.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  background-attachment: fixed;
}

.cta-subtitle {
  color: #ff6b35;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.712);
}

.cta-title {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cta-description {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: #ff6b35;
  color: #ffffff;
  padding: 15px 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background: #e55530;
  transform: translateY(-2px);
}

.location-map {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.location-map .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.location-map .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Gallery Section */
.gallery {
  padding: 100px 20px;
  background: #0a0a0a;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

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

/* Contact Section */
.contact {
  padding: 60px 0;
  background: #0a0a0a;
  border-top: 1px solid #333;
}

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

.contact-item {
  text-align: center;
}

.contact-icon {
  width: 90px;
  height: 90px;
  color: #ff6b35;
  background: rgba(34, 34, 34, 0.692);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  text-decoration: none;
}

.contact-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-info {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
}
.contact-title a{
  transition: color 0.3s;
  color:white
}
/* Floating Whatsapp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  background-color: #25d36588;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}


/* Footer */
/* footer {
  background: #000000;
  padding: 40px 0 20px;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 12px;
} */

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

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }
}
/* @media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
} */
