* {
  box-sizing: border-box;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100%;
      font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  cursor:default;
}

/* Banner */
/* Default style for large PCs and desktops */
.parallax {

    height: 100vh; /* Full viewport height */
  
  background-image: url('../img/backr.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  transform-origin: left center;
  padding: 3rem;
  overflow-x: hidden;
  text-align: center;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .parallax {
    height: 90vh; /* Adjusted height for smaller screens */
    justify-content: center; /* Center content vertically */
  }
}
.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/backr.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media (min-width: 769px) {
  .parallax-background {
    background-attachment: fixed;
  }
}

.content {
  position: relative;
  z-index: 1;
  color: black;
  padding: 0;
  text-align: center;
}

h1 {
  font-size: 60px;
  opacity: 0;
  margin: 2rem 0;
  z-index: 1;
}

h1.fade-in.animate {
  animation: fadeInAnimation 1.5s ease forwards;
}

@keyframes fadeInAnimation {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1.fade-in {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

h1.fade-in span {
  font-size: 60px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  h1.fade-in {
    font-size: 26px;
  }

  h1.fade-in span {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  h1.fade-in {
    font-size: 22px;
  }

  h1.fade-in span {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  h1.fade-in {
    font-size: 18px;
  }

  h1.fade-in span {
    font-size: 32px;
  }
}

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

h1.fade-in.hover-effect {
  color: #202020;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 30px;
  transition: transform 0.3s ease;
}

h1.fade-in.hover-effect span {
  font-size: 70px;
  color: #202020;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}

.scroll-img {
  position: absolute;
  width: 70px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
}

/* For smaller devices, adjust the size */
@media (max-width: 768px) {
  .scroll-img {
    width: 50px; /* Reduce size for tablets and smaller devices */
  }
}

/* For very small screens like mobile phones */
@media (max-width: 480px) {
  .scroll-img {
    width: 40px; /* Further reduce size for mobile screens */
  }
}

/* For large devices, keep the original size */
@media (min-width: 1024px) {
  .scroll-img {
    width: 70px; /* Default size for larger screens */
  }
}

.facebook { top: 10%; left: 40%; }
.instagram { top: 30%; left: 15%; }
.linkedin { bottom: 10%; left: 10%; }
.whatsapp { bottom: 20%; right: 25%; }
.youtube { bottom: 25%; right: 10%; }
.tiktok { top: 25%; right: 25%; }
.google { top: 10%; right: 10%; }
.twitter { bottom: 5%; right: 5%; }

.scroll-img.animate {
  opacity: 1;
  animation: slideIn 2s ease-in-out forwards, float 5s ease-in-out infinite;
}

@keyframes slideIn {
  from { opacity: 0; transform: translate(0, 20px) scale(0.5); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

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

.scroll-img.hover-effect:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Logo in Parallax Section */
#logo {
  opacity: 0;
  width: 0; /* Start with width 0 for ariseAnimation */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Class to trigger the ariseAnimation on page load */
.top-center-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ariseAnimation 1s ease-in-out forwards;
}
/* Animation to make the logo appear in the center */
@keyframes ariseAnimation {
  from {
    width: 0;
    height: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    width: 300px;
    height: 100px; /* Adjust based on your logo’s aspect ratio */
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Animation to move the logo from center to top-left with scaling */
@keyframes moveToTopLeft {
  from {
    position: fixed;
    width: 300px;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    position: fixed;
    width: 180px;
     height: auto;
    opacity: 1;
    top: 0;
    left: 20px;
    transform: translate(0, 0) scale(0.6); /* Slight shrink for smoothness */
  }
}

/* Class to trigger the moveToTopLeft animation */
.move-to-top-left {
  animation: moveToTopLeft 1s ease-in-out forwards;
}

/* Ensure the logo in the header has proper positioning */
header .logo img {
  position: static;
  width: 180px;
 
  height: auto;
  opacity: 1;
  transform: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 575.98px) {
  @keyframes ariseAnimation {
    from {
      width: 0;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
    }
    to {
      width: 150px; /* Smaller initial size for mobile */
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  @keyframes moveToTopLeft {
    from {
      position: fixed;
      width: 150px;
      opacity: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
    }
    to {
      position: fixed;
      width: 120px;
      opacity: 1;
      top: 10px;
      left: 10px;
      transform: translate(0, 0) scale(0.6);
    }
  }

  header .logo img {
    width: 120px;
  }

  .linkedin { bottom: 15%; left: 10%; }
  .facebook { bottom: 25%; left: 20%; }
  .whatsapp { top: 45%; left: 50%; transform: translateX(-50%); }
  .google { bottom: 25%; right: 20%; }
  .tiktok { bottom: 20%; right: 15%; }
  .youtube { bottom: 15%; right: 10%; }
}

/* About */
.forbox {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fbf9f9 0%, #f8f6f6 100%);
  text-align: center;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1) inset;
  position: relative;
  overflow: hidden;
}

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

.forbox h6,h2 {
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: black;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.forbox span{
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;

  font-size: 68px;
  color: black;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.forbox .row.align-items-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.forbox .left-column {
  flex: 1 1 40%;
  padding-right: 40px;
  text-align: left;
}

.forbox .left-column h2 {
  color: rgb(7, 7, 7);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
}

.forbox .left-column h3 {
  color: rgb(7, 7, 7);
  font-size: 58px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
}

.forbox p {
  font-size: 18px;
 
  color: rgb(7, 7, 7);
  padding: top 1%;
  text-align: justify;
}

.forbox .right-column {
  flex: 1 1 55%;
  padding-right: 10px;
}

.forbox .card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .forbox .row.align-items-start {
    flex-direction: column;
  }

  .forbox .left-column {
    flex: 1 1 100%;
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .forbox .right-column {
    flex: 1 1 100%;
  }

  .forbox .left-column h2 {
    font-size: 24px;
  }

  .forbox .left-column h3 {
    font-size: 40px;
  }

  .forbox .card h3 {
    font-size: 20px;
  }

  .forbox  p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@keyframes floatEffect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-image {
  width: 100%; /* optional, adjust as needed */
  max-width: 100%;
  animation: floatEffect 3s ease-in-out infinite;
}

/* Services */
#services {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 600px;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

#services .container {
  padding: 0;
  width: 100%;
  max-width: none;
}

#services .row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
  min-height: auto;
}

#services .col-md-3 {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 1px solid #e3752b;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transition: transform 0.3s ease;
  flex: 1;
  min-height: auto;
}

#services .col-md-3:hover {
  transform: scale(1.05);
}

#services .card {
  border: none;
  background: transparent;
  box-shadow: none;
  height: 100%;
}

#services .col-md-3:hover .card-title {
  color: #f57c0b; /* You can change this to any color you like */
}

#services .card-body {
  padding: 2rem;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#services .card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
  position: relative;
  top: 0;
  letter-spacing: 2px;
 
}

#services .card-text {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

#services .col-md-3:hover .card-title {
  transform: translateY(-20px);
}

#services .col-md-3:hover .card-text {
  opacity: 1;
  max-height: 200px;
  margin-top: 1rem;
}

.service-number {
  font-family: 'Bebas Neue';
  font-size: 4rem;
  color: #4a90e2;
  position: absolute;
  top: 1rem;
  left: 1rem;
  opacity: 0.7;
}

/* Slide-in animations for service columns */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-left {
  animation: slideInLeft 1s ease-in-out forwards;
}

.slide-right {
  animation: slideInRight 1s ease-in-out forwards;
}

@media (max-width: 768px) {
  #services .col-md-3 {
    margin-bottom: 1rem;
    min-height: 150px;
    padding: 10px;
  }

  #services .col-md-3:hover .card-title {
    transform: translateY(-15px);
  }

  #services .col-md-3:hover .card-text {
    max-height: 150px;
    margin-top: 0.5rem;
  }

  #services .card-body {
    padding: 1rem;
  }

  #services .card-title {
    font-size: 1.5rem;
  }

  #services .card-text {
    font-size: 0.8rem;
  }

  .service-number {
    font-size: 2.5rem;
  }

  .section-title-black {
    font-size: 2rem;
  }
}

/* Logo Slider */
.logo-slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 50px 0;
  background-color: #0c0c0c; /* Matching the previous #clients background */
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .logo-item {
    width: 150px;
    height: 75px;
    margin: 0 15px;
    font-size: 0.9rem;
  }

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

/* Existing Styles (unchanged) */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: white;
  margin-bottom: 30px;
  font-weight: 900;
  text-transform: uppercase;


}

.section-title-black {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: rgb(3, 3, 3);
  margin-bottom: 30px;
  font-weight: 900;
  text-transform: uppercase;

 
}

.text-muted {
  color: #6c757d !important;
  margin-bottom: 2rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f9c80e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fffffe;
}

.card-text {
  font-size: 0.9rem;
  color: #fffffe;
}

header {
  height: 60px;
  background-color: transparent; /* Changed from #333 to transparent */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
}

/* Header when scrolled */
header.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
  transition: background-color 0.3s ease; /* Smooth transition for background change */
}

.menu-toggle {
  font-size: 1.5em;
  cursor: pointer;
  color: #fff;
  z-index: 2001;
}

/* Base Sidebar Style */
.sidebar {
  position: fixed;
  top: 0;
  right: 0; /* Hide off-screen initially */
  width: 250px;
  height: 100%;
  background-color: #1a1a1a;
  padding-top: 60px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.sidebar.menuon {
  opacity: 1;
  visibility: visible;
}

.sidebar.active {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
}

.sidebar ul li a {
  font-family: 'Montserrat', sans-serif;
  color: #fffffe;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #d27707;
}

/* Wrapper for parallax and banner */
#wrapper {
  position: relative;
  width: 100%;
  height: auto;
  perspective: 1000px;
  transition: all 0.5s ease;
}

/* Active State */
.menu-open .banner {
  transform: rotateY(35deg) scale(0.95);
}

.menu-open .parallax {
  transform: rotateY(35deg) scale(0.95);
}

.menu-open .sidebar {
  right: 0;
}

/* Mobile and Tablet Responsive */
@media (max-width: 1024px) {
  /* For tablets */
  .sidebar {
    width: 200px; /* Reduce sidebar width for tablet devices */
  }

  .sidebar ul li {
    padding: 10px 15px; /* Reduce padding in sidebar items */
  }

  .sidebar ul li a {
    font-size: 18px; /* Adjust font size for better readability on tablets */
  }
}

@media (max-width: 768px) {
  /* For small tablets and large phones */
  .sidebar {
    width: 250px; /* Ensure sidebar width stays at 250px on smaller tablets */
  }

  .sidebar ul li {
    padding: 12px 15px; /* Adjust padding for smaller screens */
  }

  .sidebar ul li a {
    font-size: 16px; /* Smaller font size for better mobile view */
  }

  .menu-toggle {
    top: 12px;
    right: 12px;
    font-size: 20px; /* Adjust size of menu toggle for smaller screens */
  }

  .menu-open .banner,
  .menu-open .parallax {
    transform: rotateY(65deg) scale(0.95); /* Adjust 3D effect for smaller screens */
  }
}

@media (max-width: 576px) {
  /* For very small screens like mobile phones */
  .sidebar {
    width: 100%; /* Make the sidebar full width on smaller screens */
  }

  .sidebar ul li {
    padding: 10px 15px; /* Adjust padding for smaller screens */
  }

  .sidebar ul li a {
    font-size: 14px; /* Further reduce font size on mobile */
  }

  .menu-toggle {
    font-size: 18px; /* Adjust size of menu toggle */
  }

  .menu-open .banner,
  .menu-open .parallax {
    transform: rotateY(55deg) scale(0.95); /* Adjust 3D effect for mobile screens */
  }
}

@media (max-width: 576px) {
  .menu-toggle { top: 10px; right: 10px; font-size: 18px; }
  h1 { font-size: 32px; }
  .forbox h2 { font-size: 28px; }
  .forbox h5 { font-size: 14px; }
  .sidebar { width: 160px; }
}

/* Footer */
/* Footer Styles */
.combined-footer {
  min-height: 500px;
  background-color: #0f1011;
  color: #fff;
  padding: 40px 20px;
}

.combined-footer h3, .combined-footer h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 5px;
}

.combined-footer h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  margin: 15px;
  max-width: 300px;
}

.footer-section:nth-child(1) {
  text-align: center;
  margin-right: auto;
}

.footer-section:nth-child(2) {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-section:nth-child(3) {
  text-align: center;
  margin-left: auto;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-section ul li a {
  color: #eee8e8;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section ul li i {
  margin-right: 8px;
  color: #29b6f6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom p {
  margin: 0 0 10px 0;
  color: #aaa;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin: 20px 0;
    text-align: center;
    max-width: 100%;
  }

  .footer-section:nth-child(1),
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    margin: 20px 0;
    text-align: center;
  }

  .combined-footer h2 {
    font-size: 24px;
  }
}

/* Why Us Section */
/* Why Us Section */
.whyus {
  padding: 60px 20px;
  background-color: #0a0909;
}

.whyus .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 500px; /* Ensure the section has a minimum height */
}

.left-column {
  flex: 1 1 40%;
  padding-right: 40px;
}

.left-column h2 {
  color: rgb(255, 255, 255);
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
}

.left-column h3 {
  color: rgb(255, 255, 255);
  font-size: 68px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
}

.left-column h2, .left-column h3 {
  line-height: 0.5;
}

.left-column p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  color: white;
}

.right-column {
  flex: 1 1 55%;
  position: relative;
  overflow-y: scroll;     /* Enable vertical scroll */
  overflow-x: hidden;
  max-height: 500px;
  padding-right: 10px;
  scrollbar-width: thin;  /* Firefox - makes the scrollbar visible and thin */
  scrollbar-color: #da8248 #0a0909; /* Firefox - thumb color and track color */
}

/* Chrome, Edge, Safari */
.right-column::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.right-column::-webkit-scrollbar-track {
  background: #0a0909; /* Matches the section background */
}

.right-column::-webkit-scrollbar-thumb {
  background: #da8248; /* Matches the hover color of the card for consistency */
  border-radius: 4px;
}

.right-column::-webkit-scrollbar-thumb:hover {
  background: #e6955b; /* Slightly lighter shade on hover */
}

.scrolling-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative; /* No absolute positioning */
  width: 100%;
  height: auto;        /* Let content define height */
}

.card {
  padding: 20px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 12px;
  background: rgb(228, 225, 225);
  color: #151212; /* Ensure text is visible on dark background */
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.4;
}

.card:hover {
  color: #fff;
  background-color: #da8248; /* Change to your preferred hover color */
  border: #000;
}

@media (max-width: 768px) {
  .whyus .container {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* Remove min-height on mobile */
  }

  .left-column {
    flex: 1 1 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .right-column {
    flex: 1 1 100%;
    height: 300px; /* Fixed height for mobile */
    overflow-y: scroll; /* Ensure scrolling is enabled */
    scrollbar-width: thin; /* Firefox - ensure visibility on mobile */
    scrollbar-color: #da8248 #0a0909; /* Firefox - consistent colors */
  }

  /* Chrome, Edge, Safari - Ensure scrollbar is visible on mobile */
  .right-column::-webkit-scrollbar {
    width: 6px; /* Slightly thinner for mobile */
  }

  .right-column::-webkit-scrollbar-track {
    background: #0a0909;
  }

  .right-column::-webkit-scrollbar-thumb {
    background: #da8248;
    border-radius: 4px;
  }

  .right-column::-webkit-scrollbar-thumb:hover {
    background: #e6955b;
  }

  .scrolling-content {
    gap: 20px;
  }

  .card {
    padding: 10px;
  }

  .left-column h1 {
    font-size: 32px;
  }

  .left-column p {
    font-size: 16px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }
}
.forbox .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* This works in modern browsers */
}

/* Banner Section */
/* Banner Section */
.banner {
  align-items: end;
  text-align: right;
  position: relative;
  height: 500px; /* Default height for desktop */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  transform-origin: left center;
  padding: 2rem;
}

.banner-background {
  position: absolute;
  width: 100%;
  height: 100%; /* Use 100% to match the parent (.banner) height */
  background-image: url('../img/bannerdoxa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: right;
}

.banner-title,
.banner-subtitle {
  text-align: right;
  color: white;
}

.banner-title {
  color: white;
  font-size: 68px;
  font-weight: 900;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards 0.5s;
}

.banner-subtitle {
  color: white;
  font-size: 20px;
   font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile View Adjustments (Below 768px) */
@media (max-width: 768px) {
  .banner {
    height: 250px; /* Use viewport height for better scaling */
    padding: 1rem; /* Reduce padding for mobile */
  }

  .banner-background {
   /* Ensure it matches the adjusted banner height */
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center;
      object-fit: cover;
  }

  .banner-content {
    align-items: center; /* Center align content for better mobile presentation */
    text-align: center; /* Center text for mobile */
  }

  .banner-title,
  .banner-subtitle {
    text-align: center; /* Center align text */
  }

  .banner-title {
    font-size: 36px; /* Reduce font size for mobile */
  }

  .banner-subtitle {
    font-size: 16px; /* Reduce font size for mobile */
  }
}

/* Smaller Mobile Adjustments (Below 576px) */
@media (max-width: 576px) {
  .banner {
    height: 225px; /* Further reduce height for smaller screens */
    padding: 0.5rem;
  }

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

  .banner-subtitle {
    font-size: 14px;
  }
}

/* About and Leader Sections */
.next-section,
.leader-section {
  background-color: #000;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.next-section .container,
.leader-section .container {
  max-width: 95%;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}

.next-section h2,
.leader-section h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  line-height: 2;
}

.next-section p,
.leader-section p {
  font-size: 18px;
  color: white;
}

.next-section h2.animate,
.leader-section h2.animate {
  animation: fadeInUp 1s ease forwards;
}


.section-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.animate,
.section-text.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Column Animations and Divider */
.next-section .row,
.leader-section .row {
  position: relative;
  overflow: hidden;
}

.next-section.row::before,
.leader-section.row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #ff6200;
  z-index: 1;
}

.next-section .row > .col-md-6 {
  opacity: 0;
  animation: slideInLeft 1s ease-in-out forwards;
}

.leader-section .row > .col-md-6 {
  opacity: 0;
  animation: slideInRight 1s ease-in-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner {
    height: 50vh;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-subtitle {
    font-size: 16px;
  }
  .next-section h2,
  .leader-section h2 {
    font-size: 36px;
  }
  .section-text {
    font-size: 16px;
  }
  .col-md-3 {
    margin-bottom: 1.5rem;
  }
  .next-section .row::before,
  .leader-section .row::before {
    display: none; /* Hide vertical line on mobile */
  }
}

@media (max-width: 576px) {
  .banner {
    height: 40vh;
  }
  .banner-title {
    font-size: 28px;
  }
  .banner-subtitle {
    font-size: 14px;
  }
  .next-section,
  .leader-section {
    padding: 40px 10px;
  }
  .next-section h2,
  .leader-section h2 {
    font-size: 28px;
  }
  .section-text {
    font-size: 14px;
  }
}

/* Contact Banner */
    /* Contact Section */
    .contact-section {
      background: #000; /* Black background as requested */
      width: 100%; /* Full width */
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content horizontally */
      gap: 60px; /* Space between form and contact info */
    }

    /* Contact Form */
    .contact-form {
      max-width: 600px; /* Limit form width for better readability */
      width: 100%;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      padding: 40px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-form:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-form h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 30px;
      position: relative;
      text-align: center;
    }

    .contact-form h2::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: #cc6805;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form label {
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      color: #ccc;
      font-weight: 500;
      line-height: 0;
    }

    .contact-form input,
    .contact-form select,
   
    .contact-form textarea {
      width: 100%;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .contact-form input:focus,

    .contact-form textarea:focus {
      outline: none;
      border-color: #cc6805;
      background: rgba(255, 255, 255, 0.15);
   
    }
 
    .contact-form select:focus
   {
      outline: none;
      border-color: #cc6805;
      background: rgba(255, 255, 255, 0.15);
   color: #000;
    }
    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form select {
      appearance: none;
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22%23ccc%22%20d%3D%22M2%200L0%202h4zm0%205L0%203h4z%22/%3E%3C/svg%3E');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 12px;
    }

    .contact-form button {
      background: #cc6805;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 25px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: default;
      transition: background 0.3s ease, transform 0.3s ease;
      align-self: center; /* Center the button */
    }

    .contact-form button:hover {
      background: #e67e22;
      transform: translateY(-2px);
    }

    /* Contact Info */
    .contact-info {
      max-width: 600px; /* Match form width for consistency */
      width: 100%;
      background: rgba(255, 255, 255, 0.05); /* Semi-transparent card effect */
      padding: 40px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #ffffff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center; /* Center the content */
    }

    .contact-info:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-info h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 30px;
      position: relative;
    }

    .contact-info h2::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: #cc6805;
    }

    .contact-info p {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      color: #ffffff;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center; /* Center the icons and text */
      gap: 10px;
    }

    .contact-info p i {
      color: #cc6805;
      font-size: 1.2rem;
    }

    .contact-info .text-salmon {
      color: #cc6805;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info .text-salmon:hover {
      color: #e67e22; /* Lighter orange on hover */
    }

    .social-icons {
      margin-top: 20px;
      display: flex;
      justify-content: center; /* Center the social icons */
      gap: 15px;
    }

    .social-icons a {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.3s ease, transform 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-icons a:hover {
      color: #cc6805;
      transform: scale(1.1);
      border-color: #cc6805;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-section {
        padding: 40px 20px;
      }

      .contact-form,
      .contact-info {
        max-width: 100%;
        padding: 30px; /* Full width on smaller screens */
      }

    }

/* Package */
.package-section .row {
  display: flex;
  flex-wrap: wrap;
}

.package-section .col-md-3 {
  display: flex;
}

.package-card {
  background: #292727;
  color: white;
  padding: 50px 20px;
  text-align: center;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.package-card h4 {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
}

.package-card p {
  font-size: 14px;
  margin-top: 10px;
  color: #ccc;
  flex-grow: 1;
}

.package-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
  display: block; /* Makes the image a block-level element */
  margin-left: auto; /* Centers the image horizontally */
  margin-right: auto;
}
.package-card .inimg
{
  filter: invert(100%); /* Makes the icons white */
}
.tier-buttons {
  margin-top: 15px;
}

.tier-buttons button {
  margin: 5px;
  background: #5a5858;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  width: 100px;
}

.tier-buttons button:hover {
  background: #cc6805;
  color: #0e0c0c;
}

.tier-description {
  margin-top: 15px;
  background: #444;
  padding: 15px;
  border-radius: 8px;
  color: #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vertical-line {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background-color: #e2650c;
}

@media (max-width: 767px) {
  .vertical-line {
    display: none;
  }
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.popup-box h2 {
  font-size: 24px;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

.popup-box input,
.popup-box textarea,
.popup-box select
 {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius:5px;
  font-size: 14px;
  transition: 0.3s;
}

.popup-box input:focus,
.popup-box select:focus,
.popup-box textarea:focus {
  border-color: black;
  outline: none;
}

.popup-box button {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-box button:hover {
  background: #f28729;
}

.popup-box .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #fef7f7;
  cursor: default;
  transition: color 0.3s ease;
}

.popup-box .close-btn:hover {
  color: rgb(239, 122, 19);
}

.clients {
  position: relative;
  padding: 20px 0;
  width: 100%; /* Ensure it takes only the available screen width */
  box-sizing: border-box; /* Include padding in width calculation */
  overflow: hidden; /* Prevent any overflow */
}

.clients-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%; /* Fit within parent container */
  box-sizing: border-box;
}

.clients-heading {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-image: url('assets/img/sunset.jpg');
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Twinkle stars */
.clients .heading .twinkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle-star 2s infinite ease-in-out;
}

/* Animation for twinkle stars */
@keyframes twinkle-star {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.clients .grid {
  flex: 0 0 75%; /* Adjusted to 75% on desktop to complement .clients-heading */
  padding: 0;
  background-image: url('assets/img/waves.jpg');
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap; /* Allow grid items to wrap */
}

.clients .section-title-black {
  font-size: 68px; /* Use viewport width for scaling (approx 48px at 1366px) */
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  color: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  line-height: 1.2; /* Improve readability */
}

.clients .tile {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
  position: relative;
  cursor: default;
  background-color: white;
  color: black;
  min-height: 400px;
  flex: 1 1 100%; /* Each tile takes 50% of .clients-grid width */
  box-sizing: border-box;
  flex-direction: column;
}

.clients .tile.dark {
  background-color: black;
  color: white;
}

.clients .tile[data-initial="white"].hovered-column {
  background-color: black;
  color: white;
}

.clients .tile[data-initial="black"].hovered-column {
  background-color: white;
  color: black;
}

.clients .tile .content {
  height: 100%;
  width: 100%; /* Ensure content takes full width of the tile */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers vertically */
  align-items: center;     /* Centers horizontally */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative; /* For absolute positioning of children */
}

.clients .heading {
  font-size: 2.5vw; /* Scale with viewport width (approx 48px at 1366px) */
  font-weight: bold;
  transition: opacity 0.3s ease;
  opacity: 1;
  margin: 0; /* Remove margins to avoid shifting */
  text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  position: absolute; /* Overlay heading and description */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center perfectly */
  width: 100%;
  text-align: center;
}

.clients .description {
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 1vw; /* Scale with viewport width (approx 14px at 1366px) */
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
  position: absolute; /* Overlay with heading */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center perfectly */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clients .description img {
  margin-bottom: 10px;
  width: 120px;
  height: 30px;
}

.clients .description span {
  font-size: 4vw; /* Scale with viewport width (approx 56px at 1366px) */
  font-weight: 900;
}

.clients .tile:hover .heading,
.clients .tile.hover .heading {
  opacity: 0;
}

.clients .tile:hover .description,
.clients .tile.hover .description {
  opacity: 1;
}

.clients .tile:hover .description span,
.clients .tile.hover .description span {
  opacity: 1;
}

.clients .tile[data-initial="black"] .description,
.clients .tile[data-initial="black"] .heading {
  color: white;
}

.clients .tile[data-initial="white"] .description,
.clients .tile[data-initial="white"] .heading {
  color: black;
}

.clients .tile[data-initial="black"]:hover .description,
.clients .tile[data-initial="black"].hover .description,
.clients .tile[data-initial="black"]:hover .heading,
.clients .tile[data-initial="black"].hover .heading {
  color: black;
}

.clients .tile[data-initial="white"]:hover .description,
.clients .tile[data-initial="white"].hover .description,
.clients .tile[data-initial="white"]:hover .heading,
.clients .tile[data-initial="white"].hover .heading {
  color: white;
}

.clients .tile[data-initial="black"]:hover .description span,
.clients .tile[data-initial="black"]:hover .heading {
  color: black;
}

.clients .tile[data-initial="white"]:hover .description span,
.clients .tile[data-initial="white"]:hover .heading {
  color: white;
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .clients-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .clients-heading {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 20px;
    min-height: 200px;
    justify-content: center;
    align-items: center;
  }

  .clients-grid {
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
  }

  .clients .tile {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 250px;
    padding: 10px;
  }

  .clients .section-title-black {
    font-size: 68px; /* Larger on tablet for better readability */
    height: auto;
    padding: 20px 0;
  }

  .clients .heading {
    font-size: 4vw; /* Adjust for tablet */
  }

  .clients .description {
    font-size: 1.5vw; /* Adjust for tablet */
    max-width: 90%;
  }

  .clients .description span {
    font-size: 5vw; /* Adjust for tablet */
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .clients-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .clients .tile .heading {
    opacity: 0;
  }
  
  .clients .tile .description {
    opacity: 1;
    padding: 20px;
  }
  .clients-heading {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 20px;
    min-height: 50px;
  }

  .clients-grid {
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
  }

  .clients .tile {
    flex: 0 0 100%; /* Stack tiles vertically */
    max-width: 100%;
    min-height: 210px;
    cursor: none;
    transition: none;
  }

  /* Disable hover effects on mobile */
  .clients .tile:hover,
  .clients .tile.hover {
    background-color: inherit;
    color: inherit;
  }

  .clients .tile[data-initial="white"]:hover,
  .clients .tile[data-initial="white"].hovered-column {
    background-color: white;
    color: black;
  }

  .clients .tile[data-initial="black"]:hover,
  .clients .tile[data-initial="black"].hovered-column {
    background-color: black;
    color: white;
  }

  .clients .tile:hover .heading,
  .clients .tile.hover .heading {
    opacity: 1;
  }

  .clients .tile:hover .description,
  .clients .tile.hover .description {
    opacity: 0;
  }

  .clients .tile[data-initial="black"]:hover .description,
  .clients .tile[data-initial="black"].hover .description,
  .clients .tile[data-initial="black"]:hover .heading,
  .clients .tile[data-initial="black"].hover .heading {
    color: white;
  }

  .clients .tile[data-initial="white"]:hover .description,
  .clients .tile[data-initial="white"].hover .description,
  .clients .tile[data-initial="white"]:hover .heading,
  .clients .tile[data-initial="white"].hover .heading {
    color: black;
  }

  .clients .tile[data-initial="black"]:hover .description span,
  .clients .tile[data-initial="black"].hover .description span,
  .clients .tile[data-initial="black"]:hover .heading,
  .clients .tile[data-initial="black"].hover .heading {
    color: white;
  }

  .clients .tile[data-initial="white"]:hover .description span,
  .clients .tile[data-initial="white"].hover .description span,
  .clients .tile[data-initial="white"]:hover .heading,
  .clients .tile[data-initial="white"].hover .heading {
    color: black;
  }

  .clients .section-title-black {
       font-size: 68px; /* Larger on tablet for better readability */ /* Adjust for mobile */
    height: auto;
    padding: 15px 0;
  }

  .clients .heading {
    font-size: 5vw; /* Adjust for mobile */
  }

  .clients .description {
    font-size: 2.5vw; /* Adjust for mobile */
  }

  .clients .description span {
    font-size: 6vw; /* Adjust for mobile */
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .clients .tile {
    min-height: 200px;
  }

  .clients .section-title-black {
        font-size: 68px; /* Larger on tablet for better readability */ /* Further adjust for small mobile */
    padding: 10px 0;
  }

  .clients .heading {
    font-size: 6vw; /* Further adjust for small mobile */
    line-height: 1.3;
  }

  .clients .description {
    font-size: 3vw; /* Further adjust for small mobile */
  }

  .clients .description span {
    font-size: 7vw; /* Further adjust for small mobile */
  }

  .clients .description img {
    width: 100px; /* Scale down image for small screens */
    height: 25px;
  }
}

/* Popup Overlay (used for both #popupForm and #tierPopup) */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Box (used for both #popupForm and #tierPopup) */
.popup-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Close Button for Popup */
.popup-box .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Popup Title */
.popup-box h2 {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

/* Popup Content for Tier Details */
#tierPopupContent {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
/* blog */
 /* Blog Section Styling */
 /* Blog Section Styling */
.blog-section {
  background-color: #121212;
  color: #fff;
  padding: 0px;
  width: 100%;
}

.blog-section .text-muted {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #ccc;
}

.blog-carousel {
  overflow: hidden; /* Default for desktop */
  position: relative;
}

.blog-track {
  display: flex;
  width: max-content; /* Ensure the track is wide enough for all cards */
  animation: scroll 20s linear infinite; /* Auto-scroll by default */
  flex-wrap: nowrap; /* Prevent wrapping for smooth scrolling */
}

.blog-track:hover {
  animation-play-state: paused; /* Pause on hover */
}

.blog-card {
  flex: 0 0 33.333%; /* Each card takes up 1/3 of the container width */
  max-width: 33.333%;
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 20px; /* Gap between cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.blog-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  transition: background 0.3s ease;
}

.blog-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-excerpt {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: #cc6805;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}

/* Auto-Scroll Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile Adjustments (Below 768px) */
@media (max-width: 768px) {
  .blog-carousel {
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth touch scrolling on iOS */
    scrollbar-width: auto; /* Ensure scrollbar is visible (Firefox) */
    scrollbar-color: #cc6805 #1a1a1a; /* Custom scrollbar colors for Firefox */
  }

  .blog-carousel::-webkit-scrollbar {
    height: 8px; /* Height of the horizontal scrollbar */
  }

  .blog-carousel::-webkit-scrollbar-track {
    background: #1a1a1a; /* Background of the scrollbar track */
  }

  .blog-carousel::-webkit-scrollbar-thumb {
    background: #cc6805; /* Color of the scrollbar thumb */
    border-radius: 10px;
  }

  .blog-carousel::-webkit-scrollbar-thumb:hover {
    background: #e67e22; /* Hover color for the scrollbar thumb */
  }

  .blog-track {
    animation: none; /* Disable auto-scroll on mobile to allow manual scrolling */
    flex-wrap: nowrap; /* Ensure cards stay in a single row for scrolling */
  }

  .blog-track:hover {
    animation-play-state: running; /* No effect since animation is disabled */
  }

  .blog-card {
    flex: 0 0 80%; /* Each card takes up 80% of the viewport width */
    max-width: 80%;
    margin-right: 10px; /* Adjust gap for mobile */
  }

  .blog-image {
    height: 200px;
  }

  .blog-title {
    font-size: 1.5rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }
}

/* Smaller Mobile Adjustments (Below 576px) */
@media (max-width: 576px) {
  .blog-card {
    flex: 0 0 90%; /* Slightly wider cards for smaller screens */
    max-width: 90%;
    margin-right: 8px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-title {
    font-size: 1.3rem;
  }

  .blog-excerpt {
    font-size: 0.85rem;
  }
}

.twinkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ec7505;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}/* News Slider Section */
/* News Slider Section */
 .news-slider {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    position: relative;
}

.news-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden; /* Hide adjacent items */
}

.news-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.news-item {
    flex: 0 0 33.333%; /* Show 3 items in desktop view */
    max-width: 33.333%;
    padding: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    background: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-right: 10px; /* Gap between items for sliding */
    box-sizing: border-box;
}

/* Navigation Buttons */
.news-prev,
.news-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10;
}

.news-prev:hover,
.news-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.news-prev {
    left: 10px;
}

.news-next {
    right: 10px;
}

/* Mobile Adjustments (Below 768px) */
@media (max-width: 768px) {
    .news-carousel {
        max-width: 100vw; /* Full viewport width */
        margin: 0;
        padding: 0; /* Remove padding to allow full-width items */
        overflow: hidden;
    }

    .news-track {
        padding: 0;
    }

    .news-item {
        flex: 0 0 100vw; /* Full viewport width */
        max-width: 100vw; /* Full viewport width */
        font-size: 1rem;
        padding: 12px;
        margin-right: 10px; /* Gap between items for sliding transition */
        border-radius: 0; /* Remove border-radius for full-width appearance */
    }

    .news-prev,
    .news-next {
        font-size: 1.2rem;
        padding: 8px;
    }

    .news-prev {
        left: 5px;
    }

    .news-next {
        right: 5px;
    }
}

/* Smaller Mobile Adjustments (Below 576px) */
@media (max-width: 576px) {
    .news-item {
        flex: 0 0 100vw;
        max-width: 100vw;
        font-size: 0.9rem;
        padding: 10px;
        margin-right: 10px;
    }

    .news-prev,
    .news-next {
        font-size: 1rem;
        padding: 6px;
    }
}