/* 
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} 
  

.manrope-<uniquifier> {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

:root {
  --bg: #000000;
  --dust1: #ffffff;
  --dust2: #b8b8b8;
  --dust3: #f97385;
}

body {
  margin: 0;
  color: white;

}

/* Hide scrollbar in Webkit */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar in Firefox */
html {
  scrollbar-width: none;
}

:root {
  --primary: #d61f37;
}

body,
html {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5%;
  gap: 2rem;
  overflow: hidden;
  isolation: isolate;
  background-color: black;
  z-index: 6;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

#starfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 38%;
}

.hero h1,
h1.landing_h1 {
  /* font-family: "DM Serif Display", serif; */
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  line-height: 60px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  text-transform: uppercase;
}

.hero h2,
h2.landing_h2 {
  /* font-family: "DM Serif Display", serif; */
  font-family: "Jura", sans-serif;
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 0rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  text-transform: uppercase;
  display: ruby-text;
  padding: 5px 15px;
  color: #fff;
  background: #e71d2b;
}

.hero p {
  font-family: "Jura", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: 0px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.4s;
  text-align: justify;
  width: 110%;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-3d {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* === CENTER BUTTON CONTAINER === */
.hero-buttons {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 5;
  animation: floatButtons 4s ease-in-out infinite;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes floatButtons {

  0%,
  100% {
    transform: translate(-50%, 0px);
  }

  50% {
    transform: translate(-50%, -6px);
  }
}

/* === BUTTON BASE === */
.button {
  font-family: "Jura", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* === HOVER EFFECT === */
.button:hover {
  transform: scale(1.08) translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* === ICON WRAPPER === */
.button__icon-wrapper {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  color: var(--clr);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.button:hover .button__icon-wrapper {
  transform: rotate(20deg) scale(1.1);
}

/* === ICON SLIDE ANIMATION === */
.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.35s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.35s ease-in-out 0.1s;
  transform: translate(0);
}

/* === COLOR VARIANTS === */
.button.black {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button.black:hover {
  background: rgba(0, 0, 0, 0.7);
}

.button.red {
  background: #e71d2b;
  border: 1px solid #7a0d14;
}

.button.red:hover {
  background: #97050f;
}

/* === RESPONSIVE STYLES === */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-buttons {
    bottom: 40px;
    gap: 16px;
  }

  .button {
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
  }
}

/* === MOBILE FIXED BUTTON ROW === */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    /* keep in a row */
    justify-content: center;
    /* center buttons */
    gap: 12px;
    /* spacing between buttons */
    flex-wrap: nowrap;
    /* prevent wrapping */
    bottom: 25px;
    padding: 0 10px;
    animation: none;
    display: grid;
  }

  .button {
    flex: 1 1 auto;
    /* buttons grow evenly */
    min-width: -webkit-fill-available;
    /* prevent buttons from getting too small */
    max-width: max-content;
    /* optional maximum width */
    padding: 0.9rem 1.8rem;
    /* wider for mobile */
    white-space: normal;
    /* allow text to wrap */
    text-align: center;
    /* center text inside button */
    width: max-content;
  }

  .button__icon-wrapper {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    /* center icon in button */
  }

  .hero h2,
  h2.landing_h2 {
    display: inline-flex;
    line-height: 40px;
    margin: 12px 0;
  }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
  /* .button {
    min-width: 190px;
    padding: 10px 15px;
    font-size: 0.9rem;
  } */
}





/* Fixed starfield canvas background */
#c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.landing {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  height: 100%;
  padding: 5%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

.left {
  /* display: flex; */
  flex-direction: column;
  gap: 0px;
  max-width: 600px;
}

.left h2 {
  /* font-family: "Literata", serif;
  font-size: 25px;
  letter-spacing: 2px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500; */

  font-family: "Jura", sans-serif;
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 0rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  text-transform: uppercase;
  display: ruby-text;
  padding: 5px 15px;
  color: #fff;
  background: #e71d2b;

}

.left p {
  font-family: "Jura", sans-serif;
  line-height: 1.6;
  max-width: 500px;
  color: #ccc;
  font-size: 16px;
  text-align: justify;
}

.products {
  width: 75%;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}

.products-inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.products img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 500px;
}

.heading2 {
  /* font-family: "Literata", serif; */
  font-family: "Jura", sans-serif;
  font-size: 45px;
  font-weight: bold;
  line-height: 53px;
  letter-spacing: 1.7px;
}

.subtext {
  font-family: "Jura", sans-serif;
  font-size: 16px;
  color: #ddd;
  line-height: 27px;
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0px;
  }

  .left h2 {
    font-size: 2.5rem;
    line-height: 40px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .heading2 {
    font-size: 2.5rem;
    line-height: 48px;
    letter-spacing: 0;
    margin: 20px 0;
  }

  .products {
    width: 90%;
    justify-content: center;
    margin: 20px auto;
  }

  .left p {
    line-height: 1.5;
    font-size: 16px;
    max-width: 100%;
    text-align: center;
    color: #fff
  }

  .right,
  .left {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .left {
    /* margin-bottom: -180px; */
  }

  .subtext {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }
}


@media (max-width: 768px) {
  .absolute.top-4.right-4 {
    /* display: none; */
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 5.5rem 1rem;
  }

  .hero-inner {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .hero-3d {
    width: 100%;
    min-height: 280px;
    top: -100px;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 44px;
  }

  .hero-center-button {
    bottom: 20px;
  }

  .products img {
    width: 50px;
    height: 50px;
  }

  .absolute.top-4.left-1\/2.-translate-x-1\/2.z-10 {
    left: 10%;
  }

  header.absolute.top-4.left-10.z-10.flex.items-center.gap-4 {
    left: 25%;
    top: 1.3rem !important;
  }

  .footer-section.footer-about a {
    display: ruby;
  }

  .absolute.top-4.right-4.z-10 {
    top: 14px;
    right: 15px !important;
  }
}

.industry-section {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  z-index: 1;
}

.heading-block {
  text-align: center;
  margin-bottom: 5px;
}

.heading-block h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Jura", sans-serif;
  color: #fff;
  line-height: 1.2;
}

.industry-section .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-pill img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.service-pill h3 {
  font-family: "Jura", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.service-pill h3 span {
  color: #fb0d0d;
  font-weight: 700;
}

.service-pill:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.2);
}

#industryHero3d {
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

/* === Base Styles (already defined) === */
/* Keep your existing styles as is */

/* === Responsive for Mobile === */
@media (max-width: 991px) {
  .industry-section .content {
    flex-direction: column;
    /* stack columns vertically */
    gap: 40px;
    padding: 0 20px;
  }

  .services-column {
    flex-direction: row;
    /* optional: make services row instead of column */
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .service-pill {
    flex: 1 1 45%;
    /* 2 pills per row on mobile */
    max-width: 300px;
    /* optional max width */
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
  }

  .service-pill img {
    width: 30px;
    height: 30px;
  }

  .service-pill h3 {
    font-size: 15px;
  }

  #industryHero3d {
    width: 100%;
    /* full width on mobile */
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .industry-section .content {
    flex-direction: column-reverse;
    /* stack columns vertically */
    gap: 20px;
    padding: 0 20px;
    padding-bottom: 15px;
  }

  .services-column {
    gap: 20px;
  }


}

@media (max-width: 480px) {
  .service-pill {
    flex: 1 1 100%;
    /* full width pills on very small screens */
    padding: 10px 15px;
  }

  .service-pill h3 {
    font-size: 14px;
  }

  #industryHero3d {
    height: 300px;
  }
}




.eastwest-section {
  position: relative;
  padding: 60px 20px;
  color: #333;
  font-family: "Jura", sans-serif;
  overflow: hidden;
  background: #000;
}

/* Background video */
.eastwest-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.eastwest-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.eastwest-section .section-title {
  font-family: "Jura", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 15px 0 35px;
  color: #e4e4e4;
}

/* Team Members */
.eastwest-section .team-members {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.eastwest-section .member {
  text-align: center;
  width: 175px;
}

.eastwest-section .member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(187, 187, 187, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.eastwest-section .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eastwest-section .member-name {
  font-size: 17px;
  font-weight: 500;
  color: #fffdfd;
}

.eastwest-section .member-role {
  font-size: 15px;
  color: #e0e0e0;
}

/* Our Team Text */
.eastwest-section .our-team {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 20px;
  border-radius: 12px;
}

.eastwest-section .our-team ul {
  list-style: none;
}

.eastwest-section .our-team ul li {
  margin-bottom: 10px;
}

/* Mission Tags */
.eastwest-section .mission-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.eastwest-section .tag {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(242, 242, 242, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .eastwest-section .member {
    /* width: 80px; */
  }

  .eastwest-section .member-photo {
    /* width: 60px;
    height: 60px; */
  }
}



/* --- Footer Styles --- */
.site-footer {
  font-family: "Jura", sans-serif;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 20px 0;
  z-index: 50;
  position: relative;
}

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

/* --- Top Section: Flexbox Layout --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  /* Space between columns */
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* Allows columns to wrap on smaller screens */
}

.footer-section {
  min-width: 200px;
  justify-content: center;
  display: grid;
  /* Minimum width for each section */
}

/* --- Section 1: Logo and Socials --- */
.logo-img {
  width: 141px;
  /* Controls logo width */
  height: auto;
  /* Maintains aspect ratio */
}

.footer-about .company-name {
  font-size: 1.1em;
  margin-top: 0px;
  color: #fff;
  font-weight: 500;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #555555;
}

/* --- Section 2 & 3: Links and Address --- */
.footer-section h4 {
  color: #fff;
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-address a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-address a:hover {
  color: #ffffff;
}

.footer-address p {
  color: #cccccc;
  line-height: 1.7;
  margin: 0 0 25px 0;
}

/* --- Section 4: Map --- */
.footer-map iframe {
  width: 100%;
  height: 218px;
  /* Controls the height of the map */
  border-radius: 8px;
  border: 0;
  /* Removes default border */
}

/* --- Bottom Section: Copyright --- */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  margin: 0;
  color: #cccccc;
  font-size: 0.9em;
}

/* --- Responsive Design for smaller screens --- */
@media (max-width: 992px) {
  .footer-top {
    justify-content: flex-start;
  }

  .footer-section {
    flex: 1 1 45%;
    /* Two columns on tablets */
    margin-bottom: 30px;
  }
}

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

  .footer-section {
    flex: 1 1 100%;
    /* Full width on mobile */
    width: 100%;
    min-width: unset;
    margin-bottom: 40px;
  }

  .footer-bottom {
    text-align: center;
  }

  .site-footer {
    text-align: center;
  }

  .social-icons {
    margin: 20px auto 0;
    justify-content: center;
  }
}

.ff {
  background: #000;
  padding: 20px 0px;
}

.contact-box {

  font-family: "Jura", sans-serif;

  /* keep your other styles */
  background: #f60000;
  border-radius: 25px;
  padding: 0px 40px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;

  width: 100%;
}



/* Left side */
.contact-left {
  flex: 1;
  padding-right: 20px;
  margin-left: 20px;
}

.contact-left h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.contact-left h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 6px;
}

/* Grid layout 2x2 */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.contact-form input,
.contact-form button {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  box-sizing: border-box;
  /* Ensures padding and border are included in the element's total width and height */
}

.contact-form input {
  background: #fff;
  color: #000;
}

/* Button style */
.contact-form button {
  border: 1px solid #000;
  background: #5a5656;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 1px 2px 3px #000;
  transition: 0.2s;
}

.contact-form button:hover {
  background: #6e6a6a;
}

/* Right side (circle image) */
.contact-right {
  flex: 0.3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Add this to your CSS */
.contact-right img {
  width: 371px;
  height: 371px;
  border-radius: 50%;
  object-fit: cover;

  margin-right: -130px;
  animation: spin 8s linear infinite;
  /* <-- spinning animation */
}

/* Keyframes for rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .ff {

    padding: 20px 10px;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
    margin: 20px;
    padding: 20px;
    max-width: 350px;
  }

  .contact-left {
    padding-right: 0;
  }

  .contact-right {
    margin-top: 20px;
    justify-content: center;
    margin-left: -130px;
  }

  .contact-right img {
    margin-right: -130;
  }

  .hero p {

    text-align: center;
    width: 100%;
  }

  .logo-img {
    width: 141px;
    height: auto;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-right img {
    width: 350px;
    height: 225px;
  }
}





/* SECTION WRAPPER */
.contact-section2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
  min-height: 310px;

  /* Background image */
  background-image: url(../rb3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* 🔹 Overlay layer */
.contact-section2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* change alpha for darkness (0.3 = light, 0.7 = dark) */
  z-index: 0;
}

/* Ensure all content stays above the overlay */
.contact-section2 * {
  position: relative;
  z-index: 1;
}



/* LADY IMAGE - full height, head outside */
.lady2 {
  position: absolute;
  left: -260px;
  bottom: -20px;
  height: 125%;
  z-index: 2;
  margin-bottom: -1px;
}

.lady2 img {
  height: 118%;
  width: auto;
  object-fit: cover;
  transform: translateY(-19%) translateX(29%);
}

/* MAIN CONTENT (text + circle + form) */
.center-block {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centers horizontally */
  gap: 40px;
  flex: 1;
  margin-left: 0;
  /* remove left spacing */
  max-width: 1100px;
  /* prevent stretching too wide */
  width: 100%;
  z-index: 2;
}

/* LEFT TEXT */
.contact-left2 {
  max-width: 350px;
  text-align: left;
}

.contact-left2 h2 {
  font-family: "Literata", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-left2 p {
  font-family: "Jura", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  padding-left: 0px;
  text-align: justify;
}

/* CIRCLE IMAGE (rotating wheel) */
.contact-circle2 {
  flex: 0 0 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  left: 75px;
  top: -100px;
}

.contact-circle2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: spin 10s linear infinite;
  /* rotation */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* FORM */
.contact-form2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 350px;
}

.contact-form2 input {
  padding: 12px 15px;
  border: 1px solid #666;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form2 input:focus {
  border: 1px solid #ff0000;
}

/* ✅ Email spans full width */
.contact-form2 input[type="email"] {
  grid-column: span 2;
}

.contact-form2 button {
  grid-column: span 2;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  background: #c60000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form2 button:hover {
  background: #ff0000;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-section2 {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: auto;
  }

  .lady2 {
    position: relative;
    height: auto;
    transform: none;
    text-align: center;
    margin-bottom: -9px;
    display: none;
  }

  .lady2 img {
    height: auto;
    width: 370px;
    transform: none;
  }

  .contact-left2 p {
    padding-left: 0px;
  }

  .center-block {
    flex-direction: column;
    margin-left: 0;
    gap: 30px;
  }

  .contact-left2 {
    max-width: 100%;
    text-align: center;
  }

  .contact-circle2 {
    flex: none;
    width: 200px;
    height: 200px;
  }

  .contact-form2 {
    grid-template-columns: 1fr;
    width: 100%;
    /* full width of container */
    max-width: 100%;
    /* no fixed 902px / 350px */
    margin: 0 auto;
    /* center inside parent */
    box-sizing: border-box;
    padding: 0 15px;
    /* small side padding */
  }

  .contact-form2 input,
  .contact-form2 button {
    width: 100%;
    /* force full width */
    grid-column: span 1 !important;
    /* each on its own line */
    box-sizing: border-box;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  .hero {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .left {
    /* max-width: 400px; */
  }

  .heading2 {
    font-size: 35px;
    line-height: 46px;
  }

  .heading-block {
    top: -5px;

  }

  .services-column {
    width: 680px;

  }

  .heading-blockC {
    left: 40px;
  }

  .contentOne h2 {
    font-size: 33px;
    line-height: 49px;
  }

  .contentOne .des {
    font-size: 12px;
    margin-top: -14px;
  }


}


.shake {
  animation: shake 15s ease infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(10px);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.top-menu {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  left: 0;
  right: 0;
  min-height: 78px;
}

.fs-21 {
  font-size: 21px;
}

.text-red {
  color: #e71d2b;
}

a.header-link {
  font-size: 21px;
  color: #e71d2b;
}

a.header-link:hover {
  font-size: 21px;
  color: #fff;
}

#scroll {
  position: fixed;
  right: 30px;
  bottom: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #e71d2b;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  z-index: 99;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: #fffdfd;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
  color: #e71d2b;
}

#scroll:hover span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #e71d2b;
}

.footer-bottom a {
  color: #e71d2b;
}

.footer-bottom a:hover {
  color: rgb(140, 198, 60);
}