/*
Theme Name: Group Himalayan Company
Author: Anish Dhamala
Version: 1.0
*/
/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Roboto:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #0c2461;
  --secondary-color: #1e3799;
  --accent-color: #e67e22;
  --border-color: #e0e0e0;
  --light-gray: #f5f6fa;
  --transition: all 0.3s ease;
}

html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2c3e50;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #555;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-full {
  width: 100%;
  margin: 0;
  padding: 80px 15px;
  transition: var(--transition);
}

/* component */
.button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;

  color: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button:active {
  transform: translateY(1px);
}

.button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 255, 0.7);
}
.primary-bg {
  background: var(--primary-color);
}
.accent-bg {
  background: var(--accent-color);
}

.gap {
  display: flex;
  gap: 1vw;
}

/* nabvar */
.header {
  background-color: transparent;
  padding: 20px 40px;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  color: white;
}

.header.scrolled {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  color: black;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  gap: 30px;

}
@media (max-width: 768px) {
  .navbar.active ul {
    display: flex;
    background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
    backdrop-filter: blur(10px); /* apply blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
  }
}

.navbar ul li {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5rem 0 1rem;

  h4,
  p,
  h3 {
    text-align: left;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
  color: wheat;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--light-text);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--light-text);
}

.footer-column address p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.title {
  color: #001b5e;
  font-size: 55px;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 27px;
  line-height: 75px;
  text-shadow: 1px 1px 0 #001b5e;
}

/* banner */
.banner {
  position: relative;
  background: linear-gradient(rgba(59, 89, 166, 0.8), rgba(4, 13, 34, 0.8)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  h3,
  p {
    color: white;
  }
}

/* index page */
/* hero section */
.hero {
  position: relative;
  background: linear-gradient(rgba(59, 89, 166, 0.8), rgba(4, 13, 34, 0.8)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gradient-text {
  background: linear-gradient(90deg, rgb(183, 222, 10), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold; /* optional for extra emphasis */
}
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: white;
}

/* about  section */
.about {
  background-color: white;
}
.about-content {
  margin-top: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  text-align: left;
}

h3 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
p {
  text-align: center;
}

.about-text p {
  font-size: 18px;
  text-align: left;
  margin-bottom: 40px;
}

.about-text {
  flex: 1;
  max-width: 50%;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.about-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* companies section */
.companies {
  background-color: var(--light-gray);
}
.companies-content {
  margin-top: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  text-align: left;
}

h3 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
h4 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 5%;
}
p {
  text-align: center;
}

.companies-text p {
  font-size: 18px;
  text-align: left;
  margin-bottom: 40px;
}

.companies-text {
  flex: 1;
  max-width: 100%;
  background: linear-gradient(rgba(59, 89, 166, 0.8), rgba(4, 13, 34, 0.8)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
  background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.companies-text:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.companies-text p {
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

/* services  section */
.services-highlight {
  background-color: white;

  h4 {
    color: #0c2461;
  }
  h2 {
    text-align: center;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  margin-top: 5%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  margin-top: 5%;
}

/* Tablets: 2 columns */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


.service-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-color);
}

.service-item h3 {
  margin-bottom: 15px;
}

.services-cta {
  text-align: center;
}

/* client section */
.client {
  padding: 60px 0;
  background-color: #f5f7fa;
}

.client h3,
.client p {
  text-align: center;
  margin-bottom: 20px;
}

.client-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 4% 0;
}

.client-container {
  display: flex;
  gap: 40px;
  animation: scroll 10s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  min-width: 200px;
  height: 100px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-wrapper:hover .client-container {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .client-item {
    min-width: 150px;
    height: 80px;
    font-size: 16px;
  }
 .aboutus-text .title{
    text-align: left !important;
    font-size: 45px;
  }
}

/* FAQ section */
.faq {
  background: white;
}

.faq h4 {
  font-size: 36px;
  font-weight: bold;
  color: #0c2461;
  margin-bottom: 10px;
  text-align: left; /* center by default */
}

.faq-content {
  margin-top: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

/* FAQ Text Styles */
.faq-text {
  flex: 1;
  max-width: 50%;
}

.faq-text span {
  font-weight: bold;
}

.faq-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

.faq-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  list-style: none;
}

.faq-text li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 18px;
}

/* FAQ Image Styles */
.faq-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faq-content {
    flex-direction: column;
    align-items: center;
  }

  .faq-text,
  .faq-image {
    max-width: 100%;
    text-align: left;
  }

  .faq-text p {
    text-align: left;
  }

  .faq-text li {
    text-align: left;
    padding-left: 30px;
  }
}

@media (max-width: 576px) {

  .faq h4 {
    font-size: 28px;
  }

  .faq-text p {
    font-size: 14px;
  }

  .faq-text li::before {
    font-size: 16px;
  }
}

/* About Us Hero Section */
.aboutus-content {
  margin-top: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  text-align: left;
}

/* Default Paragraph Alignment */
p {
  text-align: center;
}


/* About Us Text Block */
.aboutus-text {
  flex: 1;
  max-width: 50%;
}

.aboutus-text span {
  font-weight: bold;
}

.aboutus-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin-bottom: 40px;
}

.aboutus-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  list-style: none;
}

.aboutus-text li::before {
  content: "\f005"; /* fa-star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 18px;
}

/* About Us Image Block */
.aboutus-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .aboutus-content {
    flex-direction: column;
    align-items: center;
  }

  .aboutus-text,
  .aboutus-image {
    max-width: 100%;
    text-align: left;
  }

  .aboutus-text p {
    text-align: left;
  }

  .aboutus-text li {
    text-align: left;
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .aboutus-text p {
    font-size: 14px;
  }

  .aboutus-text li::before {
    font-size: 16px;
  }

  .aboutus-image img {
    width: 90%;
  }
}


/* about us vision */
.vision {
  h4 {
    color: #0c2461;
  }
  h2 {
    text-align: center;
  }
}
.missionBg {
  background: var(--light-gray);
}
.objectiveBg {
  background: white;
}

.vision li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  list-style: none;
}

.vision li::before {
  content: "\f058"; /* FontAwesome Unicode for fa-star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  margin-top: 5%;
}

.service-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-color);
}

.service-item h3 {
  margin-bottom: 15px;
}

.services-cta {
  text-align: center;
}

/* Service Project Page */
.category-tabs {
  margin-top: 30px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 24px;
  background-color: rgb(222, 221, 221);
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.tab-content {
  margin-top: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.service-details-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Image & Text Sections */
.service-details-image,
.service-details-text {
  flex: 1;
}

.service-details-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-details-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-details-text p {
  margin-bottom: 25px;
  text-align: left;
}

.service-features {
  margin-bottom: 30px;
}

.service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

/* ========== Responsive Design ========== */

/* Tablets and smaller */
@media (max-width: 992px) {
  .service-details-flex {
    flex-direction: column;
    gap: 20px;
  }

  .service-details-text h3 {
    font-size: 22px;
    text-align: center;
  }

  .service-details-text p {
    text-align: left;
  }

  .service-features li {
    justify-content: left;
  }
}

/* Mobile */
@media (max-width: 576px) {
 
  .tab-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .service-details-text h3 {
    font-size: 20px;
  }

  .service-details-text p {
    font-size: 14px;
  }

  .service-features li i {
    font-size: 16px;
  }

  .service-details-image img {
    width: 90%;
  }
}



/* contact us page */
.contact-info {
  padding: 5rem 0;
 h3,p{
  text-align: left;
 }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-details h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-items {
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  min-width: 30px;
  text-align: center;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.social-contact {
  margin-top: 2rem;
}

.contact-form-container {
  background: linear-gradient(135deg,var(), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md, 16px);
  box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.2));
  padding: 2rem;
  color:black;
}


.contact-form-container h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.map-section {
  padding: 3rem 0 5rem;
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* career page */
.no-jobs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.no-jobs img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.no-jobs img:hover {
  transform: scale(1.05);
}

.no-jobs h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #444;
}

/* Responsive Layout for Navbar */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .navbar.active ul {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
  .consult-button {
    display: none;
  }
}

/* Responsive index page*/
/* hero section  */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.5rem;
  }
  .hero p {
      font-size: 1rem;
  }
}
/* about section */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-image {
    max-width: 100%;
  }

  .about-text a.button {
    padding: 10px 20px;
  }
}