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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;              /* black navbar */
  padding: 20px 50px;            /* more padding for bigger look */
  font-family: "Segoe UI", sans-serif;
  position: sticky;              /* stays on scroll if needed */
  top: 0;
  z-index: 1000;
}

/* Logo styling */
.navbar .logo {
  color: #fff;
  font-size: 26px;               /* bigger font */
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s;
}

.navbar .logo:hover {
  color: #ff6600;                /* hover effect */
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;                     /* more space between links */
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;               /* larger links */
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  background: #ff6600;           /* highlight hover */
  transform: scale(1.05);
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 180px;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* shadow for depth */
  overflow: hidden;
  z-index: 999;
}

/* Dropdown items */
.dropdown-content li {
  border-bottom: 1px solid #333;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  display: block;
  font-size: 16px;
  transition: background 0.3s;
}

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

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Hero Section */
/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 100px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  gap: 40px;
}

/* Left Text Content */
.hero-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Call-to-action Buttons */
.hero-text .btn-primary {
  background: black;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.hero-text .btn-primary:hover {
  background: black;
  transform: translateY(-3px);
}

.hero-text .btn-secondary {
  background: transparent;
  color: black;
  border: 2px solid black;
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-text .btn-secondary:hover {
  background: black;
  color: #fff;
}

/* Right Image/Highlight Card */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card {
  background: black;
  color: #fff;
  padding: 50px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.image-card:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 28px rgba(0,0,0,0.25);
}

/* Responsive (Tablet / Mobile) */
@media screen and (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 30px;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-image {
    margin-top: 30px;
  }
}


/* Buttons */
.btn {
  background: black;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: black;
}

/* Contact */
.contact {
  padding: 50px;
  text-align: center;
  background: #f4f4f4;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact button {
  cursor: pointer;
  border: none;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 30px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 30px;
}

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

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

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

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
     

