    /* Theme Colors */
	:root {
	  --violet: #6a0dad;
	  --violet-dark: #4b087c;
	  --red: #d90429;
	  --white: #ffffff;
	}

	/* Fix mobile navbar alignment */
	.navbar .container {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}

	/* Prevent logo from being too wide */
	.navbar-brand {
	  display: flex;
	  align-items: center;
	  white-space: nowrap;
	}

	/* Adjust mobile toggle button */
	.navbar-toggler {
	  border: none;
	  outline: none;
	}

	/* Ensure menu stays on right */
	@media (max-width: 992px) {
	  .navbar-brand img {
		height: 45px; /* smaller logo for mobile */
	  }

	  .navbar-brand span {
		font-size: 18px; 
	  }
	}
  
	/* Navbar */
	.navbar {
	  background-color: var(--white) !important;
	  border-bottom: 3px solid var(--violet);
	}

	.navbar-brand span {
	  color: var(--violet);
	  font-size: 22px;
	  font-weight: 700;
	}

	.nav-link {
	  color: var(--violet-dark) !important;
	  font-weight: 600;
	}

	.nav-link:hover,
	.nav-link.active {
	  color: var(--red) !important;
	}

	/* Logo */
	.navbar-brand img {
	  height: 60px;
	  width: auto;
	}


	/* Hero Section */
	.hero-section {
	  background: linear-gradient(to right, var(--violet), var(--red));
	  color: var(--white);
	  padding: 120px 20px;
	  text-align: center;
	}

	.hero-section h1 {
	  font-size: 48px;
	  font-weight: 700;
	}

	.hero-section p {
	  font-size: 18px;
	  margin-top: 10px;
	}

	.hero-section .btn {
	  background-color: var(--white) !important;
	  color: var(--violet-dark);
	  border: 2px solid var(--white);
	  transition: 0.3s;
	}

	.hero-section .btn:hover {
	  background-color: var(--red) !important;
	  color: var(--white);
	}


	/* Service Boxes */
	.service-box {
	  padding: 30px;
	  background: var(--white);
	  border-radius: 10px;
	  border-left: 6px solid var(--violet);
	  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
	  transition: 0.3s;
	}
	
	.row.g-4 > div {
	  display: flex;             /* column stretches full height */
	}


	.service-box:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
	  border-left: 6px solid var(--red);
	}


	/* Values List */
	.list-group-item {
	  font-size: 18px;
	  padding: 15px;
	  background-color: var(--white);
	  border-left: 5px solid var(--violet);
	}

	.list-group-item:hover {
	  background-color: #f9f0ff;
	  border-left: 5px solid var(--red);
	}


	/* Footer */
	footer {
	  background: var(--violet-dark);
	  padding: 20px;
	  text-align: center;
	  color: var(--white);
	  margin-top: 40px;
	  font-size: 16px;
	}
	
	/* SECTION STYLING */
.values-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #5a2abf; /* Violet */
}

.section-subtitle {
    color: #444;
    max-width: 600px;
    margin: 10px auto 40px;
}

/* CARDS CONTAINER */
.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* VALUE CARDS */
.value-card {
    background: #ffffff;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.35s ease-in-out;
    border-top: 4px solid #ff284f; /* red accent */
    cursor: pointer;

    /* Animation on page load */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.6s forwards;
}

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }
.value-card:nth-child(5) { animation-delay: 0.4s; }

/* Hover Animation */
.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 12px 22px rgba(90, 42, 191, 0.25);
    border-color: #5a2abf; /* violet glow */
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .value-card {
        width: 90%;
    }
}

/* FOOTER */
.altpeak-footer {
    background: #5a2abf; /* Violet */
    color: #fff;
    padding: 50px 0 20px;
    font-family: "Poppins", sans-serif;
}

/* FLEX CONTAINER – EQUAL COLUMNS */
.footer-container {
    display: flex;
    justify-content: space-between; /* equal spacing */
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMNS */
.footer-col {
    flex: 1;                     /* makes all columns equal */
    min-width: 250px;            /* keeps layout intact on mobiles */
    text-align: left;
}

/* TITLES */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* LINKS LIST */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff284f; /* red */
    padding-left: 5px;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    text-align: left;
    font-size: 14px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* BIG CLEAR LOGO */
.main-logo {
  height: 150px;     /* Increase size */
  width: auto;
}

/* Reduce navbar height */
.custom-nav {
  padding-top: 10px !important;
  padding-bottom: 5px !important;
  min-height: 110px; /* fits the larger logo */
}

/* Align menu items to bottom-right */
.custom-nav .navbar-collapse {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
}

/* Nav-link colors */
.nav-link {
  color: #4b087c !important;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: #d90429 !important;
}

/* Mobile fix */
@media (max-width: 992px) {
  .main-logo {
    height: 70px;
  }
  .navbar-collapse {
    text-align: right !important;
  }
}


.service-image {
  width: 100%;
  height: 360px; /* adjust if needed */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .service-image {
    height: 250px;
  }
}

.product-image {
  width: 70%;
  height: 270px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

hr {
  margin: 40px 0;
  border-top: 1px solid #ddd;
}


.custom-image {
  width: 70%;
  height: 270px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.values-section {
  background: #f9fafb;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.values-container .value-card {
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.values-container .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .value-icon {
    width: 60px;
    height: 60px;
  }
  .value-card p {
    font-size: 14px;
  }
}

.contact-section {
  padding: 70px 20px;
  background-color: #ffffff;
}

.contact-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #bbb;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffb400;
  box-shadow: 0 0 6px rgba(255,180,0,0.6);
  outline: none;
}

.btn-submit {
  background-color: #C43FB8;
  color: #ffffff;   /* Changed to white */
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background-color: #730969;
  transform: scale(1.02);
  color: #fff;
}


/* FORM MESSAGE */
#msg {
  text-align: center;
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
  color: green;
}

/* ================= RESPONSIVE VIEW ================= */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section h3 {
    font-size: 18px;
  }

  .contact-form {
    padding: 25px;
  }
}

.card-header:hover {
  background-color: #eae6f5;
  transition: 0.3s ease;
}

/* Left side meu option - Mobile menu left side vertical alignment */
/*@media (max-width: 992px) {
  #navbarNav {
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start !important;
    padding-left: 10px;
    margin-top: 10px; 
    gap: 0 !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
    padding: 4px 0; 
  }
} */

/* Mobile menu right side vertical alignment */
@media (max-width: 992px) {
  #navbarNav {
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-end !important;  /* align items right */
    text-align: right !important;      /* align text right */
    padding-right: 10px;               /* spacing from the right */
    margin-top: 10px;
    gap: 0 !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
    padding: 4px 0;
  }
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.explore-link {
  margin-top: 15px;
  text-align: center;
}

.explore-btn {
  display: inline-block;
  background-color: #6a0dad; /* Violet */
  color: #fff;
  padding: 6px 14px;       /* Reduced button height and width */
  border-radius: 6px;      /* Slightly smaller curves */
  font-weight: 600;
  font-size: 13px;         /* Smaller text */
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-btn:hover {
  background-color: #520c9b; /* Darker violet hover */
  color: #ffffff;
  transform: translateY(-2px); /* Smaller hover lift */
}

.service-item {
  margin-bottom: 18px;
}

.white-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;       /* spacing between images */
  flex-wrap: wrap;  /* allows wrapping on smaller screens */
}

.service-image {
  width: 90px;
  height: 140px;
  object-fit: contain;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .service-image {
    width: 80px;
    height: 110px;
    margin-bottom: 10px;
  }
}


.brand-wrapper {
  position: relative;
  display: inline-block;
}

.brand-bottom-right {
  display: flex;
  align-items: flex-end; /* Aligns text to the bottom of the image */
  text-decoration: none;
}

.brand-bottom-right img {
  display: block;
}

.brand-bottom-right .brand-text {
  margin-left: 8px; /* spacing between image and text */
  font-size: 18px;
}


.services-image {
  width: 100%;
  height: 360px; /* adjust if needed */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
