/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  background: #222;
  color: #fff;
  padding: 15px 30px;
}

.navbar .logo {
  font-size: 22px;
  font-weight: bold;
}

.navbar nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.navbar nav a:hover {
  text-decoration: underline;
}

/* Slider */
.slider {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 100px 0px;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.slide-text h1 {
  font-size: 2.5rem;
  animation: slideUp 1.5s ease-out;
}

.slide-text p {
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Sections */
.info-block {
  padding: 40px 20px;
  background: #fff;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

/* Footer */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 500px;
  background: #000;
  z-index: 1;
}

.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 30px;
  color: white;
  position: relative;
  z-index: 10;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0;         /* No margin */
  padding: 0px;        /* No padding */
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.slide-text h3 {
  color: yellow;
}

.slide-text h1 {
  color: orange;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid #ffcc00;        /* Yellow border */
  background-color: transparent;
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;               /* You can set to 0 for perfect square corners */
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.btn:hover {
  background-color: #ffcc00;
  color: #000;
}

.section1 {
  background-color: #f9f9f9;
}

.section1 h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}

.section2 img {
  border: 2px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* WHO WE ARE Section */
.who-we-are {
  background: linear-gradient(to bottom, #ffffff, #f1f1f1);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.who-we-are .container {
  max-width: 1200px;
  margin: auto;
}

.who-we-are .heading {
  text-align: center;
  margin-bottom: 50px;
}

.who-we-are .heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.who-we-are .heading .underline {
  border-bottom: 4px solid #ffcc00;
  display: inline-block;
  padding-bottom: 6px;
}

.who-we-are .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.who-we-are .image-box {
  flex: 1 1 40%;
  text-align: center;
}

.who-we-are .image-box img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.who-we-are .text-box {
  flex: 1 1 55%;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.who-we-are .text-box p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .who-we-are .content {
    flex-direction: column;
    text-align: center;
  }

  .who-we-are .text-box {
    padding-top: 20px;
  }
}



.section-strategy {
  background: #fffbe6;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.strategy-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.strategy-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  padding: 30px;
  max-width: 320px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.strategy-list li:hover {
  transform: translateY(-10px);
}

.icon-circle {
  font-size: 40px;
  background: #ffcc00;
  color: #000;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.strategy-list p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.strategy-list p strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .strategy-list {
    flex-direction: column;
    align-items: center;
  }

  .strategy-list li {
    max-width: 100%;
  }
}



.our-clients {
  background: #f1f1f1;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.our-clients .heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.our-clients .underline {
  border-bottom: 4px solid #ffcc00;
  display: inline-block;
  padding-bottom: 6px;
}

.client-quote h4 {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  max-width: 800px;
  margin: auto;
  padding: 0 10px;
}

.quote-icon {
  font-size: 22px;
  color: #ffcc00;
  margin: 0 5px;
}





.client-logos {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.logos-slide {
  width: 100%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLogos 15s linear infinite;
}

.logos-track li {
  list-style: none;
}

.logo-box {
  width: 240px;
  height: 80px;
  background: #fff;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* PERFECT uniform look */
  object-position: center;
   /* filter: grayscale(100%) brightness(1.2); */
  transition: all 0.3s ease;
}

.logo-box img:hover {
  filter: grayscale(0%) brightness(1.5);
  transform: scale(1.58); /* Slight zoom */
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-box {
    width: 180px;
    height: 60px;
  }

  .logos-track {
    animation-duration: 25s;
    gap: 20px;
  }
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.slide-text {
  position: relative;
  z-index: 2;
  color: #fff;
}


.slider {
  position: relative;
  height: 60vh; /* ya jitna aapko chahiye */
  overflow: hidden;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto; /* important: allow mouse interaction */
}

.slide-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  pointer-events: none; /* allow mouse to pass through to particles */
}





.industry-we-serve {
  padding: 60px 15px;
  background: #f7f7f7;
  text-align: center;
}

.industry-we-serve h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.industry-we-serve ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0;
}

.industry-we-serve ul li {
  list-style: none;
}

.industry-we-serve ul li a {
  text-decoration: none;
  border: none;
}



.logo-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  padding: 30px 15px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.logo-box i {
  font-size: 32px;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.logo-box span {
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

/* Hover effect */
.logo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.logo-box:hover i {
  transform: scale(1.3);
}

/* Optional: Industry-specific colors */
.photography i { color: #e67e22; }
.education i { color: #2980b9; }
.realestate i { color: #27ae60; }
.manufacturers i { color: #8e44ad; }
.automobile i { color: #c0392b; }
.finance i { color: #2c3e50; }
.health i { color: #16a085; }
.technology i { color: #34495e; }
.travel i { color: #d35400; }
.ecommerce i { color: #9b59b6; }
.legal i { color: #7f8c8d; }
.logistics i { color: #f39c12; }







.logo-hover-wrapper {
  position: relative;
  display: inline-block;
  width: 220px;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.logo-hover-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.logo-hover-wrapper:hover img {
  transform: scale(1.05);
}

.logo-hover-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.4s ease;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.logo-hover-wrapper:hover .logo-hover-overlay {
  top: 0; /* swipe from bottom to top */
}






/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 10px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #e91e63;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
  color: #e91e63;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* CTA Button */
.btn-quote {
  background: #e91e63;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-quote:hover {
  background: #c2185b;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}






/* Navbar */
.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Overlapping Logo */
.logo-container {
  position: relative;
  z-index: 100;
}

.logo-overlap {
  height: 120px;
  position: fixed;      /* change absolute to fixed */
  top: 0px;             /* 10px from top of screen */
  left: 10px;            /* 10px from left of screen */
   width: 180px;         /* Increase width */
  z-index: 1000;
}



.corner-logo {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
}




.main-footer {
  background-color: #101010;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #f5f5f5;
  font-size: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e91e63;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #e91e63;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}




.main-footer-with-particles {
  position: relative;
  overflow: hidden;
  background: #101010;
  color: #fff;
}

#particles-footer-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.footer-overlay {
  position: relative;
  z-index: 1;
  padding: 60px 20px 30px;
}





.team-section {
  background: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.team-member h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #111;
}

.team-member p {
  margin: 0;
  font-size: 14px;
  color: #777;
}



.no-photo .initials {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #f35, #f69);
  color: white;
  font-size: 60px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-transform: uppercase;
}




/* Common styles for all screens */
.container {
  width: 90%;
  margin: auto;
}

/* For smaller mobile screens */
@media screen and (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .slide-text h1 {
    font-size: 24px;
  }

  .logo {
    width: 80px;
    height: auto;
  }
}


img {
  max-width: 100%;
  height: auto;
}





/* ---- Your existing CSS ---- */

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .btn {
    padding: 10px 20px;
  }
}





.cosmic-footer {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 30px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

#cosmic-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cosmic-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-col h3, .footer-col h4 {
  color: #ffff66;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff69b4;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: white;
  opacity: 0.3;
  margin: 20px 0;
}

.footer-address {
  font-size: 14px;
  color: #bbbbbb;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
}




.universe-footer {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: radial-gradient(ellipse at bottom, #0d0d1a 0%, #000000 100%);
  color: white;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 240px;
}

.space-scene {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.planet {
  position: absolute;
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

.mercury   { width: 6px; height: 6px; background: #ccc; top: 40%; left: 5%; animation-delay: 0s; }
.venus     { width: 10px; height: 10px; background: #d3b78f; top: 30%; left: 15%; animation-delay: 2s; }
.earth     { width: 14px; height: 14px; background: #3f87f5; top: 50%; left: 25%; animation-delay: 4s; }
.mars      { width: 12px; height: 12px; background: #e36e4c; top: 20%; left: 35%; animation-delay: 6s; }
.jupiter   { width: 28px; height: 28px; background: #d9a066; top: 60%; left: 45%; animation-delay: 8s; }
.saturn    { width: 24px; height: 24px; background: #dfd3a3; top: 15%; left: 55%; animation-delay: 10s; }
.uranus    { width: 18px; height: 18px; background: #9ce3e0; top: 65%; left: 65%; animation-delay: 12s; }
.neptune   { width: 16px; height: 16px; background: #4563f5; top: 35%; left: 75%; animation-delay: 14s; }
.pluto     { width: 5px; height: 5px; background: #aaaaaa; top: 10%; left: 85%; animation-delay: 16s; }

@keyframes rotate {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
  50%  { transform: translateY(-10px) rotate(180deg); opacity: 1; }
  100% { transform: translateY(0px) rotate(360deg); opacity: 0.5; }
}

/* Stars background - 3 layers */
.stars, .stars2, .stars3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.3;
  animation: moveStars 200s linear infinite;
}
.stars {
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
}
.stars2 {
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}
.stars3 {
  background-image: radial-gradient(white 0.5px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.1;
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}




<style>
  .seven-wonders-slider {
    overflow: hidden;
    background: #111;
    padding: 60px 0;
  }

  .slider-track {
    display: flex;
    animation: slideWonders 40s linear infinite;
  }

  .wonder {
    width: 300px;
    height: 300px;
    margin: 0 20px;
    background: #222;
    border-radius: 20px;
    position: relative;
    color: white;
    font-family: sans-serif;
    text-align: center;
    padding-top: 220px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
  }

  .wonder span {
    display: block;
    font-size: 18px;
    font-weight: bold;
  }

  .taj-mahal::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border: 4px solid white;
    border-radius: 50% 50% 0 0;
    border-bottom: none;
  }

  .great-wall::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 30px;
    width: 240px;
    height: 30px;
    background: #888;
    box-shadow: 0 -40px 0 #666;
  }

  .petra::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 40px;
    width: 220px;
    height: 100px;
    background: #c96;
  }

  .christ::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 140px;
    width: 20px;
    height: 100px;
    background: white;
  }

  .christ::after {
    content: "";
    position: absolute;
    top: 120px;
    left: 110px;
    width: 80px;
    height: 20px;
    background: white;
  }

  .machu::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50px;
    width: 200px;
    height: 80px;
    background: #393;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }

  .chichen::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 70px;
    width: 160px;
    height: 100px;
    background: #ccc;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }

  .colosseum::before {
    content: "";
    position: absolute;
    top: 110px;
    left: 60px;
    width: 180px;
    height: 90px;
    background: #996633;
    border-radius: 90px 90px 0 0;
  }

  @keyframes slideWonders {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2600px); }
  }
</style>





body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.slider-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  overflow-x: auto;
  max-width: 100vw;
  scroll-behavior: smooth;
}

.slider-container::-webkit-scrollbar {
  height: 8px;
}
.slider-container::-webkit-scrollbar-thumb {
  background: #900;
  border-radius: 4px;
}

.card {
  min-width: 260px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #900, #000);
  border: 2px solid #ff3b3b;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  border-radius: 12px;
  padding: 25px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.card h2 {
  color: #ff3b3b;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 260px;
}




/* Contact Us Section */
.contact-section {
  position: relative;
  background: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.2;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00c6ff;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-form-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.contact-form .input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
}

.btn-submit {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
}

.contact-info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-info i {
  font-size: 18px;
  color: #00c6ff;
}







/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0e0e0e;
  display: block;
  border-radius: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #111;
  top: 40px;
  left: 0;
  padding: 10px 0;
  border-radius: 5px;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: #fbf4f4;
  text-decoration: none;
}

/* Show dropdown on desktop hover */
@media screen and (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    flex-direction: column;
    width: 220px;
    display: none; /* hidden initially */
    padding: 20px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li .btn-quote {
    display: block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fbf4f4;
    text-align: center;
    border-radius: 5px;
  }

  /* Show dropdown on click for mobile */
  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
}




