html {
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins',sans-serif;
}

.home-pg {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.home-pg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url(img-2.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: zoomInBg 2s ease;
  animation-fill-mode: forwards;
  transform: scale(1.5);
}

.home-pg > * {
  position: relative;
  z-index: 1;
}

/* Home Page Slider */
.slider-home {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.home-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
  border: 2px solid #da2c46;
}

.slider-dot.active {
  background: #da2c46;
  opacity: 1;
}

/* Write-up animation for slider */
.homepg-writeup {
  /* ...existing styles... */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}

.homepg-writeup.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes zoomInBg {
  from {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}

/* styling for nav bar */
.nav{
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.6s;
  z-index: 1000;
  color: white;
  transition: background-color 0.4s ease;
}

.nav.scrolled{
  background-color: white;
  opacity: 0.98;
  box-shadow: 0px 0 70px rgba(0, 0, 0, 0.9);
}
.nav.scrolled a{
  color: black;
}

.nav a{
  text-decoration: none;
  color: #fff;
  padding: 1%;
  font-size: 14px;
  position: relative;
  /* Remove box-shadow and border-bottom for underline effect */
}

.nav a:visited {
  /* Remove underline for logo, contact button, and menu icon */
}

.nav a.img-nav,
.nav a.contact,
.nav a.menubutton {
  /* Prevent underline (red border) on these */
}

.img-nav a::after,
.contact::after,
.menubutton::after {
  display: none !important;
  content: none !important;
}

.nav a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #da2c46;
  transition: width 0.3s, left 0.3s;
  z-index: 2;
  transform: translateX(-50%);
  opacity: 0;
}

.nav a:hover::after {
  width: 100%;
  left: 50%;
  opacity: 1;
}

.nav a:hover {
  color: red;
}

.nav a.active {
  color: #da2c46;
}

.nav a.active::after {
  width: 100%;
  left: 50%;
  opacity: 1;
  background: #da2c46;
}

.img-nav{
  width: 40%;
  margin: 5px;
}
.nav-span{
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact {
  border-bottom: none !important;
}

.home-pg a button{
  background-color: #da2c46;
  color: white;
  padding: 12px 15px;
  border: none;
  font-size: 12px;
  font-family: arimo,sans-serif;
  font-weight: bold;
  transition: background 0.8s ease;
  cursor: pointer;
}

.home-pg a button:hover{
  background-color: black;
}

.nav #line{
  border-left: 2px solid #ffffff80;
  height: 40px;
}

/* styling for side nav-bar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(13px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
}

.sidebar .img-nav {
  width: 100%;
  padding: 10px 6px 4px 3%;
  display: flex;
  justify-content: space-around;
}

.sidebar .closebar{
  margin: 28px 20px 0 0;
}

/* Make closebar black when sidebar is active (visible) */
.sidebar.active .closebar {
  filter: invert(1);
}

.menubutton{
  display: none;
}

.nav.scrolled .menubutton {
  filter: invert(1);
}

.sidebar .nav-span {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.sidebar .nav-span a{
  padding: 5px 0 5px 10%;
}

.sidebar a {
  text-decoration: none;
  color: #fff;
}

.sidebar a:hover{
  color: #da2c46;
}

.sidebar .line{
  border-top: 2px solid #ffffff80;
  width: 80%;
  margin: 8%;
}

@media (max-width: 850px) {
  .hideOnMobile {
    display: none;
  }
  .menubutton {
    width: 10%;
    display: block;
    position: absolute;
    right: -2%;
  }
  .nav-span{
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .contact {
    display: none;
  }
  .menubutton {
    display: block;
    position: absolute;
    right: -2%;
  }  
}
@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}

/* styling for the home page */
.homepg-writeup{
  width: 100%;
  height: 500px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  top: 50px;
}

.homepg-writeup button{
  background-color: #da2c46;
  border: none;
  padding: 12px 16px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 4%;
  transition: padding 0.3s ease;
}

.homepg-writeup button:hover{
  padding: 16px 18px;
}

.homepg-writeup button a {
  text-decoration: none;
  color: #fff;
  font-family: 'poppins',sans-serif;
}

/* floating texts for home page */
@keyframes float {
  from{
    top: 80%;
    opacity: 0;
  }
  to{
    top: 35%;
    opacity: 1;
  }
}
@keyframes float-2 {
  from{
    top: 80%;
    opacity: 0;
  }
  to{
    top: 50%;
    opacity: 1;
  }
}
@keyframes float-3 {
  from{
    bottom: -8%;
    opacity: 0;
  }
  to{
    bottom: 22%;
    opacity: 1;
  }
}

.homepg-writeup h2{
  position: absolute;
  top: 50%;
  opacity: 0;
  animation: float 2s ease;
  animation-fill-mode: forwards;
}

.homepg-writeup p{
  position: absolute;
  top: 70%;
  opacity: 0;
  animation: float-2 2s ease 1s;
  animation-fill-mode: forwards;
}

.homepg-writeup button{
  position: absolute;
  bottom: -8%;
  opacity: 0;
  animation: float-3 2s ease 1.5s;
  animation-fill-mode: forwards;
  padding: 8px 12px;
}

.homepg-writeup button {
  background-color: #da2c46;
  border: none;
  padding: 12px 20px;   /* balanced padding */
  border-radius: 3px;
  cursor: pointer;
  margin-top: 4%;
  transition: padding 0.3s ease;
  display: inline-block; /* keeps button only as wide as its content */
  max-width: fit-content; /* avoids stretching */
}

.homepg-writeup button a {
  text-decoration: none;
  color: #fff;
  font-family: 'poppins', sans-serif;
  font-size: clamp(0.8rem, 2.2vw, 1rem); /* scales but not too large */
  white-space: nowrap; /* stops text breaking */
}

/* Tablet range: keep button neat */
@media (max-width: 1000px) and (min-width: 501px) {
  .homepg-writeup button {
    padding: 10px 18px;
  }

  .homepg-writeup button a {
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 500px) {
  .homepg-writeup button {
    padding: 8px 14px;
  }

  .homepg-writeup button a {
    font-size: 0.85rem;
  }
}


@media (max-width: 578px) {
  @keyframes float{
    from{
      top: 80%;
      opacity: 0;
    }
    to{
      top: 28%;
      opacity: 1;
    }
  }

}
@media (max-width: 439px) {
  .homepg-writeup h2 {
    width: 85% !important;
  }
  @keyframes float {
    from{
      top: 50%;
      opacity: 0;
    }
    to{
      top: 22%;
      opacity: 1;
    }
  }
}
@media (max-width: 409px) {
  @keyframes float-3 {
    from{
      bottom: -8%;
      opacity: 0;
    }
    to{
      bottom: 15%;
      opacity: 1;
    }
  }
}
@media (max-width: 360px) {
  @keyframes float {
    from{
      top: 50%;
      opacity: 0;
    }
    to{
      top: 20%;
      opacity: 1;
    }
  }
  @keyframes float-2 {
    from{
      top: 80%;
      opacity: 0;
    }
    to{
      top: 55%;
      opacity: 1;
    }
  }
   @keyframes float-3 {
    from{
      bottom: -8%;
      opacity: 0;
    }
    to{
      bottom: 4%;
      opacity: 1;
    }
  }
}

.homepg-writeup h2 {
  font-size: clamp(1.2rem, 4.5vw, 2.2rem); /* scales with screen */
  line-height: 1.3;
  padding: 0 1rem;
  max-width: 90%;
}

.homepg-writeup p {
  font-size: clamp(0.9rem, 3.2vw, 1.1rem);
  line-height: 1.5;
  padding: 0 1rem;
  max-width: 95%;
}

.homepg-writeup button a {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
}

/* For very small screens */
@media (max-width: 414px) {
  .homepg-writeup {
    top: 20px;
    height: auto;
  }

  .homepg-writeup h2,
  .homepg-writeup p {
    position: static;   /* removes hard-coded absolute positions */
    opacity: 1;         /* ensures always visible */
    animation: none;    /* disable float animation on tiny screens */
    margin-bottom: 12px;
  }

  .homepg-writeup button {
    position: static;
    opacity: 1;
    animation: none;
    margin-top: 10px;
  }
}

@media (max-width: 1200px) {
  .homepg-writeup {
    top: 10px;
    height: auto;
    padding: 0 1rem;
  }

  .homepg-writeup h2,
  .homepg-writeup p {
    position: static !important;
    opacity: 1 !important;
    animation: none !important;
    width: 100% !important;
    text-align: center;
    margin-bottom: 12px;
  }
  .homepg-writeup button {
    position: static !important;
    opacity: 1 !important;
    animation: none !important;
    width: 50% !important;
    text-align: center;
    margin-bottom: 12px;
  }

  .homepg-writeup h2 {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    line-height: 1.3;
  }

  .homepg-writeup p {
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.4;
  }

  .homepg-writeup button a {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }
}
@media (max-width: 350px) {
  .homepg-writeup button {
    padding: 8px 12px; /* reduce size further */
  }

  .homepg-writeup button a {
    font-size: 0.75rem; /* shrink font slightly */
  }
}



/* styling for the about section */

.about-section{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 750px; /* Optional: ensures a minimum height but allows to grow */
  margin-bottom: 80px; /* Increase space below */
}

.about-container{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  height: auto;
  margin-bottom: 2%;
}

.about-text{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 45%;
  height: auto;
}

.about-image{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 500px;
}

.vis-mis{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  width: 98%;
}

.vision{
  width: 45%;
  padding: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #da2c46;
  border-radius: 24px;
  height: 150px;
  overflow: hidden;
}

.mision {
  width: 45%;
  padding: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #da2c46;
  border-radius: 24px;
  height: 150px;
  overflow: hidden;
}

.about-text h2, .about-text h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h-line {
  display: inline-block;
  height: 2px;
  width: 40px;
  background: #da2c46;
  border-radius: 2px;
}

.icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes most SVG/PNG icons appear white */
}

@media (max-width: 850px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    margin-top: 4%;
  }
  .about-text, .about-image {
    width: 90%;
    height: auto;
  }
  .vis-mis {
    flex-direction: column;
    align-items: center;
  }
  .vision, .mision {
    width: 90%;
    padding: 4%;
    margin-bottom: 2%;
  }
}
@media (max-width: 500px) {
  .about-text h2, .about-text h3 {
    font-size: 20px;
  }
  .vision, .mision {
    height: auto;
    padding: 4%;
  }
}


.why-chooseUs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 2% 0 4% 0;
}

.Ychoose-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 92%;
  height: auto;
}

.ychoose-cont,
.ychoose-cont2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

.ychoose-cont div,
.ychoose-cont2 div {
  width: 48%;      
  padding: 3%;       
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ce3047;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  margin: 1.2%;     
}

.Ychoose-container p {
  text-align: center;
}

/* Ensure heading and line are aligned horizontally for Why Choose Us */
.Ychoose-container h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .Ychoose-container {
    width: 90%;
  }
  .ychoose-cont,
  .ychoose-cont2 {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
  }
  .ychoose-cont div,
  .ychoose-cont2 div {
    width: 96%;   
    padding: 6%;     
    margin-bottom: 1%;
    height: auto;
  }
}


.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* Dark overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
}

.video-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.video-overlay p {
  font-size: 1.2rem;
  width: 90%;
}

/* Tablets */
@media (max-width: 992px) {
  .video-overlay h1 {
    font-size: 2.5rem;
  }
  .video-overlay p {
    font-size: 1rem;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .video-section {
    height: 80vh; /* Smaller height on phones */
  }

  .video-overlay h1 {
    font-size: 1.8rem;
  }
  
  .video-overlay p {
    font-size: 0.9rem;
  }
}


/* Testimonials Section */
.testimonials {
  background: #f9fafb;
  padding: 64px 0 48px 0;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 8px;
}

.testimonials-desc {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.testimonials-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 2.5rem;
}

.testimonials-list {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}

.testimonial-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10), 0 1.5px 6px rgba(44, 62, 80, 0.08);
  padding: 32px 24px;
  min-width: 350px;
  max-width: 370px;
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  opacity: 0.95;
}

.testimonial-item:hover {
  box-shadow: 0 8px 32px rgba(220,38,38,0.13);
  transform: translateY(-4px) scale(1.02);
  opacity: 1;
}

.testimonial-stars {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #eab308;
}

.testimonial-message {
  color: #22223b;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #da2c46;
  background: #f3f3f3;
  margin-right: 6px;
}

.testimonial-name {
  font-weight: 600;
  color: #22223b;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-role {
  color: #888;
  font-size: 0.95rem;
  font-style: italic;
}

/* Responsive styles for testimonial person */
@media (max-width: 700px) {
  .testimonial-person {
    gap: 8px;
    margin-top: 12px;
  }
  .testimonial-avatar {
    width: 38px;
    height: 38px;
  }
  .testimonial-name {
    font-size: 0.98rem;
  }
  .testimonial-role {
    font-size: 0.9rem;
  }
}

.testimonials-action {
  text-align: center;
  margin-top: 2.5rem;
}

.testimonials-btn {
  padding: 12px 32px;
  background: #2563eb;
  color: #fff !important;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  transition: background 0.2s;
  cursor: pointer;
}

.testimonials-btn:hover {
  background: #1d4ed8;
}

/* Slider navigation dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials-dot.active {
  background: #dc2626;
}


/* Responsive styles for testimonials */
@media (max-width: 1100px) {
  .testimonials-list {
    gap: 24px;
  }
  .testimonial-item {
    min-width: 340px;
    max-width: 95vw;
    flex: 0 0 340px;
  }
}
@media (max-width: 700px) {
  .testimonials {
    padding: 32px 0 24px 0;
  }
  .testimonials-list {
    gap: 16px;
  }
  .testimonial-item {
    min-width: 90vw;
    max-width: 98vw;
    flex: 0 0 90vw;
    padding: 18px 8px;
  }
  .testimonials-title {
    font-size: 1.3rem;
  }
  .testimonials-desc {
    font-size: 1rem;
  }
  .testimonials-action {
    margin-top: 1.5rem;
  }
}


/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-desc {
  font-size: 1.1rem;
  color: #555;
}

/* Grid layout: cards left, image right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Icons */
.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.contact-icon-blue { color: #007bff; }
.contact-icon-green { color: #28a745; }

/* Image box */
.contact-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.overlay-item span a{
  text-decoration: none;
  color: #fff;
}

.overlay-icon {
  font-size: 1.5rem;
}

.overlay-link {
  color: #0f0; /* green for WhatsApp */
  text-decoration: none;
}

.overlay-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer */
.footer {
  background: #22223b;
  color: #fff;
  padding: 48px 0 24px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
}

.footer-about {
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 24px;
}

.footer-about img {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 1rem;
  color: #e0e0e0;
}

.footer-links {
  flex: 1 1 180px;
  min-width: 160px;
  margin-bottom: 24px;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #da2c46;
}

.footer-contact {
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 24px;
}

.footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 8px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .industries-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 12px;
  }
}

@media (max-width: 600px) {
  .industries {
    padding: 32px 0 16px 0;
  }
  .industries-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 6px;
  }
  .industry-card {
    padding: 20px 10px;
  }
  .footer {
    padding: 32px 0 16px 0;
  }
  .footer-about img {
    max-width: 120px;
  }
}
@media (max-width: 400px) {
  .footer-about img {
    max-width: 100px;
  }
}
  .footer-about img {
    max-width: 120px;
  }
@media (max-width: 400px) {
  .footer-about img {
    max-width: 100px;
  }
}

.contact-button {
  background-color: #da2c46;
  color: #fff;
  padding: 12px 15px;
  border: none;
  font-size: 12px;
  font-family: arimo, sans-serif;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.8s ease;
  cursor: pointer;
}

.contact-button:hover {
  background-color: black;
}


.social-links {
  display: flex;
  gap: 15px; /* spacing between icons */
}

.social-links a {
  font-size: 2rem; /* size of icons */
  color: #fff; /* default color (can change) */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0077b5; /* LinkedIn blue on hover (you can customize per icon) */
}
