:root {
  --color1: #eddfcb;
  --color2: #c99e85;
  --color3: #a65d62;
  --color4: #8e324b;
  --color5: #750633;
  --color6: #580527;
}

/* ------------------ About Us Section ------------------ */
.about-us {
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
}

/* Left side: Image Box */
.about-us-img-box {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.img-box {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

/* Small Video Overlay */
.video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 180px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  pointer-events: none;
}

/* Right side: Text Box */
.about-us-text-box .sec-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.about-us-text-box .sec-title h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #555;
}

.about-us-text-box .sec-explain {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

/* Key Features List */
.about-us-core-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.about-us-core-list .item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about-us-core-list .item i {
  color: #ff6ec4;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-us-core-list .item:hover {
  transform: translateX(5px);
}

.about-us-core-list .item:hover i {
  transform: scale(1.3);
  color: #7873f5;
}

/* Contact Button */
.contact-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6ec4, #7873f5, #42e695, #ff6ec4);
  background-size: 400% 400%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 110, 196, 0.5),
    0 0 30px rgba(120, 115, 245, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: gradientBG 6s ease infinite, floatBtn 3s ease-in-out infinite;
}

.contact-circle-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 35px rgba(255, 110, 196, 0.8),
    0 0 45px rgba(120, 115, 245, 0.7);
}

/* Gradient + Floating Animations */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatBtn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ------------------ Responsive ------------------ */
@media (max-width: 991px) {
  .about-us-img-box {
    height: 300px;
  }
  .video-overlay {
    width: 140px;
    height: 80px;
  }
  .about-us-text-box .sec-title h2 {
    font-size: 28px;
  }
  .about-us-text-box .sec-title h3 {
    font-size: 18px;
  }
  .contact-circle-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .about-us {
    padding: 60px 0;
  }
  .about-us-img-box {
    height: 220px;
  }
  .video-overlay {
    width: 120px;
    height: 70px;
    bottom: 10px;
    left: 10px;
  }
}

/* Footer Section styling */

.footer {
  padding-top: 60px;
  background: linear-gradient(118deg, #eddfcb 80%, #580527 100%);
  color: var(--color6);
}

.footer .logo img {
  width: 15rem;
  height: 7rem;
  padding: 8px;
  border-radius: 8px;
}

.footer .footer-title h4 {
  /* color: var(--color2); */
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer .links li a {
  color: var(--color6);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  padding-left: 0;
}

.footer .links li a {
  position: relative;
  overflow: hidden;
}

.footer .links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color6);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .links li a:hover {
  color: var(--color6);
  text-decoration: none;
}

.footer .links li a:hover::after {
  width: 100%;
}

.footer .icon li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #262442;
  color: var(--color1);
  font-size: 16px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 2px;
  transition: background 0.3s, color 0.3s;
}

.footer .icon li a:hover {
  background: var(--color3);
  text-decoration: none;
  color: var(--color1);
}

.list-inline-item i{
  padding: 10px;
}

.list-unstyled {
  padding-left: 0;
  list-style: circle;
  line-height: 2rem;
}

.copyright {
  margin-top: 40px;
  padding: 20px 0;
  background: var(--color3);
  font-size: 16px;
}

.copyright a {
  color: var(--color1);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

.scroll-up {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  display: none;
}

.scroll-up a {
  background: var(--color6);
  color: var(--color1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.scroll-up a:hover {
  background: #1c1a30;
}

@media (max-width: 767px) {
  .footer {
    padding-top: 30px;
  }

  .copyright {
    font-size: 14px;
    text-align: center;
  }
}

/* index styling */
/* Apply Cal Sans to body and paragraphs */

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.hero,
.navbar,
.section {
  max-width: 100%;
  overflow-x: hidden;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color6);
  font-family: "Playfair Display SC", serif;
  font-weight: 700;
  overflow-x: hidden;
}

/* Elegant headings with Playfair Display SC */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display SC", serif;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Stylish handwritten text with Love Light */
.tagline,
.fancy-text {
  font-family: "Love Light", cursive;
  font-size: 8rem;
  font-weight: normal;
  color: var(--color6);
  text-shadow: 0 2px 12px #fff, 0 0 2px #fff;
}

/* ---------------- Header Section ---------------- */
.header {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.header-carousel .sec-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: table;
}

.header-carousel .table-cell {
  display: table-cell;
  vertical-align: middle;
  height: 90vh;
  position: relative;
}

.header-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: 1;
}

.header .banner {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeInUp 1.2s ease forwards;
}

.header .top-handline {
  font-size: 18px;
  font-weight: 500;
  color: #ff6ec4;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1.2s ease forwards;
}

.header .handline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.header-list-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.header-list-features .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-list-features .item i {
  color: #ff6ec4;
  font-size: 18px;
}

.header-list-features .item h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Buttons */
.btn-box {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-1 {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: var(--color4);
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-1 span {
  position: relative;
  z-index: 2;
}

.btn-1:hover {
  background: var(--color3);
  transform: scale(1);
}

/* Additional button style */
.btn-2 {
  background: #ff6ec4;
  color: #fff;
}

.ml-30 {
  margin-left: 15px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .header .handline {
    font-size: 32px;
  }

  .header .top-handline {
    font-size: 16px;
  }

  .btn-1 {
    padding: 10px 25px;
    font-size: 14px;
  }

  .header-list-features {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .header {
    height: 70vh;
  }

  .header .handline {
    font-size: 24px;
  }

  .btn-1 {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Swiper Slide */
.swiper-slide {
  position: relative;
  height: 100vh;
  /* Full screen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Add dark overlay */
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Curve Overlay Shape */
.curve-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: url("curve-shape.svg") no-repeat center bottom;
  background-size: cover;
  z-index: 2;
}

/* Content Styling */
.slide-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 700px;
}

.slide-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f1f1f1;
  animation: fadeInUp 1s ease forwards;
}

/* Highlighted blinking button ------------------------------------------------- */
.highlight-blink {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  color: white !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  animation: blinkGlow 1.5s infinite alternate;
}

/* Optional hover effect */
.highlight-blink:hover {
  transform: scale(1.05);
}

/* Blinking/glow animation */
@keyframes blinkGlow {
  0% {
    box-shadow: 0 0 10px #ff6ec4, 0 0 20px #7873f5;
  }

  50% {
    box-shadow: 0 0 20px #ff6ec4, 0 0 40px #7873f5;
  }

  100% {
    box-shadow: 0 0 10px #ff6ec4, 0 0 20px #7873f5;
  }
}

.hero-advanced {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  background: none;
}

.background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: url("images/header/slider3.jpg") no-repeat center center/cover;
  filter: brightness(0.3) blur(4px);
  z-index: -1;
}

.background-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.subtitle {
  font-size: 1.3rem;
  color: #ff6a00;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
}

.subtitle2 {
  font-size: 2.3rem;
  color: var(--color1);
  font-weight: 600;
  margin-bottom: -4rem;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
  margin-left: -10rem;
}

.subtitle3 {
  font-size: 1.8rem;
  color: var(--color1);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
  margin-right: -11rem;
}

.subtitle4 {
  font-size: 1.3rem;
  color: var(--color1);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
}

/* Main heading animation */
.animated-heading span,
.animated-subheading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) skewY(10deg);
  font-weight: 900;
  font-size: 3rem;
}

.animated-subheading span {
  font-weight: 700;
  font-size: 2rem;
}

/* Half white, half orange animation effect */
.animated-heading span:nth-child(odd),
.animated-subheading span:nth-child(odd) {
  color: #fff;
}

.animated-heading span:nth-child(even),
.animated-subheading span:nth-child(even) {
  color: #ff6a00;
  background: linear-gradient(90deg, #ff6a00, #ffb347, #ff6a00);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientSlide 2s ease-in-out infinite alternate;
}

/* Slide-up and skew animation */
@keyframes slideSkew {
  0% {
    opacity: 0;
    transform: translateY(50px) skewY(10deg) scale(1.2);
  }

  50% {
    opacity: 1;
    transform: translateY(-10px) skewY(-5deg) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) skewY(0deg) scale(1);
  }
}

@media (max-width: 768px) {
  .subtitle2 {
    font-size: 10px;
    color: var(--color1);
    font-weight: 600;
    margin-bottom: -29px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
    margin-left: 0;
  }
  .subtitle2 .spnHeroContentHeading {
    font-size: 14px;
  }

  .subtitle3 {
    font-size: 10px;
    color: var(--color1);
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
    margin-right: -3rem;
  }

  .tagline,
  .fancy-text {
    font-size: 4rem;
  }
}

/* Sequential animation delays */
.animated-heading span:nth-child(1) {
  animation: slideSkew 1s forwards;
  animation-delay: 0.5s;
}

.animated-heading span:nth-child(2) {
  animation: slideSkew 1s forwards;
  animation-delay: 1s;
}

.animated-heading span:nth-child(3) {
  animation: slideSkew 1s forwards;
  animation-delay: 1.5s;
}

.animated-heading span:nth-child(4) {
  animation: slideSkew 1s forwards;
  animation-delay: 2s;
}

.animated-subheading span:nth-child(1) {
  animation: slideSkew 1s forwards;
  animation-delay: 2.5s;
}

.animated-subheading span:nth-child(2) {
  animation: slideSkew 1s forwards;
  animation-delay: 3s;
}

.animated-subheading span:nth-child(3) {
  animation: slideSkew 1s forwards;
  animation-delay: 3.5s;
}

.animated-subheading span:nth-child(4) {
  animation: slideSkew 1s forwards;
  animation-delay: 4s;
}

.animated-subheading span:nth-child(5) {
  animation: slideSkew 1s forwards;
  animation-delay: 4.5s;
}

.animated-subheading span:nth-child(6) {
  animation: slideSkew 1s forwards;
  animation-delay: 5s;
}

/* Gradient animation for color text */
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Description fade-in after heading */
.description {
  font-size: 1.2rem;
  color: #e0e0e0;
  opacity: 0;
  margin-top: 20px;
  animation: fadeIn 1.5s forwards;
  animation-delay: 5.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* about us */
/* ----------------- About Us Section ----------------- */
.about-us-section {
  background: var(--color1);
  padding: 7rem 0;
}

/* Left Image Box */
.about-wrapper {
  position: relative;
  display: inline-block;
}

/* Large Background Image */
.image-stack {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.overlay-video {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #000;
}

.overlay-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Text Box */
.about-us-text h2 {
  font-size: 41px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.about-us-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--color4);
}

.about-us-text p {
  font-size: 23px;
  font-family: "Times New Roman", Times, serif;
}

/* Features List */
.about-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about-features li i {
  color: var(--color4);
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-features li:hover {
  transform: translateX(5px);
}

.about-features li:hover i {
  transform: scale(1.3);
  color: var(--color4);
}

/* Contact Button */
.contact-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6ec4, #7873f5, #42e695);
  background-size: 400% 400%;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 20px rgba(255, 110, 196, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: gradientBG 6s ease infinite, floatBtn 3s ease-in-out infinite;
}

.contact-circle-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 35px rgba(255, 110, 196, 0.8);
}

/* Gradient + Floating Animations */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatBtn {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Fade Animations */
.animated {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
}

.delay-1s {
  animation-delay: 0.5s;
}

.delay-2s {
  animation-delay: 1s;
}

.delay-3s {
  animation-delay: 1.5s;
}

.delay-4s {
  animation-delay: 2s;
}

.delay-4-5s {
  animation-delay: 2.5s;
}

.delay-5s {
  animation-delay: 3s;
}

.delay-5-5s {
  animation-delay: 3.5s;
}

.delay-6s {
  animation-delay: 4s;
}

.delay-6-5s {
  animation-delay: 4.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-us-image {
    height: 300px;
    margin-bottom: 30px;
  }

  .video-overlay {
    width: 140px;
    height: 80px;
    bottom: 10px;
    left: 10px;
  }

  .about-us-text h2 {
    font-size: 28px;
  }

  .about-us-text h3 {
    font-size: 18px;
  }

  .contact-circle-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .image-stack {
    margin-bottom: 52px;
  }

  .overlay-video {
    position: absolute;
    bottom: -44px;
    right: -18px;
    width: 214px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #000;
  }
  .about-us-section {
    padding: 60px 15px;
  }

  .about-us-image {
    height: 220px;
  }

  .video-overlay {
    width: 120px;
    height: 70px;
  }
}

/* Bullet highlight */
.highlight-bullet {
  color: #ff6600;
  font-size: 1.6rem;
  margin-right: 8px;
  display: inline-block;
}

/* 3D arrow style */
.highlight-arrow {
  font-size: 1.6rem;
  color: #ff6600;
  text-shadow: 0px 0px 8px rgba(255, 100, 0, 0.9);
  animation: arrowGlow 1.5s infinite ease-in-out;
}

.services-section {
  background: var(--color2);
  padding: 7rem 0;
}

.SubtitleHeading {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-size: 27px;
}

/* Section Titles */
.section-subtitle {
  color: #f8973f;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .section-title {
        color: #F8973F;
        font-weight: 300;
        margin-bottom: 10px;
        font-size: 5px;
        text-transform: uppercase;
        letter-spacing: 2px;
      } */

/* Service Cards */
.service-item {
  height: 280px;
  display: flex;
  align-items: stretch;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
  background-color: #44444e;
  /* card color for normal */
  transition: transform 0.9s ease, background-color 0.3s ease;
}

.service-item.alt {
  flex-direction: row-reverse;
  background-color: #715a5a;
  /* card color for alternate */
}

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

.service-image {
  flex: 1 1 40%;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.service-item.alt .service-title {
  left: auto;
  right: 20px;
}

.service-info {
  flex: 1 1 60%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.service-info p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 25px;
  color: var(--color1);
}

.arrow {
  font-size: 1.1rem;
  color: var(--color6);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .service-item,
  .service-item.alt {
    flex-direction: column;
    border-radius: 30px;
  }

  .service-image img {
    height: 250px;
  }

  .service-title {
    font-size: 1.3rem;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .service-info {
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .service-info p {
    font-size: 0.95rem;
  }

  .arrow {
    font-size: 1.5rem;
  }
}

.star-rating {
  margin-top: 5px;
  color: #ffd700;
  /* gold */
  font-size: 16px;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}

.category-title .arrow-right {
  font-size: 1.4rem;
  color: #ff9900;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Animation */
.category-title:hover .arrow-right {
  transform: translateX(5px);
  color: #ff6600;
}

/* .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-family: 'Poppins', sans-serif;
        position: relative;
      } */

/* Arrow Shapes */
.arrow-left,
.arrow-right {
  display: inline-block;
  width: 25px;
  height: 25px;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
  background: linear-gradient(145deg, #ffcc66, #ff9900);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.arrow-right {
  transform: rotate(180deg);
}

/* Tiny shine effect on arrows */
.arrow-left::after,
.arrow-right::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  top: 5px;
  left: 5px;
  background: rgba(255, 255, 255, 0.3);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: rotate(45deg);
}

/* Section Styling */
.products-section {
  background: var(--color1);
  padding: 7rem 0;
}

/* .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
        position: relative;
        display: inline-block;
      } */

/* .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 7px;
        background: #ff9900;
        margin: 10px auto 0;
        border-radius: 2px;
        animation: underline 1.5s infinite alternate;
      } */

@keyframes underline {
  from {
    width: 30px;
  }

  to {
    width: 100px;
  }
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Category Titles */
.category-title {
  font-size: 1.4rem;
  margin: 30px 0 20px;
  font-weight: 600;
  color: #333;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1) rotate(-2deg);
}

.product-info {
  padding: 15px;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #222;
}

.product-info p {
  font-size: 0.9rem;
  color: #777;
}

/* Hover Glow Animation */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgb(55, 53, 62);
}

/* Video Background */
.stats-section {
  position: relative;
  padding: 7rem 20px;
  /* text-align: center; */
  overflow: hidden;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 120, 0.75);
  /* darker blue tint */
  z-index: -1;
}

.stats-section h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 80px;
  color: #080000;
  position: relative;
  display: inline-block;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.stat {
  text-align: center;
  height: 21rem;
  width: 16rem;
  padding: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: none;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.icon-wrapper {
  background: #080000;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.stat:hover .icon-wrapper {
  background: var(--color4);
}

.stat:hover .icon-wrapper svg {
  stroke: var(--color1);
}

.stat-number {
  font-weight: 800;
  font-size: 60px;
  color: #080000;
  margin-top: 10px;
}

.stat-number span {
  font-weight: 600;
  font-size: 28px;
  padding-left: 5px;
}

.stat-text {
  color: #080000;
  font-weight: 600;
  font-size: 22px;
  /* bigger text */
  margin-top: 10px;
}

svg {
  width: 45px;
  /* bigger icons */
  height: 45px;
  stroke: var(--color1);
  stroke-width: 2.5;
}

/* Section */
.social-responsibility {
  padding: 80px 5vw;
  background: var(--color2);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Top Label */
.top-label {
  color: #f97316;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.top-label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 50px;
  background: #f97316;
  border-radius: 2px;
}

/* Title */
.main-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatUp 1s ease forwards;
  opacity: 0;
}

.card:nth-child(1) {
  animation-delay: 0.3s;
}

.card:nth-child(2) {
  animation-delay: 0.6s;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .overlay {
  opacity: 1;
}

/* Content */
.card-content {
  padding: 25px;
  text-align: left;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.card-content p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Button */
.btn-map {
  background: #f97316;
  border: none;
  padding: 10px 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-map:hover {
  background: #ea580c;
  transform: translateY(-3px);
}

/* Animation */
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stat {
    height: 10rem;
    width: 9rem;
    padding: 26px 0;
  }

  .icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .stat-number {
    font-size: 32px;
    margin-top: -27px;
  }

  .stat-number span {
    font-size: 18px;
  }
  .stat-text {
    font-size: 16px;
    margin-top: -8px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 28px;
  }
}

/* experience-box mt-4 */
.experience-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px;
  color: var(--color3);
}

.experience-box i {
  font-size: 40px;
  color: var(--color2);
}

/* Contact Box Styling */
.contact-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Heading */
.contact-heading h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.contact-heading .text-warning {
  color: #ff6600;
  /* orange like in screenshot */
}

/* Center Icon */
.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color6);
  margin: 40px auto;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(100, 36, 36, 0.6);
  z-index: 1;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* if using font-awesome icon */
  font-size: 22px;
}

/* Expanding aura rings */
.icon-circle::before,
.icon-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 102, 0, 0.4);
  z-index: -1;
  animation: aura 3s infinite ease-out;
}

.icon-circle::after {
  animation-delay: 1.5s; /* staggered aura */
}

/* Aura expansion */
@keyframes aura {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* ---- LINES ---- */
.icon-circle span::before,
.icon-circle span::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--color6);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  animation: linePulse 2s ease-in-out infinite;
}

.icon-circle span::before {
  left: -50px;
}

.icon-circle span::after {
  right: -50px;
  animation-delay: 1s;
}

/* Line glowing animation */
@keyframes linePulse {
  0%, 100% {
    width: 20px;
    opacity: 0.4;
  }
  50% {
    width: 60px;
    opacity: 1;
  }
}


/* .icon-circle i {
    align-items: center;
    padding: 15px 0 0 14px;
    font-size: 25px;
    color: var(--color1);
} */

/* Right Contact Info */
.contact-info p {
  margin: 3px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-info a {
  /* margin: 3px 0; */
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
}

/* Contact Info */
.contact-info {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  font-size: 14px;
  color: #fff;
}

.contact-info .contact-img {
  width: 71px;
  height: 57px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color1);
}

.contact-details {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-section {
  background: url("i6.jpg") no-repeat center center/cover;
  position: relative;
  padding: 100px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* .hero-content h1 {
        font-weight: 700;
        font-size: 2.5rem;
      } */

.hero-content p {
  font-size: 1rem;
  color: #000;
  background-color: var(--color1);
  padding: 12px;
  border-radius: 14px;
}

.btn-orange {
  background: #ff6a00;
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #e65c00;
}

/* FAQ Accordion Custom Styling */
.faq-box .accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-box .accordion-button {
  background: #fff;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 20px;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-box .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: var(--color4);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.faq-box .accordion-button::after {
  filter: invert(0.5);
}

.faq-box .accordion-body {
  font-size: 15px;
  color: #333;
  padding: 15px 20px 20px;
  line-height: 1.6;
  background: #fff;
}

.contact-box {
  background: #fff;
  color: #111;
  margin: 3% 14% 0 14%;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-box {
    padding: 41px;
  }
  .icon-circle {
    margin: 0 72px;
  }

  .hero-content p {
    font-size: 12px;
    color: #fff;
  }

  .contact-heading,
  .contact-info {
    text-align: center;
  }

  .contact-info {
    margin-top: 15px;
  }
  .owl-theme .owl-nav{
    display: none;
  }
}

.quotesMarks {
  font-size: 2rem;
  color: var(--color6);
}

.testimonial-section {
  padding: 7rem 0;
  background: var(--color1);
}

/* Owl Item Animation */
.owl-item {
  opacity: 0.5;
  transform: scale(0.9) translateY(20px);
  transition: all 0.8s ease;
}

.owl-item.active.center {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* Card Styling */
.item-box {
  background: #fff;
  border-radius: 28px;
  padding: 3rem 50px;
  text-align: center;
  height: 29rem;
}

/* Text Box */
.text-box {
  font-size: 18px;
  line-height: 25px;
  font-style: italic;
  margin-bottom: 20px;
  color: #000;
}

/* Meta info */
.testimonial-meta h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.testimonial-meta .comment {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-meta .stars {
  color: #ffdd57;
  font-size: 18px;
}

/* Nav & Dots */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: #111;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s;
}

.owl-carousel .owl-dot.active span {
  background: #111;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .item-box {
    width: 100% !important;
    padding: 30px 20px;
  }
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: #111;
  border: none;
  padding: 15px 20px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #ff0000;
}

.owl-nav-prev,
.owl-nav-next {
  display: inline-block;
}

/* Custom Navigation Buttons */
.custom-owl-prev,
.custom-owl-next {
  position: absolute;
  top: 820%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  padding: 15px 20px;
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.custom-owl-prev:hover,
.custom-owl-next:hover {
  background: #ff0000;
  color: #fff;
}

.custom-owl-prev {
  left: 0;
}

.custom-owl-next {
  right: 0;
}

/* Contact Us Section */
.contact-us {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-us .container {
  max-width: 1200px;
  margin: auto;
}

/* Map Box */
.contact-us .map-box {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-us .map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Styling */
.add-comments {
  background: var(--color2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.add-comments input,
.add-comments textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.add-comments input:focus,
.add-comments textarea:focus {
  border-color: #f57009;
  outline: none;
}

.add-comments textarea {
  min-height: 120px;
  resize: none;
}

/* .add-comments button {
        width: 100%;
        padding: 12px;
        border-radius: 5px;
        background: #F57009;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        border: none;
        transition: background 0.3s ease;
      }

      .add-comments button:hover {
        background: #d85e06;
      } */

/* Cards Section */
.contact-us .card {
  border: none;
  background: blanchedalmond;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-us .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-us .card img {
  height: 200px;
  object-fit: cover;
}

.contact-us .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.contact-us .card-text {
  font-size: 14px;
  color: #555;
}

.NoOfCompanies {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  background: var(--color3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-us .map-box {
    margin-bottom: 30px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding: 50px 20px;
  }

  .add-comments {
    padding: 20px;
  }
}

/* navbar */
.logo img {
  height: 60px;
  margin-left: 20px;
  margin-right: 30px;
  margin-top: -7px;
  /* animation: logoBlink 2.5s infinite ease-in-out; */
}

/* Blink / glow effect */
@keyframes logoBlink {
  0% {
    opacity: 1;
    filter: drop-shadow(0 0 0px #fff);
  }

  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px #ffcc00);
  }

  100% {
    opacity: 1;
    filter: drop-shadow(0 0 0px #fff);
  }
}

/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 101%;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color1);
  z-index: 1000;
} */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* fixed */
  max-width: 100%; /* extra safety */
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color1);
  z-index: 1000;
  overflow-x: hidden; /* avoid accidental scroll */
}

/* Logo */
.navbar .logo img {
  height: 95px;
  margin-left: 20px;
  margin-right: 50px;
  /* spacing so it doesnâ€™t touch menu */
}

/* Menu Center */
.navbar ul {
  display: flex;
  gap: 20px;
  /* spacing between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  position: relative;
  color: var(--color6);
  font-weight: 700;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Create animated underline */
.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* space below text */
  width: 0;
  height: 2px;
  background: var(--color4);
  transition: width 0.4s ease;
}

/* On hover or active - animate underline */
.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
  /* grows from left to right */
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--color4);
}

/* Right Section (contact + button) */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.talk-btn {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px;
  border: 2px solid var(--color6);
  border-radius: 50px;
  color: var(--color6);
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.talk-btn .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--color6);
  transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
  transform: rotate(-55deg);
}

/* Hover Effects */
.talk-btn:hover {
  background: var(--color4);
  border-color: var(--color4);
  color: var(--color1);
}

.talk-btn:hover .arrow {
  background: var(--color1);
  color: var(--color4);
  transform: rotate(-0deg);
}

.ContactLinks {
  text-decoration: none;
  color: var(--color6);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color6);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -8px);
}

.hamburger span {
  transition: all 0.3s ease;
}

/* Hide menu in mobile view */
@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }

  .hamburger {
    display: flex;
    position: fixed;
    right: 20px;
    top: 50px; /* keep it aligned */
    z-index: 1100; /* above the menu */
  }

  .navbar ul {
    position: absolute;
    top: 60px; /* below navbar */
    left: 0;
    width: 100%;
    background-color: var(--color1);
    backdrop-filter: blur(10px);
    z-index: 1000;

    display: flex;
    flex-direction: column; /* 👈 column layout */
    align-items: center; /* center align items */
    gap: 15px; /* spacing between items */

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .navbar ul.show {
    max-height: 500px; /* enough space for items */
    position: fixed; /* stay in place when scrolling */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--color4);
    padding: 20px 0;
    margin-top: 57px;
  }

  .navbar ul li {
    display: block; /* 👈 each link takes its own line */
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

@media (max-width: 949px) {
  .navbar-right {
    display: none;
  }

  .hamburger {
    display: flex;
    position: fixed;
    right: 20px;
    top: 50px; /* keep it aligned */
    z-index: 1100; /* above the menu */
  }

  .navbar ul {
    position: absolute;
    top: 60px; /* below navbar */
    left: 0;
    width: 100%;
    background-color: var(--color1);
    backdrop-filter: blur(10px);
    z-index: 1000;

    display: flex;
    flex-direction: column; /* 👈 column layout */
    align-items: center; /* center align items */
    gap: 15px; /* spacing between items */

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .navbar ul.show {
    max-height: 500px; /* enough space for items */
    position: fixed; /* stay in place when scrolling */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--color4);
    padding: 20px 0;
    margin-top: 57px;
  }

  .navbar ul li {
    display: block; /* 👈 each link takes its own line */
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

@media (max-width: 1509px) {
  .navbar-right {
    display: none;
  }
}
