


 .body { 
        background: rgb(58, 58, 58); 
        color: white;
        font-family: Helvetica neue, Helvetica, Arial, sans-serif;
        margin: 0;
        padding: 0;
     }

 .body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130vh;
  bottom: auto;
  margin: 0;
 }

  /* Header */
  
.header{ 
        background-image: url ("../images/Service.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 300px;
        padding: 10px;

    }

.navbar img{
    display: grid;
    grid-template-rows: 20px;
    grid-template-columns: 0  40px 0;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgb(153, 153, 151);
    height: 160px;
    position:absolute; 
    right: 45%;
    box-shadow: 0 0 15px goldenrod;  
    top: 20px;
  
    }

/* --- Hero Section with Deep Military/Maritime Gradient --- */
.hero {
    background: linear-gradient(135deg, #3d3d55, transparent);
;/* background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);*/
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Gold/Bronze Badge for SDVOSB Status */
.badge-container {
    display: inline-block;
    background: linear-gradient(45deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    color: #111111;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

/* --- Trial / Blockquote Section --- */
.trial {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.trial blockquote {
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #203a43;
    padding-left: 20px;
}

.trial h2 {
    color: #0f2027;
    margin-top: 0;
    font-size: 1.8rem;
}

/* --- Capability Section (Service Cards Grid) --- */
.capability {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* --- Individual Service Cards --- */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Subtly tinted background content wrapper */
.service-content {
    padding: 25px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #ffffff 70%, #f0f4f8 100%);
}

.service-content h2 {
    font-size: 1.5rem;
    color: #203a43;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #bf953f;
    padding-bottom: 8px;
}

.service-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    padding: 8px 0 8px 20px;
    position: relative;
}

/* Custom styled bullets */
.service-content li::before {
    content: "▪";
    color: #bf953f;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 2px;
}

.h1{
    justify-content: center;
}

   PARTNERS LOGO GRID VIBRANT & FULL COLOR
   

/* 1. Layout Container for the Logos */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

/* 2. Target Every Logo Wrapper Class Selectively */
.logo, .logo2, .logo3, .logo4, .logo5 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;  /* Avoids hiding the logo behind card backgrounds */
}

/* 3. The Item Inner Box */
.item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 180px;         /* Uniform structural width for all logos */
  height: auto;
}

/* 4. Force Images to Stay Fully Colored and Sharp */
.item img {
  width: 100%;
  height: auto;
  object-fit: contain;      /* Keeps the original image proportions intact */
  
  /* CRITICAL FORCE-COLOR PROPERTIES: Overrides any global styles */
  filter: grayscale(0%) !important;   /* Completely strips away any black & white filters */
  filter: none !important;            /* Disables any alternate visual image alterations */
  opacity: 1 !important;              /* Ensures no fade-out or transparent masking effects */
  mix-blend-mode: normal !important;  /* Stops the background colors from bleeding into the image */
}

/* Container styling to create an elegant separation row */
.logo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: #2c2850; /* Change to match your section background */
    border-top: 1px solid #eaeaea; /* Subtle top border for separation */
    border-bottom: 1px solid #eaeaea; /* Subtle bottom border for separation */
}

/* Common layout styles for all logo wrappers */
.logo, .logo2, .logo3, .logo4, .logo5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base style for the inner item container */
.item {
    display: block;
}

/* Image settings and transition definitions */
.item img {
    max-width: 130px; /* Elegant, uniform sizing */
    height: auto;
    display: block;
    filter: grayscale(100%) opacity(60%); /* Elegant muted look by default */
    
    /* 
       Combines transform and filter changes over 0.6 seconds.
       cubic-bezier creates a professional, smooth acceleration effect.
    */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.4s ease;
}

/* Hover effects for the images */
.logo:hover img, 
.logo2:hover img, 
.logo3:hover img, 
.logo4:hover img, 
.logo5:hover img {
    /* 
       translateY(-10px) offsets the logo upward by 10px.
       rotate(360deg) spins the logo perfectly once.
    */
    transform: translateY(-10px) rotate(360deg);
    filter: grayscale(0%) opacity(100%); /* Restores full vibrant color on hover */
}



/* Container using Flexbox to align blocks side-by-side */
.contact-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 3000px;
  margin-top: 80px;
  margin-bottom: 150px;
}

/* Left Red Block */
.info-box {
  background: linear-gradient(135deg, #211e3d, #3e376d); /* Matches the vibrant red color */
  color: #ffffff;
  padding: 50px 60px 50px 40px;
  width: 200%;
  height: 40vh;
  box-sizing: border-box;
 
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-top:20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  font-size: 18px;
  margin-right: 15px;
  margin-top: 3px;
  opacity: 0.8;
}

.info-item h3 {
  font-size: 14px;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  font-weight: bold;
}

.info-item p {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
}

/* Right Overlapping White Form Block */
.form-box {
  background-color: #ffffff;
  padding: 50px;
  width: 25%;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-left: 0px; /* Pulls the white card left to overlap the red section */
  position: absolute; /* Keeps it layered on top of the red background */
  left:1000px;
  top: -60px;
  bottom: -60px;
  z-index: 50;
}

.form-box h2 {
  font-family: 'Arial Narrow', Arial, sans-serif; /* For the tall, clean font header */
  font-size: 32px;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
  color: #111111;
}

/* Form input fields mimicking the under-line border style */
.form-box input[type="text"],
.form-box input[type="email"],
.form-box textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #111111; /* Bottom border line styling */
  padding: 12px 0;
  margin-bottom: 25px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.form-box input::placeholder {
  color: #aaaaaa;
}

/* Submit Button */
.form-box button {
  background-color: transparent;
  color: #111111;
  border: 2px solid #111111;
  padding: 10px 25px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-box button:hover {
  background-color: #111111;
  color: #ffffff;
}


/* Responsive design for tablets and mobile devices */

 @media (max-width: 768px)
{
  .contact-container{
    flex-direction: columns;
    align-items: stretch;}

  }

  .info-box, .form-box {
    width: 100%;
  }
  
  .form-box {
    margin-left: 0;
    margin-top: -30px; /* Overlaps vertically instead of horizontally on mobile */
    position: relative;
    padding: 30px;
  }