@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .wrapper {
    padding: 0 12px;
  }
}
navar .navbar {
  background-color: white;
}

header {
  text-align: center;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75em 3em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu li {
  margin: 0 2em;
  list-style: none;
}
.nav-menu li a {
  text-decoration: none;
  color: #1A2B4C;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #1A2B4C;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  header {
    padding: 0.75em 1.5em;
    position: relative;
  }
  .logo {
    flex: 1;
    text-align: left;
  }
  .logo img {
    width: 100px !important;
  }
  .hamburger {
    display: flex;
  }
  .nav {
    flex: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav.active {
    max-height: 500px;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    padding: 0;
    justify-content: flex-start;
  }
  .nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 0.75em 1.5em;
    color: #1A2B4C;
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .cta-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  header {
    padding: 0.75em 1em;
  }
  .logo img {
    width: 80px !important;
  }
  .hamburger span {
    width: 22px;
    height: 2.5px;
  }
  .nav.active {
    max-height: 500px;
  }
  .nav-menu li a {
    padding: 0.6em 1em;
    font-size: 14px;
  }
}
.cta-btn {
  background-color: #D4AF37;
  color: white;
  padding: 1em 2em;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background-color: rgb(13, 21.5, 38);
}

/* Base Styles */
.viewall-btn {
  background-color: white;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  display: block;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  margin-top: 4em;
}

/* Footer CSS */
footer {
  background: #1A2B4C;
  color: #fff;
  text-align: center;
  padding: 4em 0;
  padding-bottom: 0;
  /* position: fixed; */
  width: 100%;
  /* bottom: 0; */
}

footer .note {
  margin-top: 3em;
  background-color: #2D5A27;
  margin-bottom: 0;
  padding: 1em 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  width: 200px;
  text-align: left;
}

.footer-menu {
  padding: 0;
}

.footer-menu li {
  list-style-type: none;
  color: white;
  text-align: left;
  padding-bottom: 1.25em;
}

.footer-menu li a {
  display: inline;
  color: white;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
}

.footer-left {
  width: 40%;
  text-align: left;
}

.footer-right {
  width: 30%;
  text-align: left;
}

.footer-middle {
  width: 20%;
  text-align: left;
}

.footer-left p {
  text-align: left;
  font-size: 12px;
  margin-top: 2em;
  width: 400px;
}

.footer-menu img,
.footer-social img {
  width: 26px;
  padding-right: 0.5em;
}

.footer-menu li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}

.footer-social {
  display: flex;
  padding: 0;
  align-items: center;
}

.footer-social li {
  list-style-type: none;
  padding-right: 1.25em;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
  }
  .footer-logo {
    width: 150px;
    text-align: center;
    margin: 0 auto 1em auto;
  }
  .footer-left p {
    text-align: center;
    width: 100%;
    padding: 0 1em;
  }
  .footer-menu li a {
    text-align: center;
  }
  .footer-menu li {
    justify-content: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-right .contact-item.map {
    grid-column: 1;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 0 1em;
  }
  .footer-left,
  .footer-middle,
  .footer-right {
    margin-bottom: 1.5em;
  }
  .footer-logo {
    width: 120px;
  }
  .footer-menu li {
    font-size: 14px;
    padding-bottom: 1em;
    justify-content: center;
  }
  .footer-menu li a {
    font-size: 14px;
  }
  .footer-menu img {
    width: 18px;
    flex-shrink: 0;
  }
  .footer-left p {
    font-size: 11px;
  }
  .footer-social li {
    padding-right: 1em;
  }
  footer .note {
    font-size: 12px;
    padding: 0.75em 1em;
  }
}
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: url("../images/background.png") no-repeat center center/cover;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 76, 0.3);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
}
.hero-content .establishment {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: #d4af37;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 20px;
  }
  .hero-content {
    padding: 30px 20px;
    max-width: 100%;
  }
  .hero-content .establishment {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  .hero-content {
    padding: 20px 15px;
    border-radius: 5px;
  }
}
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
  }
}

.btn {
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.btn-primary {
  background-color: #d4af37;
  color: #1a2b4c;
}
.btn-primary:hover {
  background-color: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  transform: translateY(-2px);
}
.btn-secondary {
  border: 2px solid #f9f9f7;
  color: #f9f9f7;
}
.btn-secondary:hover {
  background: #f9f9f7;
  color: #1a2b4c;
}
@media (max-width: 768px) {
  .btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

.products {
  padding: 80px 20px;
  background-color: #f9f9f7;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
.products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.products .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.products .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 10px;
}
.products .section-header p {
  color: #345698;
}
@media (max-width: 768px) {
  .products .section-header {
    margin-bottom: 30px;
  }
  .products .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
  .products .section-header p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .products .section-header {
    margin-bottom: 20px;
  }
  .products .section-header h2 {
    font-size: 1.5rem;
  }
  .products .section-header p {
    font-size: 12px;
  }
}
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .products .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .products .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .products .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .products {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .products {
    padding: 30px 12px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .products .container {
    padding: 0 10px;
  }
}
.products .product-card {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.products .product-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.products .product-card .product-img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1em 0;
}
.products .product-card .product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #1a2b4c;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
}
.products .product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #1a2b4c;
  margin-bottom: 15px;
}
.products .product-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}
.products .product-card .gsm {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #d4af37;
  margin-bottom: 20px;
}
.products .product-card .view-details {
  text-decoration: none;
  font-weight: 600;
  color: #1a2b4c;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.products .product-card .view-details:hover {
  color: #d4af37;
}
@media (max-width: 768px) {
  .products .product-card {
    padding: 20px;
  }
  .products .product-card h3 {
    font-size: 1.25rem;
  }
  .products .product-card p {
    font-size: 0.85rem;
  }
  .products .product-card .product-img {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .products .product-card {
    padding: 15px;
  }
  .products .product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .products .product-card p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  .products .product-card .gsm {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
  .products .product-card .product-img {
    height: 120px;
    margin: 0.75em 0;
  }
}

.knowmore {
  display: block;
  margin: 0 auto;
  color: #1A2B4C;
  margin-top: 2em;
}
.knowmore:hover {
  color: #d4af37;
}

.aboutus {
  background-color: #f9f9f7;
  padding: 80px 20px;
}
.aboutus .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.aboutus .section-header {
  text-align: center;
}
.aboutus .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 10px;
}
.aboutus .section-header p {
  color: #345698;
}
@media (max-width: 768px) {
  .aboutus .section-header h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .aboutus .section-header h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .aboutus {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .aboutus {
    padding: 30px 0;
  }
}

.leftalign {
  padding-top: 2em;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 600;
}
.leftalign span {
  font-size: 1.25rem;
  color: #d4af37;
  font-weight: 700;
}
@media (max-width: 768px) {
  .leftalign {
    font-size: 14px;
    padding-top: 1.5em;
  }
  .leftalign span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .leftalign {
    font-size: 12px;
    padding-top: 1em;
    line-height: 1.5em;
  }
  .leftalign span {
    font-size: 0.95rem;
  }
}

.getintouch {
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}
.getintouch .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.getintouch .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.getintouch .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 15px;
}
.getintouch .section-header p {
  color: #345698;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2em;
}

.getintouch .section-header a.btn {
  margin-top: 1.5em;
  display: inline-block;
}
@media (max-width: 768px) {
  .getintouch .section-header {
    margin-bottom: 30px;
  }
  .getintouch .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .getintouch .section-header p {
    font-size: 14px;
    width: 90%;
  }
}
@media (max-width: 480px) {
  .getintouch .section-header {
    margin-bottom: 20px;
  }
  .getintouch .section-header h2 {
    font-size: 1.5rem;
  }
  .getintouch .section-header p {
    font-size: 12px;
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .getintouch {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .getintouch {
    padding: 30px 0;
  }
}

.ctaform {
  margin-top: 3em;
}
.ctaform input {
  width: 30%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.ctaform button {
  background-color: #d4af37;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.ctaform button:hover {
  background-color: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .ctaform {
    margin-top: 2em;
  }
  .ctaform input {
    width: 50%;
    padding: 10px;
    font-size: 14px;
  }
  .ctaform button {
    padding: 10px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .ctaform {
    margin-top: 1.5em;
  }
  .ctaform input {
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }
  .ctaform button {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
  }
}

#banner {
  height: 35vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background-image: url("../images/bggg.png");
  background-color: rgba(0, 0, 0, 0.5) !important;
  background-blend-mode: overlay;
  padding: 20px;
}
#banner .banner-heading {
  font-size: 60px;
  color: white;
  font-family: Bebas Neue;
  letter-spacing: 5px;
}
#banner p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  #banner {
    height: 25vh;
    min-height: 200px;
  }
  #banner .banner-heading {
    font-size: 40px;
    letter-spacing: 2px;
  }
  #banner p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #banner {
    height: 20vh;
    min-height: 150px;
  }
  #banner .banner-heading {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  #banner p {
    font-size: 12px;
  }
}

#contact {
  padding: 5em 0;
  text-align: center;
  background-color: #f9f9f7;
  overflow-x: hidden;
}
#contact .contact-container {
  display: flex;
  gap: 2em;
}
#contact form {
  width: 50%;
  margin: 0 auto;
}
#contact label {
  color: #333;
}
#contact input {
  color: #333;
}
#contact .submit-btn {
  color: white;
}
#contact .contact-container {
  margin-top: 3em;
}
#contact .contact-info {
  display: grid;
  width: 50%;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  justify-content: space-between;
  margin-top: 3em;
  margin: 0 auto;
}
#contact .contact-info img {
  width: 50px;
}
#contact .contact-info .contact-item {
  background-color: white;
  padding: 1.5em;
  border-radius: 5px;
  overflow: hidden;
}
#contact .contact-info .contact-item img {
  margin-bottom: 1em;
}
#contact .contact-info .contact-item a {
  text-decoration: none;
  color: black;
}
#contact .contact-info .contact-item.map {
  grid-column: 1/3;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
}
#contact .contact-info .contact-item.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}
#contact .contact-form {
  width: 50%;
  background-color: white;
  margin-left: 2em;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #contact {
    padding: 3em 0;
  }
  #contact .contact-container {
    flex-direction: column;
    gap: 1.5em;
  }
  #contact form {
    width: 100%;
  }
  #contact .contact-info {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5em;
    margin: 0;
  }
  #contact .contact-info .contact-item.map {
    grid-column: 1;
    padding: 0;
  }
  #contact .contact-info .contact-item.map iframe {
    height: 300px;
  }
  #contact .contact-form {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  #contact {
    padding: 2em 0;
  }
  #contact .contact-container {
    gap: 1em;
  }
  #contact .contact-info img {
    width: 40px;
  }
  #contact .contact-info .contact-item.map iframe {
    height: 250px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.submit-btn {
  background-color: #d4af37;
  color: white;
  font-weight: 500;
  padding: 1em 3em;
  border: none;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.form-field {
  position: relative;
  margin: 32px 0;
  width: 80%;
}

.input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #000;
  font-family: "Open Sans", sans-erif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  background-color: transparent;
  outline: none;
  color: whitesmoke;
}

.label {
  position: absolute;
  left: 0px;
  bottom: 11px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #ffffff;
  cursor: text;
  transition: transform 0.2s ease-in-out;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
  transform: translateY(-30px);
}

@media (max-width: 768px) {
  .submit-btn {
    padding: 0.75em 2em;
    font-size: 14px;
  }
  .form-field {
    margin: 24px 0;
    width: 90%;
  }
  .input-text {
    font-size: 16px;
    height: 32px;
  }
  .label {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .submit-btn {
    padding: 0.75em 1.5em;
    font-size: 12px;
  }
  .form-field {
    margin: 20px 0;
    width: 100%;
  }
  .input-text {
    font-size: 14px;
    height: 30px;
  }
  .label {
    font-size: 12px;
  }
}
.narrative {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4em 0;
}
.narrative h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 50px;
}
.narrative .leftcol {
  width: 50%;
}
.narrative .right-col {
  width: 50%;
  padding-left: 2em;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 600;
  color: #1A2B4C;
}
.narrative .right-col span {
  color: #d4af37;
  font-weight: 700;
}
@media (max-width: 768px) {
  .narrative {
    flex-direction: column;
    padding: 2em 0;
    align-items: flex-start;
  }
  .narrative h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    width: 100%;
  }
  .narrative .leftcol {
    width: 100%;
    margin-bottom: 2em;
  }
  .narrative .right-col {
    width: 100%;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.6em;
  }
}
@media (max-width: 480px) {
  .narrative {
    padding: 1.5em 0;
  }
  .narrative h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .narrative .right-col {
    font-size: 12px;
    line-height: 1.5em;
  }
}

.leftcol img {
  width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .leftcol img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .leftcol img {
    max-width: 100%;
  }
}

.timeline-section {
  padding: 80px 0;
  background: #f9f9f7;
  border-radius: 10px;
}
.timeline-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-top: 0;
  text-align: center;
}
.timeline-section span {
  text-align: center;
  display: block;
  color: #d4af37;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .timeline-section {
    padding: 50px 0;
  }
  .timeline-section h2 {
    font-size: 1.75rem;
  }
  .timeline-section span {
    margin-bottom: 3em;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .timeline-section {
    padding: 30px 0;
  }
  .timeline-section h2 {
    font-size: 1.5rem;
  }
  .timeline-section span {
    margin-bottom: 2em;
    font-size: 0.8rem;
  }
}
.timeline-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgba(212, 175, 55, 0.5);
}
@media (min-width: 768px) {
  .timeline-section .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline-section .timeline-item {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .timeline-section .timeline-item {
    width: 50%;
  }
  .timeline-section .timeline-item:nth-child(odd) {
    left: -37px;
    padding-right: 40px;
    text-align: right;
  }
  .timeline-section .timeline-item:nth-child(odd) .timeline-marker {
    right: -6px;
  }
  .timeline-section .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 37px;
    text-align: left;
  }
  .timeline-section .timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
  }
}
.timeline-section .timeline-item .timeline-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #1a2b4c;
  border: 2px solid #d4af37;
  border-radius: 50%;
  top: 0;
}
@media (max-width: 767px) {
  .timeline-section .timeline-item .timeline-marker {
    left: -6px;
  }
}
@media (max-width: 767px) {
  .timeline-section .timeline-item {
    padding-left: 30px;
  }
}
.timeline-section .timeline-item .era {
  display: block;
  color: #d4af37;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.timeline-section .timeline-item h3 {
  font-family: "Playfair Display", serif;
  color: #1a2b4c;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.timeline-section .timeline-item p {
  color: #345698;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .timeline-section .timeline-item h3 {
    font-size: 1.25rem;
  }
  .timeline-section .timeline-item .era {
    font-size: 0.8rem;
  }
  .timeline-section .timeline-item p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .timeline-section .timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .timeline-section .timeline-item .era {
    font-size: 0.75rem;
  }
  .timeline-section .timeline-item p {
    font-size: 0.8rem;
  }
}

.founders-section {
  padding: 80px 0;
  margin-bottom: 2em;
}
.founders-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 10px;
  text-align: center;
}
.founders-section p {
  color: #345698;
  text-align: center;
}
@media (max-width: 768px) {
  .founders-section {
    padding: 50px 0;
    margin-bottom: 1.5em;
  }
  .founders-section h2 {
    font-size: 1.75rem;
  }
  .founders-section p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .founders-section {
    padding: 30px 0;
    margin-bottom: 1em;
  }
  .founders-section h2 {
    font-size: 1.5rem;
  }
  .founders-section p {
    font-size: 12px;
  }
}

.founder-photos {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 5em;
}
.founder-photos img {
  width: 300px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2%;
}
.founder-photos .photo-item {
  text-align: center;
}
.founder-photos .photo-item p {
  margin-top: 1em;
  font-weight: 600;
  color: #1A2B4C;
}
@media (max-width: 768px) {
  .founder-photos {
    flex-direction: column;
    align-items: center;
    gap: 2em;
    margin-top: 50px;
  }
  .founder-photos img {
    width: 250px;
    height: 300px;
  }
  .founder-photos .photo-item p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .founder-photos {
    gap: 1.5em;
    margin-top: 30px;
  }
  .founder-photos img {
    width: 200px;
    height: 250px;
  }
  .founder-photos .photo-item p {
    font-size: 12px;
    margin-top: 0.75em;
  }
}

.expertise {
  padding: 80px 0;
}
.expertise .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.expertise .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1a2b4c;
  margin-bottom: 10px;
}
.expertise .section-header p {
  color: #345698;
}
@media (max-width: 768px) {
  .expertise .section-header {
    margin-bottom: 30px;
  }
  .expertise .section-header h2 {
    font-size: 1.75rem;
  }
  .expertise .section-header p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .expertise .section-header {
    margin-bottom: 20px;
  }
  .expertise .section-header h2 {
    font-size: 1.5rem;
  }
  .expertise .section-header p {
    font-size: 12px;
  }
}
.expertise .core-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3em;
}
@media (max-width: 1024px) {
  .expertise .core-container {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .expertise .core-container {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.expertise .core {
  background-color: white;
  padding: 2em;
  border-radius: 5px;
  text-align: center;
}
.expertise .core img {
  width: 100px;
  margin-bottom: 1em;
}
.expertise .core h3 {
  font-family: "Playfair Display", serif;
  color: #1a2b4c;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.expertise .core p {
  color: #345698;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .expertise .core {
    padding: 1.5em;
  }
  .expertise .core img {
    width: 80px;
  }
  .expertise .core h3 {
    font-size: 1.1rem;
  }
  .expertise .core p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .expertise .core {
    padding: 1em;
  }
  .expertise .core img {
    width: 60px;
  }
  .expertise .core h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .expertise .core p {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .expertise {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .expertise {
    padding: 30px 0;
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: "Montserrat", sans-serif;
}
.whatsapp-widget .wa-float-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-widget .wa-float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-widget .wa-float-btn .wa-icon {
  width: 32px;
  height: 32px;
}
.whatsapp-widget .wa-float-btn .wa-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}
.whatsapp-widget .wa-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.whatsapp-widget .wa-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.whatsapp-widget .wa-header {
  background-color: #1A2B4C;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.whatsapp-widget .wa-header .wa-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #D4AF37;
}
.whatsapp-widget .wa-header .wa-head-info h4 {
  color: #ffffff;
  margin: 0;
  font-size: 16px;
}
.whatsapp-widget .wa-header .wa-head-info .online-status {
  color: rgb(230.049382716, 208.5802469136, 138.950617284);
  font-size: 11px;
}
.whatsapp-widget .wa-header .wa-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  cursor: pointer;
}
.whatsapp-widget .wa-header .wa-close:hover {
  color: #ffffff;
}
.whatsapp-widget .wa-body {
  padding: 20px;
  background-color: #f0f2f5;
  background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
  min-height: 150px;
}
.whatsapp-widget .wa-body .wa-message-bubble {
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 0 12px 12px 12px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  line-height: 1.4;
}
.whatsapp-widget .wa-body .wa-message-bubble .wa-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
  margin-top: 5px;
}
.whatsapp-widget .wa-footer {
  padding: 15px;
  background: #ffffff;
  border-top: 1px solid #eee;
}
.whatsapp-widget .wa-footer .wa-btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 90%;
  background-color: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}
.whatsapp-widget .wa-footer .wa-btn-send:hover {
  background-color: rgb(33.1955645161, 189.3044354839, 91.5120967742);
}

@media (max-width: 480px) {
  .whatsapp-widget {
    right: 20px;
    bottom: 20px;
  }
  .whatsapp-widget .wa-chat-box {
    width: 280px;
  }
}
.inventory {
  padding: 80px 0;
  background-color: #f9f9f7;
}
.inventory .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.inventory .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #1A2B4C;
  margin-bottom: 10px;
}
.inventory .section-header p {
  color: #345698;
}
@media (max-width: 768px) {
  .inventory .section-header {
    margin-bottom: 30px;
  }
  .inventory .section-header h2 {
    font-size: 1.75rem;
  }
  .inventory .section-header p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .inventory .section-header {
    margin-bottom: 20px;
  }
  .inventory .section-header h2 {
    font-size: 1.5rem;
  }
  .inventory .section-header p {
    font-size: 12px;
  }
}
.inventory .products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 5em;
}
@media (max-width: 1024px) {
  .inventory .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .inventory .products-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2em;
  }
}
@media (max-width: 768px) {
  .inventory {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .inventory {
    padding: 30px 0;
  }
}
.inventory .products-card {
  padding: 1em;
  background-color: white;
  padding-bottom: 1em;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.inventory .products-card:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.inventory .products-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.inventory .products-card h3 {
  font-family: "Playfair Display", serif;
  color: #1A2B4C;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.inventory .products-card p {
  color: rgb(63, 63, 63);
  line-height: 1.6;
  font-size: 14px;
}
.inventory .products-card p span {
  font-weight: 600;
  color: #1A2B4C;
}
.inventory .products-card button {
  margin-top: 2em;
  margin-bottom: 0;
  display: block;
  width: 100%;
  background-color: #f9f9f7;
  border: none;
  padding: 1em;
  cursor: pointer;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 700;
  color: #D4AF37;
  transition: all 0.3s ease;
}
.inventory .products-card button:hover {
  background-color: #D4AF37;
  color: white;
}
@media (max-width: 768px) {
  .inventory .products-card {
    padding: 0.75em;
  }
  .inventory .products-card img {
    height: 160px;
  }
  .inventory .products-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .inventory .products-card p {
    font-size: 12px;
  }
  .inventory .products-card button {
    padding: 0.75em;
    font-size: 0.9rem;
    margin-top: 1.5em;
  }
}
@media (max-width: 480px) {
  .inventory .products-card {
    padding: 0.6em;
  }
  .inventory .products-card img {
    height: 140px;
    margin-bottom: 8px;
  }
  .inventory .products-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .inventory .products-card p {
    font-size: 11px;
    line-height: 1.4;
  }
  .inventory .products-card button {
    padding: 0.6em;
    font-size: 0.8rem;
    margin-top: 1em;
  }
}

.bgcol {
  background-color: #f9f9f7;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .modal-content {
  background: white;
  padding: 2.5em;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  animation: slideUp 0.3s ease;
}

.modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #f9f9f7;
  padding-bottom: 1em;
}

.modal .modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #1A2B4C;
  margin: 0;
}

.modal .modal-header .modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .modal-header .modal-close:hover {
  color: #1A2B4C;
}

.modal .quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

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

.modal .quote-form .form-group label {
  font-weight: 600;
  color: #1A2B4C;
  margin-bottom: 0.5em;
  font-size: 14px;
}

.modal .quote-form .form-group input,
.modal .quote-form .form-group select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.modal .quote-form .form-group input:focus,
.modal .quote-form .form-group select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modal .quote-form .form-group input::placeholder,
.modal .quote-form .form-group select::placeholder {
  color: #999;
}

.modal .quote-form button[type="submit"] {
  padding: 12px 30px;
  background-color: #D4AF37;
  color: #1A2B4C;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.modal .quote-form button[type="submit"]:hover {
  background-color: #c49625;
  transform: translateY(-2px);
}

.modal .quote-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .modal .modal-content {
    padding: 2em;
    width: 95%;
    max-width: 450px;
  }

  .modal .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal .quote-form .form-group {
    gap: 0.8em;
  }

  .modal .quote-form .form-group label {
    font-size: 13px;
  }

  .modal .quote-form .form-group input,
  .modal .quote-form .form-group select {
    font-size: 13px;
    padding: 8px 10px;
  }

  .modal .quote-form button[type="submit"] {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 10px;
  }

  .modal .modal-content {
    padding: 1.5em;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .modal .modal-header {
    margin-bottom: 1em;
    padding-bottom: 0.75em;
  }

  .modal .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal .modal-header .modal-close {
    font-size: 24px;
  }

  .modal .quote-form {
    gap: 1.2em;
  }

  .modal .quote-form .form-group {
    gap: 0.5em;
  }

  .modal .quote-form .form-group label {
    font-size: 12px;
  }

  .modal .quote-form .form-group input,
  .modal .quote-form .form-group select {
    font-size: 12px;
    padding: 8px 10px;
  }

  .modal .quote-form button[type="submit"] {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=styles.css.map */