/* @ Copy RIght | Made BY Praful Gajbhiye. */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar styles */
.navbar {
  /* background: #ffffff; */
  background: rgba(255, 255, 255, 0.9); /* white with 90% opacity */

  color: #000000;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.8s ease forwards;
  backdrop-filter: blur(4px); /* BONUS: add blur behind the navbar */
}

/* Navbar entrance animation */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.site-logo img {
  height: 50px;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000000;
  cursor: pointer;
  display: none;
}

/* Navbar Links */
.navbar-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.navbar-links li {
  position: relative;
}

.navbar-links a, 
.dropdown a {
  color: #000000;
  padding: 0.8rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover animation for links */
.navbar-links a:hover, 
.dropdown a:hover {
  border-radius: 10px;
  /* color: white; */
  /* background-color: #f58635; */
}

/* Dropdown Styles */
.navbar-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 5px;
  z-index: 99;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Show dropdown on hover with animation */
.navbar-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown h4 {
  font-size: 0.95rem;
  margin: 0.5rem 0 0.3rem;
  color: #f58635;
  padding-bottom: 0.2rem;
}

.dropdown a {
  font-size: 0.9rem;
}

/* Animated underline effect (optional, bonus) */
.navbar-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f58635;
  transition: width 0.3s;
  margin-top: 5px;
}

.navbar-links a:hover::after {
  width: 100%;
}


/* Hero Section with background image */
.hero-section {
  background: url('/Assets/Background/back.png') no-repeat center center;
  background-size: cover;
  background-color: #000; /* fallback background */
  min-height: 830px;
  width: 100%;
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(0, 0, 0, 0.5);  */
  /* optional dark overlay */
  z-index: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.content-wrapper {
  animation: slideDown 1.9s ease forwards;
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  line-height: 1.3;
  color: #f58635;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline,
.btn-filled {
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Orange button colors */
.btn-outline {
  background: transparent;
  border: 2px solid #f58635;
  color: #f58635;
}

.btn-outline:hover {
  background: #f58635;
  color: #fff;
}

.btn-filled {
  background: #f58635;
  color: #fff;
  border: 2px solid transparent;
}

.btn-filled:hover {
  background: #ffffff;
  color: #000;
}

/* Responsive fix */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
    width: 100%;
  }

  .hero-description {
    width: 100%;
  }

  .hero-section {
    padding: 50px 0;
    min-height: auto;
    background-size: cover;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-outline,
  .btn-filled {
    width: 100%;
    text-align: center;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-dropdown .dropdown {
    display: none;
    position: static;
    background: #ffffff;
    padding-left: 1rem;
  }

  .navbar-dropdown.active .dropdown {
    display: flex;
    flex-direction: column;
  }

  .navbar-links a {
    padding: 1rem;
  }

  .dropdown h4 {
    margin-left: 0;
  }

  .dropdown a {
    padding-left: 1.5rem;
  }
}

.about-section {
  background: #ffffff; /* dark background */
  padding: 40px 20px;
  color: #000000;
}

.about-container {
  opacity: 0; /* hidden initially */
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.about-container.show {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  text-align: left;
}
.section-title{
  color: #f58635;
}
.about-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #3c3950;
}

.about-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: #000000;
}

.about-text p {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}

.about-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .section-title,
  .section-subtitle {
    text-align: center;
  }
}


/* Services Section Styling */
.services-section {
  opacity: 0; /* hidden initially */
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
  color: #3c3950;
}
.services-section.show {
  opacity: 1;
  transform: translateY(0);
}
.services-section .subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #3c3950;
}

.services-section .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-section .description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.service-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3c3950;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}



/* .why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.why-choose-us .right .item {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-choose-us .right .item-header {
  background: #f58635;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.why-choose-us .right .item-header h3 {
  margin: 0;
  font-size: 18px;
}

.why-choose-us .right .item-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.why-choose-us .right .item-content {
  padding: 15px;
  display: none;
  background: #f1f1f1;
  font-size: 16px;
  line-height: 1.5;
} */
.why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.why-choose-us .right .item {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.why-choose-us .right .item-header {
  background: #f58635;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.why-choose-us .right .item-header h3 {
  margin: 0;
  font-size: 18px;
}

.why-choose-us .right .item-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.why-choose-us .right .item-content {
  display: none;
  padding: 15px;
  background: #f1f1f1;
  font-size: 16px;
  line-height: 1.5;
}

.why-choose-us .item-content {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.why-choose-us .item-content img {
  width: 50px;
  height: auto;
  justify-self: center;
}

.why-choose-us .item-content .text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .why-choose-us .item-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .why-choose-us .item-content img {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .why-choose-us .right .item-header h3 {
    font-size: 14px;
  }

  .why-choose-us .right .item-content {
    font-size: 12px;
  }
}

.team-section{
  opacity: 0; /* hidden initially */
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.team-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* WHY CHOOSE US Section Styling */
.why-choose-us-section {
  opacity: 0; /* hidden initially */
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}
.why-choose-us-section.show {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: #3c3950;
  margin-bottom: 50px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.counter-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease-in-out;
}

.counter-card:hover {
  transform: translateY(-8px);
  background-color: #2a2a3d;
  
}
.counter-card:hover h3 {
  color: white;
}
.counter-card:hover p {
  color: white;
}
.counter-card h3{
  color: black;
}
.counter-card p{
  color: black;
}
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon i {
  font-size: 24px;
}

.counter-number {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.counter-number span {
  font-size: 24px;
  margin-left: 5px;
  vertical-align: top;
}

.counter-label {
  font-size: 16px;
  color: #ccc;
}


/* BRANDS WE CATER Section Styling */
.brand-section {
  opacity: 0; /* hidden initially */
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  padding: 60px 20px;
  background-color: #f8f9fb;
}
.brand-section.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-heading {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #3c3950;
  /* margin-bottom: 50px; */
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  gap: 20px;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.gem-client-item {
  min-width: 160px;
  max-width: 180px;
  flex-shrink: 0;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
/* 
.gem-client-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gem-client-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
} */
.gem-client-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.gem-client-item img.active {
  filter: grayscale(0%);
  transform: scale(1.1);
}



.scroll-btn {
  position: absolute;
  z-index: 10;
  background-color: #3c3950;
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: #f58635;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

@media (max-width: 768px) {
  .gem-client-item {
    min-width: 120px;
  }

  .scroll-btn {
    font-size: 20px;
    padding: 10px 12px;
  }

  .animate-heading {
    font-size: 32px;
  }
}



.main-container {
  display: flex;
  height: 100vh;
  padding: 20px;
  gap: 20px;
}

.left-section,
.right-section {
  flex: 1;
  /* background-color: #5959a4; */
  border-style: groove;
  border-radius: 16px;
  padding: 29px;
  display: flex;
  flex-direction: column;
}

.left-section h2,
.right-section h2 {
  text-align: center;
  color: #f58635;
  margin-bottom: 20px;
  font-size: 39px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  flex: 1;
}

.contact-box {
  background-color: #3a3a4e;
  width: 100%;
  border-radius: 14px;
  
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;

}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.contact-box i {
  font-size: 21px;
  color: #f58635;

}

.contact-box h3 {
  padding: 20px;
  font-size: 25px;
  margin-bottom: 9px;
  color: #ffa94d;
}

.contact-box p,
.contact-box a {
  color: #dfe6ec;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-box a:hover {
  color: #f58635;
}

/* Prevent text overflow in the "Contact Us" boxes */
.contact-box p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-box a {
  word-wrap: break-word;
}

.map-box {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .main-container {
      flex-direction: column;
      height: auto;
  }

  .left-section,
  .right-section {
      height: auto;
  }

  .contact-grid {
      grid-template-columns: 1fr;
  }

  .contact-box {
      padding: 5px;
  }
}


.site-footer {
  background-color: #000000;
  color: #d0d0d0;
  padding: 10px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  margin-right: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links li a,
.footer-contact li a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover,
.footer-contact li a:hover {
  color: #ff6f1d;
}

.footer-contact i {
  margin-right: 8px;
  color: #ff6f1d;
}

.footer-bottom-top {
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  border-top: 1px solid #2c2e36;
  font-size: 14px;
  color: #a5a5a5;
}
.footer-bottom-top:hover{
  font-size: 14.1px;
  color: #ffa94d;
}
.footer-bottom-private {
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  font-size: 14px;
  color: #a5a5a5;
}


@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding-top: 20px;
  }
}
