@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');

:root{
 --color-white:	hsl(0, 100%, 100%);
 --color-golden:#926F34;
 --color-black:	hsl(0, 0%, 0%);
 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
   font-family: Garamond, serif;
}

.top-header {
  height: 45px;
  background-color: var(--color-black);
  color:var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  font-size: 15px;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
}

.contact-info span:hover {
  color: var(--color-golden);
}

.contact-info i {
  margin-right: 5px;
  color: var(--color-golden);
}

.contact-info i:hover {
  color: var(--color-golden);
}
.separator {
  display: inline-block;
  width: 2px;
  height: 45px;
  background-color:var(--color-golden);
  vertical-align: middle; 
}

.social-icons a {
  color:var(--color-golden);
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons span {
  margin-right: 15px;
}

.social-icons span:hover {
  color: var(--color-golden);
}

.social-icons span i {
  color:var(--color-golden);
  margin-right: 5px;
}
.social-icons span i:hover {
  color:var(--color-golden);
}

.social-icons a:hover {
  color:var(--color-white);
}

@media screen and (max-width: 992px) {
  .top-header {
    flex-direction: column;
    height: auto;
    padding: 10px 15px;
    text-align: center;
    gap: 10px;
  }

  .contact-info,
  .social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .separator {
    display: none !important;
  }

  .contact-info span,
  .social-icons span {
    margin: 5px;
    display: flex;
    align-items: center;
  }

  .social-icons a {
    margin: 5px;
    font-size: 1.1rem;
  }
}



/* header */
.header {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:var(--color-white);
  color:var(--color-black);
  padding: 10px 20px;
  position: relative;
}

.left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.left h3 {
  margin: 0;                
  line-height: 1;   
  font-family: Garamond, serif;
  font-weight: 900;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center; 
  margin: 0;
  padding: 0;
}

.nav a {
  color:var(--color-black);
   font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--color-golden);
    display: block;
    margin: auto;
    transition: 0.5s;
    
}
.nav ul li:hover::after{
    width: 100%;
    
}
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    background: var(--color-golden);
    z-index: 3;
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    display: none;
    padding: 10px 0;
  }
  .left h3 {
    font-size: 1.5rem;
  }
  .nav a{
    color: #fff;
  }
  .menu-icon {
    display: block;
  }

  #menu-toggle:checked + .menu-icon + .nav ul {
    display: flex;
  }
}


/* footer */

.footer {
  background-color:  var(--color-black);
  color: white;
  padding: 60px 60px 10px;
  /* font-size: 14px; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-family: 'space mono', sans-serif;
  font-weight: 900;
  font-size: 1.4rem; 
  position: relative;
}

.footer-section h3::after {
  content: '';
  background-color: #F07B3F;
  width: 6rem;
  height: 0.15rem;
  position: absolute;
  bottom: -5px; 
  left: 0;
}


.footer-section p {
  transition: all .2s linear;
   font-family: "space mono", sans-serif;
  font-size: .9rem;
  word-spacing: 2px;
  /* line-height: 1.7; */
}
.footer-section p:hover{
  color: #777;
    transition: all .2s linear;
    transform: translateX(4px);
}
.footer-section a {
  color: white;
  margin-top: 10px;
  font-weight: 500;
  font-family: Garamond, serif;
  text-decoration: none;
  line-height: 2;
}

.footer-section a:hover {
  color:  var(--color-golden);
}

.footer-section ul li a i {
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  margin-top: 20px;
}

/* main content */

/* quotation SECTION */
/* Background and Layout */
.quotation-wrapper {
  background-image: url('../images/background2.png'); /* Place the image in the same directory or update the path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items:center;
  justify-content: flex-start;
  padding-left: 5%;
  color: rgba(255, 255, 255, 0.991);
  position: relative;
}

/* Overlay and Styling */
.quotation-content {
  max-width: 500px;
  color: white;
}

.quotation-wrapper h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Great Vibes',cursive;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .quotation-wrapper{
     display: flex;
  align-items:end;
  justify-content: flex-start;
  }
  .quotation-content {
    padding: 20px;
    max-width: 90%;
  }

  .quotation-content h2 {
    font-size: 24px;
  }

  .quotation-content p {
    font-size: 14px;
  }
}


/* ==========About======== */
.about-container {
      display: flex;
      flex-wrap: wrap;
      /* max-width: 1000px; */
      margin: 50px 40px;
      background:#f3eeee;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    }

    .about-image {
      flex: 1 1 300px;
      min-width: 280px;
      height: auto;
    }

    .about-image img {
      margin-top: 7%;
      margin-left: 9%;
      width: 80%;
      height: 80%;
      object-fit: cover;
      border: 3px inset #926F34;
    }

  .logo-heading {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .about-content {
      flex: 2 1 500px;
      padding: 40px 30px;
    }

    .about-content h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #222;
      margin-bottom: 15px;
    }

    .about-content p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    margin: 20px;
  }

  .about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .about-image img {
    width: 90%;
    height: auto;
    margin: 0;
  }

  .about-content {
    padding: 20px;
    text-align: center;
  }

  .logo-heading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .about-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}


    /* inquery */
    .inquery{
      /* width: 94%; */
      margin:0 40px;
      padding: 10px 0;
      background-color: #119aa4;
      color:var(--color-white);
      font-family: Garamond, serif;
      font-weight: 900;
      
    }
    .logoC{
      background-image: url('../images/logoHr.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border:1px solid black; */
  width: 60px;
  height: 60px;
margin: 0 auto;
  /* margin-left:38% ; */
    }

    /*=============================== Reach us  ======================================*/

     .reach-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      background-color: #f3eeee;
      color: #0c0c0c;
      margin: 40px;
      padding: 40px 10px;
      border-radius: 5px;
    }

    .reach-info {
      flex: 1 1 400px;
      padding: 20px 40px;
    }

    .reach-info h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 30px;
    }

    .reach-info h3 {
      font-size: 1.2rem;
      color: #410b31;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .reach-info p {
      font-size: 1rem;
      line-height: 1.6;
    }

    .map-container {
      flex: 1 1 400px;
      min-width: 65%;
      padding: 20px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .reach-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
      }

      .reach-info, .map-container {
        padding: 0 20px;
      }
    }
    

    /*========================= cards ==========================*/

    .card-container {
  display: flex;
  flex-wrap: nowrap;         /* Keeps cards in one row */
  gap: 20px;                  /* Space between cards */
  justify-content: center;
  padding: 40px;
  overflow-x: auto;           /* Allows horizontal scroll on small screens */
}

.card {
  min-width: 300px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
  text-align: center;
}

.card-title {
  font-weight: bold;
  font-size: 1.3rem;
  color: #333;
}

.card-text {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .card-container {
    flex-wrap: wrap;
  }
}
