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

.contact-row3-mobile {
  display: none;
}

.headertext{
  color:yellow
}

.contactimage {
  width: 679px;
  height: 275px;
  object-fit: cover;
  border-radius: 10px;
}


html {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: linear-gradient(rgba(213, 213, 221, 0.884), rgba(196, 196, 199, 0.884)),
    url('Prosec\ CITR\ logo.png') center/contain no-repeat fixed;
  background-size: 426px;
  /* adjust this to control image size */
  background-attachment: fixed;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 11px;
}

.service-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  margin-top: 256px;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  margin: 0;
  transition: background 0.3s ease, padding 0.3s ease;
  gap: 2rem;
}

/* Center emergency text */
.emergency-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fecb29;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  /* So it doesn't interfere with nav clicks */
}

.logo {
  flex-shrink: 0;
}

.nav-menu {
  flex-shrink: 0;
}


body.scrolled .navbar-inner {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.7rem 2rem;
}

.logo img {
  height: 60px;
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  color: #fecb29;
  text-decoration: none;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fecb29;
  padding: 2rem;
  font-size: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-call {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: #fecb29;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: background 0.3s ease;
  font-size: 3rem;
}

.hero-call img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.hero-call:hover {
  background: rgba(255, 255, 255, 0.4);
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background: #fecb29;
  color: black;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: white;
}


.about {
  text-align: center;
  background: transparent;
  color: black;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 206px;
}

.about h2 {
  margin: 0 auto 2rem auto;
  /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1rem;
  font-weight: 600;
  width: fit-content;
  /* Shrinks to content */
  display: block;
  /* Block-level to allow margin: auto to center */
}

.abouthome {
  text-align: center;
  background: transparent;
  color: #25d366;
  padding-top: 2rem;
  padding-bottom: 2rem;

}

.abouthome h2 {
  margin: 0 auto 2rem auto;
  /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1rem;
  font-weight: 600;
  width: fit-content;
  /* Shrinks to content */
  display: block;
  /* Block-level to allow margin: auto to center */
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.Minimum-requirements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

}

.about-text {
  max-width: 800px;
  padding-top: 1rem;
  color: black;
  font-size: 1.25rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  color: black;
  font-size: 1.25rem;
}

.section-heading {
  text-align: center;
  margin: 16px auto 2rem auto;
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 2rem;
  font-weight: 600;
  width: fit-content;
  display: block;
}

/* Use flex to control spacing more tightly */
.services-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  /* Adjust this to control spacing between service items */
  flex-wrap: wrap;
}

.service {
  background: transparent;
  text-align: center;
  padding: 1rem;
  /* Reduced padding to shrink vertical spacing */
  width: 328px;
}

.service h3 {
  color: black;
}

.service-icon {
  width: 90%;
  /* Reduced from 360px */
  height: 268px;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Gallery */
.gallery {
  background: transparent;
}

.gallery .swiper {
  width: 100%;
  overflow: hidden;
  background: transparent !important;
}

.gallery .swiper-wrapper {
  display: flex;
  background: transparent !important;
}

.gallery .swiper-slide {
  /* width: 25%; */
  /* 4 images per view */
  height: 305px;
  margin: 0;
  /* remove all gap */
  flex-shrink: 0;
  background: transparent !important;
}

.gallery .swiper-slide img {
  width: 95%;
  height: 77%;
  object-fit: cover;
  display: block;
  background: transparent !important;
}


 /* Gallery */
  .gallery1 { background: transparent; }

  .gallery1 .swiper {
    width: 100%;
    overflow: hidden;
    background: transparent !important;
  }

  .gallery1 .swiper-wrapper {
    display: flex;
    background: transparent !important;
  }

  .gallery1 .swiper-slide {
    height: 411px;              /* fixed slide height */
    margin: 0;                   /* remove gaps */
    flex-shrink: 0;
    display: flex;               /* center images nicely */
    align-items: center;
    justify-content: center;
    background: transparent !important;
  }

  .gallery1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;         /* or 'cover' if you want full bleed */
    display: block;
    background: transparent !important;
  }

  /* Nav arrows (optional styling) */
  .gallery1 .swiper-button-next,
  .gallery1 .swiper-button-prev {
    color: #fff;                 /* visible on dark bg */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  }



/* Nav buttons style */
.swiper1-button-next,
.swiper1-button-prev {
  color: #fecb29;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
}

.swiper1-button-next::after,
.swiper1-button-prev::after {
  font-size: 24px;
  background: transparent !important;
}

/* Contact */

.contact-section {
  padding: 4rem 1rem;
  background: transparent;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  color: #fecb29;
  border: 2px solid #fecb29;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  background: rgba(0, 0, 0, 0.2);
}

/* Flexbox Row */
.contact-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-row2 {

  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: grid;
  height: auto;
  grid-template-columns: 300px 300px 300px;
}


/* Each Panel */
.contact-panel {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  color: black;
}

/* Titles */
.contact-panel h3 {
  color: black;
  margin-bottom: 1rem;
}

/* Links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: black;
  text-decoration: none;
}

.quick-links a:hover {
  text-decoration: underline;
}

/* Facebook Box */
.fb-container {
  height: 400px;
  width: 100%;
  max-width: 340px;
  overflow-y: hidden;
  overflow-x: hidden;
}

.fb-container {
  height: 400px;
  width: 100%;
  max-width: 340px;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem 0;
  color: #fecb29;
  text-align: center;
}

/* Sticky Header Container */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.nav-container {
  display: flex;
  justify-content: center;
  /* bring tabs and logo closer together */
  align-items: center;
  /* padding: 2rem 1rem; */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 0.3rem;
  /* reduce spacing between nav-left, logo, nav-right */
  margin-top: 1rem;
  /* <<< Add this line */
}


.nav-container-menues {
  display: flex;
  justify-content: center;
  /* bring tabs and logo closer together */
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.753);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 0.3rem;
  /* reduce spacing between nav-left, logo, nav-right */
  /* <<< Add this line */
  /* border: 2px solid #fecb29; */
}

/* Default header padding */
.nav-container,
.nav-container-menues {
  /* padding: 0.5rem 2rem; */
  transition: all 0.3s ease;
}

/* Shrink header on scroll */
body.scrolled .nav-container {
  height: 80px;
  /* shrunk height */
}

body.scrolled .nav-container-menues {
  /* padding: 0.5rem 2rem; */
  /* smaller height when scrolled */
}


.nav-left,
.nav-right {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: #fecb29;
  font-weight: 600;
  font-size: 1.3em;
  margin-right: 41px;
}

.nav-left li a:hover,
.nav-right li a:hover {
  text-decoration: underline;
}

/* Rotating Logo */
.logo-rotating {
  animation: rotateLogo 20s linear infinite;
  height: 120px;
  width: 120px;
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  perspective: 1000px;
  margin-top: 13px;
}

.logo-rotating img {
  /* height: 100%; */
  /* width: 100%; */
  object-fit: contain;
}

@keyframes rotateLogo {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.sticky-header.shrink .logo-rotating img {
  height: 58px;
  /* margin-top: 35px; */
}


/* Top Header Bar */
.top-header {
  width: 100%;
  background: #000000;
  /* Red transparent */
  color: white;
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}

.top-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: bold;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-item img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.fb-scrollable {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.fb-container {
  height: 400px;
  width: 100%;
  max-width: 340px;
  overflow-y: auto;
  overflow-x: hidden;
}

.corporate-profile-section {
  background-color: #1e1e1e;
  padding: 60px 20px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.profile-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.profile-text {
  flex: 1;
  min-width: 300px;
}

.profile-text p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.profile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.profile-link {
  display: inline-block;
  margin-top: 20px;
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}

.profile-link:hover {
  text-decoration: underline;
}


/* color:  red#ec1c24, black#212d31, grey#343a40, white#eee  */
* {
  box-sizing: border-box;
}



.contain {
  background-color: #eee;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  margin-top: 310px;
}

div.form {
  width: 75%;
  /* background-color: #eee; */
}

.contact-wrapper {
  margin-bottom: -23px;
  margin-left: -177px;
}

.submit-btn {
  float: left;
}

.reset-btn {
  float: right;
}

.form-headline:after {
  content: "";
  display: block;
  width: 10%;
  padding-top: 10px;
  border-bottom: 3px solid #fecb29;
}

.highlight-text {
  color: #fecb29;
}

.hightlight-contact-info {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}

.highlight-text-grey {
  font-weight: 500;
}

.email-info {
  margin-top: 20px;
}

::-webkit-input-placeholder {
  /* Chrome */
  font-family: 'Roboto', sans-serif;
}

.required-input {
  color: black;
}

h3,
ul {
  margin: 0;
}

h3 {
  margin-bottom: 1rem;
}

.form-input:focus,
textarea:focus {
  outline: 1.5px solid #fecb29;
}

.form-input,
textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  position: relative;
}



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

.contacts {
  color: #212d31;
}

.contact h2 {
  margin: 0 auto 0rem auto;
  /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.2rem;
  font-weight: 600;
  width: fit-content;
  /* Shrinks to content */
  display: block;
  /* Block-level to allow margin: auto to center */
}

.contactus h2 {
  margin: 0 auto 2rem auto;
  /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 2rem;
  font-weight: 600;
  width: fit-content;
  /* Shrinks to content */
  display: block;
  /* Block-level to allow margin: auto to center */
}

.contact {
  text-align: center;
  background: transparent;
  color: #25d366;
  padding-top: 2rem;
  padding-bottom: 2rem;
  /* margin-top: 196px; */
}

.contact-row3 {

  gap: 2rem;

  justify-content: center;

  align-items: stretch;

  flex-wrap: wrap;

  max-width: 1200px;

  margin: 0 auto;

  padding: 2rem;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 16px;

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);

  display: grid;

  height: auto;

  grid-template-columns: 500PX 500PX;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

form label {
  display: block;
}

form p {
  margin: 0;
}

.full-width {
  grid-column: 1 / 3;
}

.full-width1 {
  grid-column: 1 / 2;
}

.full-width2 {
  display: inline;
  grid-column: 2 / 2;
}

button,
.submit-btn,
.form-input,
textarea {
  padding: 1em;
}

button,
.submit-btn {
  background: #eebe25;
  border: 1px solid #fecb29;
  color: #000000;
  border-radius: 15px;
  padding: 5px 20px;
  text-transform: uppercase;
}

button:hover,
.submit-btn:hover,
button:focus,
.submit-btn:focus {
  background: #fecb29;
  outline: 0;
  color: #eee;
}

.error {
  color: #fecb29;
}

/* Base label styling */
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  color: #121212;
  gap: 8px;
}

/* Hide native checkbox */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Custom box */
.custom-checkbox .checkmark {
  width: 31px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid #888;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

/* When checked: change color */
.custom-checkbox input:checked+.checkmark {
  background-color: #ffd700;
  /* Yellow when checked */
  border-color: #ffd700;
}

/* Optional tick mark */
.custom-checkbox input:checked+.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #1e1e1e;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.aboutpage {
  text-align: center;
  background: transparent;
  color: #25d366;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 206px;
  margin-bottom: -328px;
}

.aboutpage h2 {
  margin: 0 auto 2rem auto;
  /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 2rem;
  font-weight: 600;
  width: fit-content;
  /* Shrinks to content */
  display: block;
  /* Block-level to allow margin: auto to center */
}

.aboutimage {
  margin-top: 30px;
  width: 700px;
  /* Reduced from 360px */
  height: 210px;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.psiraimage {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
}

.payflex {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
}

.wrapper {
  /* display: flex; */
  /* justify-content: center; */
  /* Center horizontally */
  /* align-items: center; */
  /* Center vertically */
  height: 66vh;
  /* Full screen height (adjust as needed) */
  /* position: relative; */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  position: relative;
  top: 9px;
  /* Adjust to move logos up/down */
  /* margin-top: 53px; */
}

.column img {
  height: 202px;
  /* Uniform logo height */
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  /* Optional shadow */
}

.cv-upload-section {
  max-width: 600px;
  margin: 100px auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #212d31;
  text-align: center;
}

.cv-upload-section h2 {
  font-size: 2rem;
  color: black;
  margin-bottom: 1rem;
}

.cv-upload-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cv-upload-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-upload-form .form-group {
  text-align: left;
}

.cv-upload-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cv-upload-form input[type="text"],
.cv-upload-form input[type="email"],
.cv-upload-form input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.cv-upload-form .btn-primary {
  background: #fecb29;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cv-upload-form .btn-primary:hover {
  background: #fff;
  color: #000;
}



.logo-rotating {
  height: 60px;
  width: 60px;
  animation: rotateLogo 20s linear infinite;
}

.logo-rotating img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Show hamburger on mobile only */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fecb29;
  cursor: pointer;
}

.nav-top-row {

  display: none;
}


.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #494949;
  cursor: pointer;
  padding: 1rem;
  text-align: right;
}

.nav-container-menues {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.0rem 1rem;
  text-align: center;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-left li a,
.nav-right li a {
  color: #fecb29;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2 1rem;
  display: block;
}


/* Responsive */

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 100px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}



  .gallery1 .swiper-slide img {
    width: 50%;
    height: 100%;
    object-fit: contain;         /* or 'cover' if you want full bleed */
    display: block;
    background: transparent !important;
  }





  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 1rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}
}

@media (min-width: 700px) {
  .wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }

  .wrapper>* {
    padding: 2em 2em;
  }

  .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 60px;
    width: 60px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 1rem;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }
}

@media (min-width: 600px) {
  .contain {
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  
.service {
    background: transparent;
    text-align: center;
    padding: 1rem;
    width: 30%;
}

.top-header {
  width: 100%;
  background: #000000;
  /* Red transparent */
  color: white;
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}


.aboutheading1{
        font-size: 20px;
}


  .nav-container {
    flex-direction: column;
    gap: 20.2rem;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 95px;
    width: 82px;
    
    /* reduce spacing around logo */
    margin-top: 25px;
    margin-bottom: 2px;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    font-size: 15px;
    color: black;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 1rem;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1rem;
  }

  .feature h4 {
    font-size: 1rem;
  }
}
/* 2x3 Gallery Grid */
.gallery-grid-section { background: transparent; padding: 2rem 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid .tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  aspect-ratio: 4 / 3; /* consistent tiles */
  background: rgba(255,255,255,0.06);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.04); }

/* Responsive fallbacks */
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }




/* === Core phone width breakpoints (portrait) === */
/* Ultra-small phones */
@media (max-width: 320px) { /* iPhone SE (old) sizes */ }

/* Small Androids */
@media (max-width: 360px) {}

/* Common iPhone/Android */
@media (max-width: 375px) {
    
    
}   /* many iPhones */
@media (max-width: 390px) {
    
    
    
}   /* modern iPhones (base) */
@media (max-width: 393px) {
    
    
    
}   /* iPhone Pro (many models) */

/* Large phones / phablets */
@media (max-width: 412px) {
    .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 10px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}


  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 1rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}
}
    

@media (max-width: 414px) {

      .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 100px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}


  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}

body{
    
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(rgba(213, 213, 221, 0.884), rgba(196, 196, 199, 0.884)), url(Prosec CITR logo.png) center / contain no-repeat fixed;
    background-size: 242px;
    background-attachment: fixed;
    
}
    
    
}   /* older Plus iPhones */
@media (max-width: 428px) {

      .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 100px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}


  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}

body{
    
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(rgba(213, 213, 221, 0.884), rgba(196, 196, 199, 0.884)), url(Prosec CITR logo.png) center / contain no-repeat fixed;
    background-size: 242px;
    background-attachment: fixed;
    
}
    
    
}
@media (max-width: 430px) {

      .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 100px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}


  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}

body{
    
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(rgba(213, 213, 221, 0.884), rgba(196, 196, 199, 0.884)), url(Prosec CITR logo.png) center / contain no-repeat fixed;
    background-size: 242px;
    background-attachment: fixed;
    
}
    
    
}   /* biggest modern iPhones */

/* (Optional) Catch-all for ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œany phoneÃƒÂ¢Ã¢â€šÂ¬Ã‚Â */
@media (max-width: 480px) {
    .nav-container {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .full-width1 {
  grid-column: 1 / 1;
  width: max-content;
  text-align: left;
}

.full-width2 {
  /* display: inline; */
  grid-column: 1 / 2;
  text-align: left;
}
  
  .gallery .swiper-slide {
  width: 25%;
  /* 4 images per view */
  height: 100px;
  margin: 7px;
  /* remove all gap */
  margin-bottom: -11px;
  flex-shrink: 0;
  background: transparent !important;
}


  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .logo-rotating {
    height: 103px;
    width: 303px;
    margin: 0 0.3rem;
    /* reduce spacing around logo */
    margin-left: 38%;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  a,
  li {
    list-style: none;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-call {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .about-text,
  .contact-panel,
  .form-group,
  .cv-upload-section {
    font-size: 0.9rem;
    text-align: center;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .service-icon {
    width: 280px;
    height: 228px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


  .nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    margin-top: 25px;
  }


   .nav-container-menues {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }



  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: right;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
  }

  .nav-left li a,
  .nav-right li a {
    /* background: #222; */
    width: 100%;
    padding: -5rem;
    /* border-top: 1px solid #444; */
  }

  .topnav{
    font-size: 0.50rem;

  }

  .column img{height: 201px;object-fit: contain;filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));margin-bottom: 20px;}

  .location {

        width: 300px;
         height: 300px;

  }

  .contact-row3{

    display: none;

  }

  .contact-row3-mobile{

    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   display: block; 
    height: auto;
    /* grid-template-columns: 500PX 500PX; */
  }
 
.contact-row2 {
 
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  height: auto;
}

.about h2 {
  margin: 0 auto 2rem auto; /* Center the box */
  padding: 0.5rem 1.5rem;
  border: 2px solid #fecb29;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fecb29;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;       /* Shrinks to content */
  display: block;           /* Block-level to allow margin: auto to center */
}


.contactimage {
  width: 406px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.row {
      
        justify-content: center;
        align-items: flex-end;
        gap: 20px;
        width: 100%;
        position: relative;
        top: 40px;
        display: block;

}

.aboutheading{
    font-size:17px;
    
}


body{
    
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(rgba(213, 213, 221, 0.884), rgba(196, 196, 199, 0.884)), url(Prosec CITR logo.png) center / contain no-repeat fixed;
    background-size: 242px;
    background-attachment: fixed;
    
}
}