/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.5;
}

/* Container padding utility */
.container {
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  background-color: #fff2f2;
}

.logo {
  width: 100px;
}

.header-buttons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn {
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.btn.red {
  background-color: #ff3d3d;
  color: white;
}

.btn.black {
  background-color: black;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

/* Top Background */
.top-bg-wrapper {
  background-color: #fff2f2;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.hero-content .highlight {
  color: #ff3d3d;
}

.hero-content p {
  margin-bottom: 1rem;
  font-size: 16px;
  color: #070707;
}

/* Search Box */
.search-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 8px;
  background-color: #fff;
  flex: 1;
}

.input-icon {
  margin-right: 6px;
  color: #999;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 18px;
  text-align: center;
  flex: 1;
}

.search-box button {
  background-color: #ff3d3d;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  width: auto;
  flex-shrink: 0;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background-color: #e60000;
}

/* Popular Searches text css */
.popular {
  font-size: 13px;
  color: #333;
  text-align: center;
  margin-top: 1rem;
}

/* Hero Right (Animation & Notification) */
.hero-right {
  margin-top: 2rem;
  text-align: center;
}

.lottie-wrapper {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* Logo Slider Section */
.logo-slider {
  background: #555;
  color: white;
  text-align: center;
  padding: 25px 1rem;
  font-size: 1rem;
}

/* Fixed Logo Slider Code */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-200px * 5));
    transform: translateX(calc(-200px * 5));
  }
}
@-moz-keyframes scroll {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(calc(-200px * 5));
    transform: translateX(calc(-200px * 5));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-200px * 5));
    -moz-transform: translateX(calc(-200px * 5));
    transform: translateX(calc(-200px * 5));
  }
}

.slider {
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.slide-track {
  display: flex;
  gap: 20px;
  width: max-content;
  -webkit-animation: scroll 30s linear infinite;
  -moz-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.slide img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .slide {
    width: 160px;
  }
  .slide img {
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .slide {
    width: 140px;
  }
  .slide img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .slide {
    width: 120px;
  }
  .slide img {
    max-width: 100px;
  }
}

/* Featured Job */
.featured-jobs {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-jobs h2 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.featured-jobs p {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.job-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.job-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
}

.job-info {
  text-align: left;
}

.job-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 500;
}

.full-time {
  background-color: rgb(98, 197, 0);
  color: #ffffff;
}

.see-more-btn {
  display: inline-block;
  background-color: #ff0303;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.see-more-btn:hover {
  background-color: #333;
}

/* Responsive text scaling */
@media (max-width: 768px) {
  .featured-jobs h2 {
    font-size: 2rem;
  }
  .featured-jobs p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .featured-jobs h2 {
    font-size: 1.5rem;
  }
  .featured-jobs p {
    font-size: 0.95rem;
  }
  .job-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .job-info {
    text-align: center;
  }
  .tags {
    justify-content: center;
  }
}

/* Testimonial */
.testimonial-wrapper {
  background-color: #FFF2F2;
  padding: 60px 20px;
  margin: 80px 0;
  width: 100%;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Heading + Paragraph */
.testimonial-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.testimonial-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  -webkit-transition: transform 1s ease;
  -moz-transition: transform 1s ease;
  -o-transition: transform 1s ease;
  transition: transform 1s ease;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial {
    min-width: 33.33%;
  }
}

.testimonial-box {
  background-color: white;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  max-width: 80%;
}

.testimonial-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: white;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
  padding: 10px 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: "❝";
  font-size: 2rem;
  color: rgb(251, 131, 151);
  position: absolute;
}

.testimonial-text::after {
  content: "❞";
  bottom: -10px;
  right: -20px;
}

.testimonial-text::before {
  top: -10px;
  left: -20px;
}

.profile {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile strong {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: black;
}

.profile span {
  font-size: 0.8rem;
  color: #ccc;
}

@media (max-width: 600px) {
  .testimonial-box {
    max-width: 95%;
  }
  .testimonial-header h2 {
    font-size: 1.6rem;
  }
  .testimonial-header p {
    font-size: 0.95rem;
  }
}

/* Resume Upload */
.xr-hero {
  position: relative;
  margin-top: 40px;
  padding: 20px 15px;
  min-height: 280px;
  width: 100%;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1e2a38);
  background-size: 400% 400%;
  -webkit-animation: xr-animatedBG 30s ease infinite;
  -moz-animation: xr-animatedBG 30s ease infinite;
  animation: xr-animatedBG 30s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

@-webkit-keyframes xr-animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@-moz-keyframes xr-animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes xr-animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.xr-subtext, h1, .xr-upload-btn {
  position: relative;
  z-index: 1;
}

.xr-subtext {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

h1 {
  font-size: 26px;
  margin-bottom: 16px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

.xr-upload-btn {
  background-color: #e60000;
  color: white;
  padding: 10px 22px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.xr-upload-btn:hover {
  background-color: #cc0000;
}

.xr-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.07;
  -webkit-animation: xr-floatIcon 10s linear infinite;
  -moz-animation: xr-floatIcon 10s linear infinite;
  animation: xr-floatIcon 10s linear infinite;
  z-index: 0;
}

.xr-icon:nth-child(1) { top: 90%; left: 10%; -webkit-animation-delay: 0s; -moz-animation-delay: 0s; animation-delay: 0s; }
.xr-icon:nth-child(2) { top: 95%; left: 30%; -webkit-animation-delay: 2s; -moz-animation-delay: 2s; animation-delay: 2s; }
.xr-icon:nth-child(3) { top: 92%; left: 50%; -webkit-animation-delay: 4s; -moz-animation-delay: 4s; animation-delay: 4s; }
.xr-icon:nth-child(4) { top: 98%; left: 70%; -webkit-animation-delay: 6s; -moz-animation-delay: 6s; animation-delay: 6s; }
.xr-icon:nth-child(5) { top: 94%; left: 85%; -webkit-animation-delay: 8s; -moz-animation-delay: 8s; animation-delay: 8s; }

@-webkit-keyframes xr-floatIcon {
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: translateY(-160px) scale(1.2);
    transform: translateY(-160px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translateY(-320px) scale(0.9);
    transform: translateY(-320px) scale(0.9);
    opacity: 0;
  }
}
@-moz-keyframes xr-floatIcon {
  0% {
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    -moz-transform: translateY(-160px) scale(1.2);
    transform: translateY(-160px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    -moz-transform: translateY(-320px) scale(0.9);
    transform: translateY(-320px) scale(0.9);
    opacity: 0;
  }
}
@keyframes xr-floatIcon {
  0% {
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: translateY(-160px) scale(1.2);
    -moz-transform: translateY(-160px) scale(1.2);
    transform: translateY(-160px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translateY(-320px) scale(0.9);
    -moz-transform: translateY(-320px) scale(0.9);
    transform: translateY(-320px) scale(0.9);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 22px;
  }
  .xr-upload-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .xr-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
  .xr-upload-btn {
    font-size: 13px;
    padding: 8px 18px;
  }
  .xr-hero {
    padding: 15px 8px;
  }
}

/* News Section */
h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.job-slider-container p {
  text-align: left;
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

.job-slider-container {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.job-slider-track {
  display: flex;
  gap: 20px;
  -webkit-transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.job-news-card {
  min-width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .job-news-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .job-news-card {
    min-width: 33.33%;
  }
}

.job-card-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  background-color: #f0f0f0;
  padding: 10px;
}

.job-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.job-card-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  flex-grow: 1;
  text-align: justify;
}

@media (max-width: 600px) {
  .job-card-desc {
    font-size: 14px;
    line-height: 1.4;
  }
}

.job-read-btn {
  margin-top: 15px;
  text-decoration: none;
  color: #fff;
  background: #e74c3c;
  padding: 10px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.job-read-btn:hover {
  background: #c0392b;
}

/* Recruiting */
.recruit-sec-wrapper {
  width: 100%;
  background: #fff1f1;
  padding: 60px 5% 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.recruit-sec-text {
  flex: 1;
  padding-right: 20px;
}

.recruit-sec-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.recruit-sec-desc {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}

.recruit-sec-button {
  background-color: #f44336;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.recruit-sec-button:hover {
  background-color: #c0392b;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.recruit-sec-img {
  flex: 1;
  max-width: 500px;
}

@media (max-width: 768px) {
  .recruit-sec-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .recruit-sec-text {
    padding: 0;
    margin-bottom: 30px;
  }
  
  .recruit-sec-img {
    max-width: 100%;
  }
}

/* Contact Us */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

body {
  font-family: 'Nunito', sans-serif;
}

.contact_us_8 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.form-box {
  display: flex;
  flex-direction: row;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

.form-left, .form-right {
  padding: 40px;
  flex: 1;
}

.form-left {
  background-color: white;
}

.form-right {
  background-color: rgba(151, 220, 250, 0.44);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.form-right .text-blk {
  margin-bottom: 20px;
}

.form-right .contactus-head {
  font-size: 32px;
  font-weight: 800;
}

.form-right .contactus-subhead {
  font-size: 16px;
  color: #333;
  max-width: 300px;
}

.social-media-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-media-links img {
  width: 24px;
  height: 24px;
}

input, textarea {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 64px;
  padding: 12px 18px;
  font-size: 16px;
  margin-bottom: 15px;
}

textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #444;
  font-weight: 500;
}

.submit-btn {
  width: 100%;
  background-color: red;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  padding: 14px;
  border-radius: 64px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: darkred;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-text {
  color: #555;
  font-size: 14px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .form-box {
    flex-direction: column;
  }
  .form-left,
  .form-right {
    padding: 20px;
  }
  .form-right .contactus-head {
    font-size: 26px;
  }
  .form-right .contactus-subhead {
    max-width: 100%;
  }
}

/* Modern Footer */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.modern-footer {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #e0e0e0;
  padding: 0;
  width: 100%;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-brand h2 {
  font-size: clamp(22px, 4vw, 28px);
  color: #ffffff;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.footer-brand h2 span {
  color: #ff0000;
}

.footer-tagline {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #aaaaaa;
  margin: 0 0 5px;
  font-weight: 400;
}

.company-info, .cin-info {
  font-size: clamp(11px, 2vw, 13px);
  color: #888888;
  margin: 0;
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: space-around;
}

.link-column {
  flex: 1;
  min-width: 150px;
}

.link-column h3 {
  color: #ff0000;
  font-size: clamp(16px, 2.8vw, 18px);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
}

.link-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #ff0000;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column ul li {
  margin-bottom: 10px;
}

.link-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: clamp(13px, 2.5vw, 15px);
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 400;
}

.link-column ul li a:hover {
  color: #ff0000;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact h3 {
  color: #ff0000;
  font-size: clamp(16px, 2.8vw, 18px);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
}

.footer-contact h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #ff0000;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-contact ul li {
  margin-bottom: 12px;
  font-size: clamp(13px, 2.5vw, 15px);
  display: flex;
  align-items: flex-start;
  font-weight: 400;
}

.footer-contact ul li i {
  color: #ff0000;
  margin-right: 10px;
  font-size: clamp(14px, 2.5vw, 16px);
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact ul li a {
  color: #cccccc;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
  color: #ffffff;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  color: #ff0000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff0000;
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 0, 0, 0.5), transparent);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.footer-copyright {
  flex: 2;
}

.footer-copyright p {
  margin: 0;
  font-size: clamp(12px, 2.2vw, 14px);
  color: #aaaaaa;
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: clamp(12px, 2.2vw, 14px);
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-bottom-links a:hover {
  color: #ff0000;
}

/* Media Queries */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .footer-contact h3:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-brand, .footer-links, .footer-contact {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    order: 1;
  }
  
  .footer-links {
    order: 3;
    width: 100%;
    justify-content: space-around;
  }
  
  .footer-contact {
    order: 2;
  }
  
  .link-column h3:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
  }
  
  .link-column {
    min-width: 120px;
  }
}

/* DESKTOP RESPONSIVE (768px+) */
@media (min-width: 768px) {
  header {
    flex-wrap: nowrap;
  }
  .header-buttons {
    margin-top: 0;
  }
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
  }
  .hero-content {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
  }

  .search-box {
    flex-direction: row;
    align-items: center;
  }
  .search-box button {
    width: auto;
  }
  .hero-right {
    flex: 1;
    margin-top: 0;
    position: relative;
  }
  .lottie-wrapper {
    position: relative;
    top: -50px;
    left: 0;
    max-width: 320px;
  }
  .notification.email {
    position: absolute;
    top: 200px;
    right: 20px;
  }
  .popular {
    text-align: left;
  }
  .logo-slider {
    font-size: 1.2rem;
  }
}