/* ===== RESET & BASE ===== */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  top: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  z-index: 1000;
  scroll-behavior: smooth;
}

.logo img {
  height: 30px; /* adjust size as needed */
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #5682B1;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  top: 100%;
  left: 0;
  z-index: 999;
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #333;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

/* ===== CONTACT BUTTON ===== */
.contact-btn {
  background-color: #5682B1;
  padding: 8px 18px;
  border-radius: 8px;
  color: white !important;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #466e95;
}


/* ===== HERO SECTIONS ===== */
.hero {
  width: 100%;
  height: 100vh;  /* Full viewport height */
  background-position: center;
  background-size: cover; /* Ensures image covers entire container */
  background-repeat: no-repeat;  /* Prevents repetition of background images */
  display: block;  /* Ensure it's treated as a block element */
}
.hero {
  margin: 0;
  padding: 0; /* Remove any padding that might create unwanted space */
}


.hero1 {
  background-image: url('assets/landingfinal.png');
}

.hero2 {
  background-image: url('assets/2.png');
}

/*.white-space {
  height: 120px;
  background-color: #000;
}
*/
/* ===== FEATURES SECTION ===== */
.features {
  text-align: center;
  padding: 100px 60px;
  background-color: #000;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 60px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.feature-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

.feature-box h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 60px;
  background-color: #000;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.services-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #5682B1;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.services-btn:hover {
  background-color: #466e95;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive behavior for images on smaller screens */
@media (max-width: 768px) {
  .hero {
    height: 30vh /* Ensure the entire image is contained within the section */
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  background-color: #000;
  color: #fff;
  padding: 100px 10%;
  font-family: 'Inter', sans-serif;
}

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

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.why-text {
  max-width: 600px;
}

.why-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.why-text ul {
  margin-top: 15px;
  padding-left: 20px;
}

.why-text li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 80px 10%;
  font-family: 'Inter', sans-serif;
}

.reviews h2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.review-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.review-card {
  background-color: #111;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.review-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-profile h4 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
}

.review-profile p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #000;
  color: #fff;
  padding: 100px 10%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.contact-section h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 40px;
}

form {
  max-width: 800px;
  margin: auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

input,
textarea {
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #fff;
  outline: none;
}

.submit-btn {
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
}

.submit-btn:hover {
  background-color: #444;
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #999;
  border-top: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* Smooth Scroll for Navbar */
html {
  scroll-behavior: smooth;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  margin-left: auto;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    transition: right 0.3s ease;
    align-items: center;
  }

  .nav-links.show {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    padding: 15px 25px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    padding: 15px 0;
    display: block;
  }
}

