/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #4A4A4A; /* Softer black for text */
  background: #FDFDFD; /* Slightly off-white background */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased; /* Smoother font rendering */
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar */
.navbar {
  background-color: transparent;
  color: white;
  padding: 1.5rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #111;
  position: fixed;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style-type: none;
}

.nav-links li {
  margin: 0 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #D4AF37; /* Brighter, more metallic gold */
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #D4AF37;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  background-color: white;
  height: 2px;
  width: 28px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); /* Gradient overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content span {
  color: #D4AF37;
}

.hero-content p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content button {
  margin-top: 2.5rem;
  padding: 15px 35px;
  background: #D4AF37;
  border: none;
  font-size: 1rem;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content button:hover {
  background: #c5a230;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 100px 20px;
}

.about-text {
  flex: 1;
  max-width: 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text span {
  color: #D4AF37;
}

.about-img {
  flex: 1;
  max-width: 500px;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.reachability {
  padding: 100px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.reachability h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.reachability > p {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 4rem;
}

.features {
  display: grid;
  
   grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 200%; 
  height: 200%;/* adjust as needed */
}

.company-name {
  color: white;
  font-size: 1rem; /* adjust for visibility */
  margin-top: 0.5rem;
  font-weight: 600;
}

.feature-box {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top-color: #D4AF37;
}

.feature-box h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Connect Now Section */
.connect-now {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.connect-now h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.connect-now p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

.connect-btn {
  display: inline-block;
  background-color: #D4AF37;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.connect-btn:hover {
  background-color: #c5a230;
  transform: scale(1.05);
}

.contact-options {
  margin-top: 30px;
  display: none;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-options .option {
  background: #333;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.contact-options .option:hover {
  background: #D4AF37;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: #000;
  color: #aaa;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #111;
    padding-top: 80px;
    height: 100vh;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1.5rem 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }

  .about {
      flex-direction: column;
  }

  .about-img {
      display: block; /* Ensure image is visible on mobile */
  }
}

/* === Add this to your Navbar section === */
.logo img {
  height: 40px; /* Adjust height as needed */
  width: auto;
  vertical-align: middle;
}

/* === Add this to your Footer section === */
.footer {
  background-color: #000;
  color: #aaa;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.social-media {
  margin-bottom: 1rem;
}

.social-media a {
  color: #fff;
  font-size: 1.5rem; /* Icon size */
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #D4AF37; /* Gold hover color */
}