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

/* Body */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #f5f5f5;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #003366; /* Dark blue */
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #005fa3;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px; /* Reduced padding for smaller screens */
  }

  .logo-container {
    margin-bottom: 10px;
  }
} 
/* Hide nav links completely on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
}
 

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background-color: #e8eef5;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 750px;
  padding: 100px;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  font-weight: 400;
}

.home-contact-button {
  display: inline-block;
  background-color: #002147; /* Deep blue */
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.home-contact-button:hover {
  background-color: #013069;
}


.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 0px;
  }

  .hero-content, .hero-image {
    max-width: 100%;
    margin-top: 20px;
    padding: 0px;
  }

}
/* About Us Section */
.about-section {
  background-color: white;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #001f3f; /* Deep navy blue */
  color: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

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

.why-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  border: 1px solid #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  background-color: transparent;
}

.why-card img {
  width: 64px;
  height: auto;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}

.our-gemstones-section {
  background-image: url('https://i.ibb.co/SXhJ7HJN/Ourgems-Ceylon.png');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #002147;
  text-align: center;
}

.our-gemstones-overlay {
  background-color: rgba(255, 255, 255, 0.4); /* 40% opaque white */
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 12px;
}

.our-gemstones-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.our-gemstones-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .our-gemstones-content h2 {
    font-size: 26px;
  }

  .our-gemstones-content p {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}
.contact-section {
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  padding: 80px 30px;
  color: #002147;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-details p {
  margin: 5px 0;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form button {
  background-color: #002147;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #013069;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* Footer */
.footer {
  background-color: #001f3f; /* Deep navy blue */
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-top: 40px;
}

.footer p {
  margin: 0;
}