﻿/* Zing Technologies - Consolidated Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* --- App.css --- */

@import url("https://fonts.googleapis.com/css2?family=Island+Moments&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #ff7e01;
  --secondary-color: #faa935;
  --heading-color: #0b2727;
  --text-color: #6e7074;
  --font-name: "Montserrat", sans-serif;
  --subtitle-font-name: "Island Moments", cursive;
}

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

body {
  font-family: var(--font-name);
}

section {
  padding: 50px 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

a {
  text-decoration: none;
  color: unset;
}
ul {
  list-style: none;
}

.primary__btn {
  background: var(--secondary-color) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.4rem 1.5rem !important;
}

.primary__btn a {
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
}
.primary__btn a:hover {
  color: inherit;
}
.secondary__btn {
  background: transparent !important;
  color: #0b2727 !important;
  border: none !important;
  font-weight: 500 !important;
}

.secondary__btn a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.secondary__btn a:hover {
  color: inherit;
}

.section__subtitle {
  background: var(--secondary-color);
  font-family: var(--subtitle-font-name);
  width: max-content;
  padding: 0px 0.5rem;
  padding-right: 1rem;

  border-radius: 50px;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--heading-color);
}*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*background-color: #ffffff; */
  color: #333;
  
    overflow-x: hidden ;

}

html, body {
    max-width: 100vw;
    overflow-x: hidden; 
    position: relative;
    width: 100%;
}


#solution {
  scroll-margin-top: 100px; 
}
html {
  scroll-behavior: smooth !important;
}


a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}


.App {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


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


/* --- index.css --- */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* --- components\Header\Header.css --- */

.header-container {
  position: fixed;
  top: 5px;
  left:0px;
  width: 100%;
 
  z-index: 1000;
  
}

.navbar-container .floating-navbar {
  width: 100%;
  max-width: 100%;
  background-color:#ffffff;
  height: clamp(80px, 6vw + 20px, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 60px);
  border-radius: 15px;
  
}


.navbar-container .logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-container .logo {
  height: clamp(70px, 7vw + 15px, 130px); 
  width: auto;
  object-fit: contain;
  /*transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
}


.navbar-container .logo:hover {
 transform: scale(1.05) translateZ(0);
}


.navbar-container .nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-size: clamp(19px, 0.8vw + 0.5rem, 2rem);
  font-weight: 600;
  transition: color 0.3s;
  
}



.navbar-container .nav-menu .nav-link,
.navbar-container .dropdown-wrapper{
  
  background-color: transparent;
  border-bottom: 3px solid transparent;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  
  padding: 0 32px; 

  
  margin: 0 -27px; 

  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.navbar-container .nav-menu .nav-link:hover,
.navbar-container .dropdown-wrapper:hover{
  background-color: #f4f4f4; 
  border-bottom: 3px solid orangered; 
  color: #000;
}

.navbar-container .nav-menu{
  
  height: 100%;
}

.navbar-container .search-section {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 10px;
}

.navbar-container .search-trigger {
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.navbar-container .search-trigger:hover {
  color: blue; 
  transform: scale(1.2);
}


.navbar-container .inline-search {
  position: absolute;
  top: 105px; 
  right: 50px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1001;
}

.navbar-container .inline-search input {
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  padding: 8px 12px;
  width: 250px;
  font-size: 14px;
}



/*.dropdown-wrapper {
  position: relative;
  display: inline-block;
  padding-bottom: 0; 
}*/

/* Products Button
.dropbtn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 10px 20px;
}*/

.navbar-container .dropdown-wrapper {
 
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-container .dropbtn{
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: clamp(19px, 0.8vw + 0.5rem, 2rem);
  font-weight: 700;
  transition: color 0.3s;
}



.navbar-container .mega-menu-content {
  display: block; 
  position: absolute;
  top: 90%; 
  left:50%;
  
  transform: translateX(-50%);
  
  max-height: 80vh; 
  overflow-y: auto;
 
  margin-top: 15px;
  width: 90vw;
  max-width: 1250px;
  background-color: #ffffff;
  padding: 20px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-radius: 25px 25px 25px 25px;
  
  z-index: 9999;
  pointer-events: auto !important;
}

@keyframes mymove {
  50% {border-color:gold;}
}


.navbar-container .mega-menu-content::before {
  content: "";
  position: absolute;
  top: -20px; 
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}





.navbar-container .mega-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  width: 100%;
}


.navbar-container .mega-col {
  padding: 0 15px;
  border-left: 1px solid #ddd;
  min-height: 430px; 
}

.navbar-container .mega-col:first-child {
  border-left: none !important;
}


.navbar-container .mega-col h3 {
  font-size:clamp(13px, 0.9vw, 14px);
  font-weight: 800;
  color: #1a2a40;
  
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  text-transform: uppercase;
}


.navbar-container .mega-col h3 .header-link {
  text-decoration: none;
  color: inherit; 
  display: block; 
  cursor: pointer;
  
  font-size: inherit;
  font-weight: inherit;

  padding: 5px 5px; 
  margin: 0 -5px;
 
  border-radius: 4px; 
  
  transition: all 0.3s ease;
}

.navbar-container .mega-col h3 .header-link:hover {
 
  background-color: #f4f4f4; 
 
  /*border-left: 2px solid red;*/
  border-right: 3px solid red;
  color: #007bff; 
}



.navbar-container .mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-container .mega-col ul li a {
  font-size: clamp(13px, 0.9vw, 14px);
  padding: 10px 0;
  display: block;
  color: #555;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.2s;
  
  position: relative;
  z-index: 10000; 
}

.navbar-container .mega-col ul li a:hover {
  background-color: #f0f7ff; 
  color: #007bff;            
  
  
  border-left: 4px solid #007bff; 
  border-bottom: #ddd;
  padding-left: 2px;        
}


.mobile-icon {
  display: none; 
}

.category-header .mobile-arrow {
  display: none;
}

@media (max-width: 1024px) {
  
  
  .header-container {
    background: #ffffff;
    z-index: 1200; 
  }

  
  .navbar-container .nav-menu {
    display: flex !important;
    position: fixed;
    top: clamp(80px, 6vw + 20px, 120px); 
    left: 0; 
    width: 100%; 
    height:auto; 
    background: #ffffff;
    z-index: 1050;
    
    flex-direction: column;
    align-items: center;
    padding: 5px;
    gap: 0;
    transform: translateX(-100%); 
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }

 
  .navbar-container .nav-menu.curtain-active {
    transform: translateX(0);
  }

  
  .mobile-icon {
    display: block;
    z-index: 1300; 
    font-size: 28px;
    cursor: pointer;
  }

  
  .navbar-container .nav-menu .nav-link, 
  .navbar-container .dropbtn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important; 
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 18px;
    text-align: center;
    color: #333;
    font-weight: 700;
  }

  
  .navbar-container .mega-menu-content {
    display: none;
    position: static;
    width: 100%;
    padding: 15px;
    background: #fafafa;
    box-shadow: none;
  }

  .navbar-container .mega-menu-content.mobile-show {
    display: block;
  }

  .navbar-container .mega-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .navbar-container .dropdown-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #eee;
  }

  
  .navbar-container .mega-menu-content {
    display: none; 
    position: static !important; 
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: none !important;
    padding: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  
  .navbar-container .mega-menu-content.mobile-show {
    display: block !important;
  }

 
  .navbar-container .mega-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .navbar-container .mega-col {
    width: 100% !important;
    padding: 10px 0 !important;
    border: none !important;
    text-align: center; 
  }

  
  .navbar-container .mega-col h3 {
    font-size: 16px !important;
    margin: 15px 0 !important;
    color: #1a2a40;
    font-weight: 700;
    border-bottom: 2px solid orangered; 
    display: inline-block; 
    padding-bottom: 5px;
  }

  
  .navbar-container .mega-col ul {
    display: flex !important;
    flex-direction: column;
    align-items: center; 
    padding: 0 !important;
    margin: 10px 0 !important;
    list-style: none;
  }

  .navbar-container .mega-col ul li {
    width: 100%;
    padding: 8px 0;
  }

  .navbar-container .mega-col ul li a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

 .search-section {
  display: none !important;
 }

 .inline-search {
  display: none !important;
 }

}
  
  


/* 2nd method*/
/*.header-container {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 0px 10px;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.floating-navbar {
  width: 100%;
  max-width: 1300px;
  background-color:#ffffff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-radius: 15px;
  
}


.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  height: 110px; 
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.logo:hover {
  transform: scale(1.05);
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.3s;
  
  
}

.nav-menu a:hover {
  color: blue;
 
 
}


.search-section {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 10px;
}

.search-trigger {
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.search-trigger:hover {
  color: blue; 
  
  transform: scale(1.2);
}


.inline-search {
  position: absolute;
  top: 105px; 
  right: 50px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1001;
}

.inline-search input {
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  padding: 8px 12px;
  width: 250px;
  font-size: 14px;
}



.dropdown-wrapper {
  position: relative;
  display: inline-block;
  padding-bottom: 0; 
}

/* Products Button
.dropbtn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 10px 20px;
}

.dropbtn {
    font-size: 17px; 
    font-family: inherit; 
    font-weight: 700; 
    color: #333; 
    
    
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    
    
    transition: all 0.3s ease;
}

.dropbtn:hover {
  color: blue;
}


.mega-col {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 260px;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 999;
}


.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col li a {
  display: block;
  padding: 13px 20px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  
  
  border-left: 4px solid transparent; 
}


.mega-col li a:hover {
  background-color: #f0f7ff; 
  color: #007bff;            
  
  
  border-left: 4px solid #007bff; 
  border-bottom: #ddd;
  padding-left: 25px;        
}*/

/* --- components\Footer\Footer.css --- */

/*.footer-main {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 60px 20px 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.footer-contact-bar-bottom {
  display: flex;
  justify-content: center; 
  align-items: center;
  background-color: #0a0a0a; 
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #222;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  padding: 0 30px;
}

.contact-item:hover .contact-icon, 
.contact-item:hover .contact-icon-large {
  transform: scale(1.1);
}

.contact-icon { 
  font-size: 26px; 
  color: #007bff; 
}

.contact-icon-large { 
  font-size: 40px !important; 
  color: #007bff; 
  flex-shrink: 0;
}


.contact-details strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.contact-details p, 
.contact-details a {
  align-items: flex-start;
  font-size: 14px;
  margin: 0;
  display: block;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
  font-size: 14px;
  line-height: 1.6;        
  color: #cccccc;
  text-align: justify;     
  text-justify: inter-word; 
  max-width: 400px;        
  margin-bottom: 25px;
  word-spacing: -0.5px;    
}



.contact-divider {
  width: 1px;
  height: 55px;
  background-color: #333;
  margin: 0 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 20px; 
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
 
}

.footer-col:not(.brand-info) {
  display: flex;
  flex-direction: column;

  padding-left: 60px; 
  text-align: left;   
}


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


@media (max-width: 992px) {
  .footer-col:not(.brand-info) {
    padding-left: 0;
    text-align: left;
  }
}


.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col {
  padding: 0 20px; 
  
}

.footer-col:not(:first-child) {
  border-left: 1px solid #222;
}

.brand-info {
  padding-right: 50px;
}


.brand-info p {
  font-size: 14px;
  line-height: 1.6;        
  color: #cccccc;
  text-align: justify;     
  text-justify: inter-word; 
  max-width: 400px;        
  margin-bottom: 25px;
  word-spacing: -0.5px;    
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


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

.footer-col ul li {
  margin-bottom: 10px;
  color: #aaaaaa;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  color: skyblue;
  padding-left: 5px; 
}


.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: white;
  border: 1px solid #444;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 14px;
}

.social-links a:hover {
  background-color: white; 
  color: black;
}


.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: #666;
  position: relative;
}

.scroll-top {
  position: absolute;
  right: 0;
  background: none;
  border: 1px solid #444;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


@media (max-width: 992px) {
  .footer-main {
    padding: 40px 20px;
  }
  .footer-contact-bar-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-divider {
    display: none;
  }
  .contact-item {
    justify-content: flex-start;
    padding: 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col {
    padding: 0;
    border-left: none !important;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
}*/



.footer-main {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 60px 20px 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.footer-contact-bar-bottom {
  display: flex;
  justify-content: center; 
  align-items: center;
  background-color: #0a0a0a; 
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #222;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  padding: 0 30px;
}

.contact-item:hover .contact-icon, 
.contact-item:hover .contact-icon-large {
  transform: scale(1.1);
}

.contact-icon { 
  font-size: 26px; 
  color: #007bff; 
}

.contact-icon-large { 
  font-size: 40px !important; 
  color: #007bff; 
  flex-shrink: 0;
}


.contact-details strong {
  display: block;
  font-size:clamp(12px, 1vw, 14px);
  text-transform: uppercase;
  color: #666;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.contact-details p, 
.contact-details a {
  align-items: flex-start;
 
  margin: 0;
  display: block;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
  font-size:clamp(14px, 1vw, 16px);
  line-height: 1.6;        
  
  text-align: justify;     
  text-justify: inter-word; 
  max-width: 400px;        
  margin-bottom: 25px;
  word-spacing: -0.5px;    
}



.contact-divider {
  width: 1px;
  height: 55px;
  background-color: #333;
  margin: 0 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 20px; 
  
  padding-bottom: 30px;
 
}

.footer-col:not(.brand-info) {
  display: flex;
  flex-direction: column;

  padding-left: 60px; 
  text-align: left;   
}


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


@media (max-width: 992px) {
  .footer-col:not(.brand-info) {
    padding-left: 0;
    text-align: left;
  }
}


.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col {
  padding: 0 20px; 
  
}

.footer-col:not(:first-child) {
  border-left: 1px solid #222;
}

.brand-info {
  padding-right: 50px;
}


.brand-info p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;        
  color: #cccccc;
  text-align: justify;     
  text-justify: inter-word; 
  max-width: 100%;        
  margin-bottom: 25px;
  word-spacing: -0.5px;    
}

.footer-col h3 {
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


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

.footer-col ul li {
  margin-bottom: 10px;
  color: #cccccc;
  font-size: clamp(16px, 1.1vw, 18px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  color: skyblue;
  padding-left: 5px; 
}


.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: white;
  border: 1px solid #444;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 14px;
}

.social-links a:hover {
  background-color: white; 
  color: black;
}


.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: #666;
  position: relative;
}

.scroll-top {
  position: absolute;
  right: 0;
  background: none;
  border: 1px solid #444;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


@media (max-width: 1024px) {
  .footer-main {
    padding: 40px 20px;
    text-align: center; 
  }

  
  .footer-contact-bar-bottom {
    flex-direction: column;
    align-items: center; 
    gap: 25px;
    padding: 30px 15px;
  }

  .contact-item {
    flex-direction: column; 
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .contact-divider {
    display: block;
    width: 50%;
    height: 1px;
    margin: 10px auto;
    background-color: #222;
  }

  
  .footer-top {
    grid-template-columns: 1fr; 
    gap: 40px;
  }

  .footer-col {
    padding: 0;
    border-left: none !important;
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; 
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .brand-info p, 
  .contact-details p {
    text-align: center; 
    text-justify: none;
    max-width: 100%;
    font-size: 14px;
    margin: 10px auto;
  }

  .social-links {
    justify-content: center; 
    margin-top: 15px;
  }


  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .scroll-top {
    position: static; 
    margin-top: 10px;
  }
}


@media (max-width: 480px) {
  .footer-logo {
    font-size: 18px;
  }
  .contact-icon-large {
    font-size: 30px !important;
  }
}


/* --- components\Slide\Slide.css --- */

/*.slide-wrapper {
  margin: 0;
  padding-top: 110px; 
}

.home-image .aero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.home-image .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.8s ease-in-out, transform 10s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 6%;
  padding-bottom: 80px;
}

.home-image .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  pointer-events: none;
}

.home-image .slide.active .glass-card-wrapper {
  pointer-events: auto;
}


.home-image .top-title-wrapper {
  position: absolute;
  top: 5%;
  right: 6%;
  overflow: hidden;
  z-index: 20;
}

.home-image .floating-title {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
}

@keyframes titleRightIn {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}

.home-image .slide.active .floating-title {
  animation: titleRightIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}

.home-image .glass-card-wrapper {
  position: relative;
  z-index: 100;
  opacity: 0;
  transform: translateX(-100px);
}

@keyframes cardLeftIn {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}

.home-image .slide.active .glass-card-wrapper {
  animation: cardLeftIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
}

.home-image .glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 35px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 420px;
  color: white;
}

.home-image .glass-card h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.home-image .glass-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.home-image .view-more-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 600;
}

.home-image .view-more-btn:hover {
  background-color: white;
  color: black;
}

.home-image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
}

.home-image .arrow:hover { background: #ffcc00; color: #000; }
.home-image .arrow.left { left: 20px; }
.home-image .arrow.right { right: 20px; }

.home-image .dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.home-image .dot {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.home-image .active-dot { background: #ffcc00 !important; width: 50px; }



@media (max-width: 768px) {

  .slide-wrapper { 
    padding-top:110px !important; 
    margin: 0;
  }

  
  .home-image .aero {
    height: 30vh !important; 
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
  }

  
  .home-image .slide {
    position: absolute !important; 
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important; 
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    
  }

  .home-image .slide.active {
    opacity: 1 !important;
    z-index: 10 !important;
  }

  
  .home-image .glass-card-wrapper,
  .home-image .glass-card {
    display: none !important;
  }

  
  .home-image .top-title-wrapper {
    position: absolute;
    top: 10% !important;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    text-align: center;
    z-index: 100;
  }

  .home-image .floating-title {
    font-size: 1.8rem !important;
    
  }

  
  .home-image .arrow {
    display: none;
  }
}*/




.slide-wrapper {
  margin: 0;
  padding-top: clamp(60px,8vw,125px); 
}

.home-image .aero {
  height:100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  /*background-color: #000;*/
}

.home-image .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.8s ease-in-out, transform 10s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 6%;
  padding-bottom: 80px;
}

.home-image .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  pointer-events: none;
}

.home-image .slide.active .glass-card-wrapper {
  pointer-events: auto;
}


.home-image .top-title-wrapper {
  position: absolute;
  top: 5%;
  right: 6%;
  overflow: hidden;
  z-index: 20;
}

.home-image .floating-title {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  /*-webkit-text-stroke: 2px #ffffff;*/
  /*background: linear-gradient(to bottom, #0A2C69 50%, #E31E2B 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
 
  opacity: 0;
}

@keyframes titleRightIn {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}

.home-image .slide.active .floating-title {
  animation: titleRightIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}




.home-image .glass-card-wrapper {
  margin-bottom: 90px;
  position: relative;
  z-index: 100;
  opacity: 0;
  transform: translateX(-100px);
}

@keyframes cardLeftIn {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}

.home-image .slide.active .glass-card-wrapper {
  animation: cardLeftIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
}

.home-image .glass-card {
  background: rgba(255, 255, 255, 0.08);
  /*backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);*/
  padding: 35px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 420px;
  color: white;
}

.home-image .glass-card h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.home-image .glass-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.home-image .view-more-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 600;
}

.home-image .view-more-btn:hover {
  background-color: white;
  color: black;
}

.home-image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
}

.home-image .arrow:hover { background: #ffcc00; color: #000; }
.home-image .arrow.left { left: 20px; }
.home-image .arrow.right { right: 20px; }

.home-image .dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.home-image .dot {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.home-image .active-dot { background: #ffcc00 !important; width: 50px; }



@media (min-width: 1025px) {
  /*.home-image .aero {
    height: 30vh ; 
  }*/
  
  .home-image .glass-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: block !important;
  }

  .home-image .glass-card p,
  .home-image .view-more-btn {
    display: flex !important; 
  }
}

@media (max-width: 768px) {

  .slide-wrapper { 
    padding-top:80px !important; 
    margin: 0;
  }

  
  .home-image .aero {
    height: 30vh !important; 
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
  }

  
  .home-image .slide {
    position: absolute !important; 
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important; 
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    
  }

  .home-image .slide.active {
    opacity: 1 !important;
    z-index: 10 !important;
  }

  
  .home-image .glass-card-wrapper {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    position: absolute;
    top: 65% !important; 
    bottom: auto !important; 
    width: 100%;
    justify-content: center;
    z-index: 100;
    
  }

  
  .home-image .glass-card {
    display: block !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto;
    text-align: center;
    box-shadow: none !important;

   
  }

  .home-image .glass-card h1 {
    display: block !important;
    font-size: 1.3rem !important; 
    margin: 0;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
    opacity: 0;
    transform: translateX(-100px);
    
  }

  .home-image .slide.active .glass-card h1 {
    animation: slideInFromLeft 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards !important;
    animation-delay: 0.5s;
  }

  
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  

  .home-image .glass-card p,
  .home-image .view-more-btn {
    display: none !important;
  }

  
  .home-image .top-title-wrapper {
    position: absolute;
    top: 10% !important;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    text-align: center;
    z-index: 100;
  }

  .home-image .floating-title {
    font-size: 1.8rem !important;
    
  }

  
  .home-image .arrow {
    display: none;
  }
}



/* --- components\Section\Section.css --- */

.section-sectors {
  padding: 40px 0;
  width: 100%;
  overflow: hidden;
 
  scroll-margin-top: 100px; 
}

.section-sectors .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  
}
@keyframes cardLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-sectors .title {
  
  font-size: 2rem;
  font-weight: 800;
  color: rgb(240, 38, 38);
  line-height: 1.1;
  text-align: right;
  
  animation: cardLeftIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;

}

.section-sectors .vertical-divider {
  width: 4px;
  height: 80px;
  background-color: rgb(237, 237, 52);
}


@keyframes titleRightIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-sectors .description {
  font-weight: 600;
  max-width: 500px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  animation: titleRightIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}


.section-sectors .slider-viewport {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  
}

.section-sectors .services-track {
  display: flex;
  width: 100%; 
  will-change: transform;
}

.section-sectors .service-card-wrapper {
  display: flex;
  align-items: center;
  min-width: 33.333%; 
  flex-shrink: 0;
  box-sizing: border-box;
}

.section-sectors .service-card {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.section-sectors .squircle-img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 45px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.section-sectors .squircle-img:hover {
  transform: translateY(-10px) scale(1.03);
}


.section-sectors .vertical-line {
  width: 1px;
  height: 250px;
  background: linear-gradient(transparent, #eee, transparent);
}


.section-sectors .navigation-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.section-sectors .nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.section-sectors .nav-dot.active {
  background: red;
  transform: scale(1.5);
  width: 10px; 
  border-radius: 10px;
}

/* MOBILE RESPONSIVE  */
@media (max-width: 768px) {
  .section-sectors .flex-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .section-sectors .title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
    animation: none; 
    opacity: 1;
    transform: none;
  }

  .section-sectors .vertical-divider {
    display: none;
  }

  .section-sectors .description {
     text-align: center;
    font-size: 0.95rem;
    padding: 0 15px;
    max-width: 100%;
  }


  .section-sectors .service-card-wrapper {
    min-width: 100%; 
    padding: 0 10px;
  }

  .section-sectors .vertical-line {
    display: none; 
  }

  .section-sectors .squircle-img {
    max-width: 200px; 
    border-radius: 30px;
  }

  .section-sectors .card-title {
    font-size: 1.3rem;
    margin-top: 15px;
  }

  .section-sectors .navigation-dots {
    margin-top: 20px;
    flex-wrap: wrap; 
  }
}
/* --- components\Section1\Section1.css --- */
/* 
.title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e31e24;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/*  
.customer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 40px;
  max-width: 1300px;
  margin: 0 auto;
}


.customer-logos .logo {
  height: 100px; 
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  cursor: pointer;
}


.collins-logo, 
.boeing-logo, 
.honeywell-logo, 
.airbus-logo {
  height: 140px !important; 
  width: auto;
}


.lt-logo {
  height: 120px !important; 
  width: auto;
}

/* 
.customer-logos .logo:hover {
  transform: scale(1.1);
}

/*
@media (max-width: 768px) {
  .customer-logos .logo {
    height: 60px;
  }
  .collins-logo, .boeing-logo, .honeywell-logo, .airbus-logo {
    height: 150px !important;
  }
  .lt-logo {
    height: 40px !important;
  }
  .title {
    font-size: 24px;
  }
}
/* 
.title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e31e24;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/*
.customer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  flex-wrap: wrap;
  padding: 20px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.customer-logos .logo {
  width: 120px;   
  height: 120px; 
  object-fit: contain; 
  transition: transform 0.4s ease;
  cursor: pointer;
  padding: 10px; 
}

/* 
.customer-logos .logo:hover {
  transform: scale(1.15); 
}

/* 
@media (max-width: 768px) {
  .title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .customer-logos .logo {
    width: 80px;
    height: 80px;
    gap: 15px;
  }
}*/



.customer-image {
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
 
 
}

.customer-image .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  
}
@keyframes cardLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.customer-image .title {
  
  font-size: 2rem;
  font-weight: 800;
  color: rgb(240, 38, 38);
  line-height: 1.1;
  text-align: right;
 
  animation: cardLeftIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;

}

.customer-image .vertical-divider {
  width: 4px;
  height: 80px;
  background-color: rgb(237, 237, 52);
}


@keyframes titleRightIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.customer-image .description {
  font-weight:600;
  max-width: 500px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  animation: titleRightIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}


.customer-image .slider-wrapper {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  padding: 10px 10px;
  background: white; 
  position: relative;
}


.customer-image .slider-track {
  display: flex;
 
  width: calc(250px * 54); 
  animation: scroll 100s linear infinite; 
}


.customer-image .slider-track:hover {
  animation-play-state: paused;
}


.customer-image .logo-slide {
  width: 240px; 
  display: flex;
  justify-content: center;
  align-items: center;
}


.customer-image .logo-slide img {
  width: 180px;      
  height: 100px;     
  object-fit: contain; 
  padding: 3px;
  transition: transform 0.3s ease;
}

.customer-image .logo-slide img:hover {
  transform: scale(1.15);
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    
    transform: translateX(calc(-250px * 27)); 
  }
}



@media (max-width: 768px) {
  
  .customer-image .flex-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .customer-image .title {
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
  }

  .customer-image .vertical-divider {
    display: none;
  }

  .customer-image .description {
    text-align: center;
    font-size: 0.95rem;
    padding: 0 20px;
    max-width: 100%;
  }

  .customer-image .service-card-wrapper {
    min-width: 100%; 
  }

  .customer-image .vertical-line {
    display: none; 
  }


  .customer-image .logo-slide {
    width: 140px; 
  }

  .customer-image .logo-slide img {
    width: 100px; 
    height: 60px;
  }
  .customer-image .slider-track {
    display: flex;
    width: max-content; 
    animation: scroll-mobile 30s linear infinite;
  }

  @keyframes scroll-mobile {
    0% { transform: translateX(0); }
    100% { 
      
       transform: translateX(-50%); 
    }
  }
}


@media (max-width: 480px) {
  .customer-image {
    padding: 25px 0;
  }
  
  .customer-image .title {
    font-size: 1.3rem;
  }
}
/* --- components\Section2\Section2.css --- */

/*.section2-container {
    display: grid;
    grid-template-columns: 1.5fr 1.3fr 1.5fr; 
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;

    max-width: 1200px;
    margin: 0 auto;
}


.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #000;
}

.card:hover {
    transform: scale(1.02);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; 
    display: block;
}


.avionics {
    grid-row: span 2; 
}


.rugged, .ait {
    grid-column: 2;
}

.sensor {
    grid-row: span 2; 
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.card-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-content p {
    font-size: 0.9rem;
    margin: 5px 0;
}*/







/*crt one*/
/*.section2-container {
  
  display: flex;
 
  flex-wrap: wrap; 
  gap:1px;
  max-width: 1200px;
  margin: 0 auto;
  
  background-color:#F8FAFC;/*#f4f4f4*//*#fff5f5
  
}*/

  
/*.flex-wrapper {
  display: flex;
  align-items: center; 
  justify-content: center; 
  gap: 25px; 
  width: 100%;
  
  
  margin-bottom: 40px;

}

.section2-container .title {
 
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color:rgb(240, 38, 38);
  text-align: right; 
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
 }

 .vertical-divider {
  width: 3px;
  height: 80px; 
  background-color: rgb(237, 237, 52);
  flex-shrink: 0;
  align-self: center;

}
.section2-container .description{
 max-width: 650px; 
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  color: #666; 
  margin: 0;
  line-height: 1.5;
  text-align: left;
  
}



.middle-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}
.cards-wrapper {
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px; 
  width: 100%;
  box-shadow: #666;
  
}
.card {
  position: relative;
  flex: 1;
  background: #000;
  overflow: hidden;
  border-radius: 15px;
 
}


.card.tall {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}


.card.small {
  clip-path: none; 
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.card-info {
  gap: 50px;
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color:white;
  font-size: 1.1rem;
  pointer-events: none; 
}

.know-more {
  color: red;
  
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  cursor: pointer; 
  pointer-events: auto; 
  transition: color 0.3s;
}

.know-more:hover {
  color: orangered;
}*/


/*.section2-container {
  
  display: flex;
 
  flex-wrap: wrap; 
  gap:1px;
  max-width: 1200px;
  margin: 0 auto;
  
  background-color:#F8FAFC;/*#f4f4f4*//*#fff5f5
  
}*/

.product-image {
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
 
  
}

.product-image .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  
}
@keyframes cardLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.product-image .title {
 
  font-size: 2rem;
  font-weight: 800;
  color: rgb(240, 38, 38);
  line-height: 1.1;
  text-align: right;
  
  animation: cardLeftIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
  

}

.product-image .vertical-divider {
  width: 4px;
  height: 80px;
  background-color: rgb(237, 237, 52);
}


@keyframes titleRightIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-image .description {
  font-weight: 600;
  max-width: 500px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  animation: titleRightIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}


.product-image .product-page-wrapper {
  
   display: flex;
 
  flex-wrap: wrap; 
  gap:1px;
  max-width: 1200px;
  margin: 0 auto;
  
  background-color:#F8FAFC;
}

.product-image .main-content-grid {
  
  display: flex;
  height: 600px;
}


.product-image .visual-panel {
  
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #fbfbfb;*/
}


.product-image .main-product-img {
  width: 90%;
  max-height: 95%;
  object-fit: contain;
  position: relative;
  
  
  opacity: 0;
  will-change: transform, opacity;

 
  animation: slowSharpSlide 1.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@keyframes slowSharpSlide {
  0% {
    opacity: 0;
   
    transform: translateX(-100px) scale(0.95); 
  }
  60% {
    opacity: 1; 
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}



.product-image .main-product-img:hover {
  transform: translateY(-8px);
  transition: transform 0.6s ease;
}


.product-image .details-panel {
  flex: 1;
  display: flex;
  padding: 40px;
 
  align-items: center;
  /*padding-left: 18vh;*/
}


.product-image .custom-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 100px;
  gap: 20px;
}

.product-image .progress-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.product-image .vertical-progress-bar {
  display: flex;
  flex-direction: column;
 
  gap: 10px;
}

.product-image .bar-segment {
  width: 4px;
  height: 80px;
  background: #eee;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
   
  overflow: visible; 
}

.product-image .bar-fill {
  
  width: 100%;
  background: #a51231;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  
  animation: fillSlowly 6s linear forwards;
}

.product-image .flight-icon {
  color: black;
  fill: rgb(82, 162, 212); 
   
  transform: rotate(135deg); 
  filter: drop-shadow(0 0 5px rgba(165, 18, 49, 0.5));
   
  transition: transform 0.3s ease;
}

.product-image .plane-container {
  position: absolute;
  
  bottom: -15px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}



@keyframes fillSlowly {
  from { height: 0%; }
  to { height: 100%; }
}



.product-image .nav-arrow {
  width: 12px;
  height: 12px;
  border-top: 2.5px solid #a51231;
  border-right: 2.5px solid #a51231;
  cursor: pointer;
}
.product-image .nav-arrow.up { transform: rotate(-45deg); }
.product-image .nav-arrow.down { transform: rotate(135deg); }


.product-image .text-scroll-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.product-image .text-block {
  opacity: 0.3;
  transition: all 0.5s ease;
  cursor: pointer;
}


.product-image .text-block.active-text { opacity: 1; }


.product-image .item-line {
  width: 50px;
  height: 1px;
  background: #eee;
  margin-bottom: 15px;
}


.product-image .active-text .item-line {
  background: #a51231;
  width: 80px;
  transition: width 0.8s ease;
}


.product-image .category-tag {
  color: #a51231;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}


.product-image .title-tag {
  text-transform: uppercase;
  font-size: 20px;
  margin: 5px 0;
  color: #222;
  line-height: 2.5;
}


.product-image .description-tag {
  font-size: clamp(14px,1vw,16px);
  color: #666;
  line-height: 1.3;
  max-width: 380px;
  
}


.product-image.bar-fill {
  width: 100%;
  background: #a51231;
  animation: fillSlowly 6s linear forwards; 
}

@keyframes fillSlowly {
  from { height: 0%; }
  to { height: 100%; }
}


.product-image .main-content-grid {
  display: flex;
  height: 600px; 
}

/* MOBILE RESPONSIVE */

@media (max-width: 1024px) {
  .product-image .main-content-grid {
    flex-direction: column !important;
    height: auto !important;
  }

  .product-image .visual-panel {
    width: 100% !important;
    height: 300px !important;
    padding: 20px 0 !important;
  }

  .product-image .main-product-img {
    width: auto !important;
    max-width: 80% !important;
    max-height: 250px !important;
    margin: 0 auto !important;
  }

  
  .product-image .details-panel {
    padding: 20px !important;
    padding-left: 20px !important; 
    flex-direction: row !important; 
    align-items: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

 
  .product-image .custom-navigation {
    margin-right: 20px !important; 
    flex-shrink: 0 !important;
  }

  .product-image .bar-segment {
    height: 45px !important; 
    width: 3px !important;
  }

 
  .product-image .text-scroll-area {
    text-align: left !important;
    flex: 1 !important;
  }

  .product-image .title-tag {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
  }

  .product-image .description-tag {
    font-size: 13px !important;
    max-width: 100% !important;
  }

  .product-image .item-line {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .product-image .flex-wrapper {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    padding: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-image .title{
     text-align: center;
    font-size: 2rem;
    line-height: 1.2;
    animation: none; 
    opacity: 1;
    transform: none;
  }

 .product-image .title-tag {
    text-align: center !important;
    font-size: 18px;
    margin-bottom: 0 !important;
    animation: none !important; 
  }

  .product-image .text-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
    text-align: center !important;
    width: 100% !important;
  }

  
  .product-image .item-line {
    margin: 0 auto 15px auto !important; 
    width: 50px !important;
    display: block !important;
  }

  
  .product-image .active-text .item-line {
    width: 80px !important;
    margin: 0 auto 15px auto !important;
    background: #a51231 !important;
  }

  
  .product-image .title-tag,
  .product-image .description-tag {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }


  .product-image .vertical-divider {
    display: none; 
  }

  .product-image .description-tag {
   
    text-align: center !important;
    font-size: 13px;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
  }

  .product-image .custom-navigation {
    display: flex;
    flex-direction: column;
    margin-right: 10px; 
    padding-left: 30px;
    gap: 15px;
    z-index: 10;
  }

   /*.product-image .custom-navigation {
    order: 2; 
    margin-right: 0; 
    margin-left: 20px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
  
  }*/
  

  
 
  .product-image .visual-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }
  
  .product-image .main-product-img {
    margin-left: 0; 
    max-height: 300px;
  }
  
  
  @keyframes slowSharpSlide {
    0% {
      opacity: 0;
      transform: translateX(-40px); 
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  

}

@media (max-width: 480px) {
  .product-image .visual-panel {
    height: 250px; 
  }
  
  .product-image .main-product-img {
    max-height: 220px;
  }

  .product-image .details-panel {
    padding: 15px;
  }
  
  .product-image .item-line {
    width: 30px; 
  }
}
/* --- components\Details\details.css --- */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%); 
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%); 
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



.details-content .slide-left {
  animation: slideInLeft 1s ease-out forwards;
}

.details-content .slide-right {
  animation: slideInRight 1s ease-out forwards;
}

.details-content .main-wrapper {
  display: flex;
  flex-direction: column;
  height: 50;
}

.details-content .details-container {
  
  display: flex;
 
  position: relative; 
  color: white;
}

.details-content .section {
  flex: 1;
  padding: 60px 40px;
}


.details-content .vertical-divider {
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3); 
  align-self: stretch; 
}

.details-content .industries-section { background-color: #1a1a1a; }
.details-content .why-choose-section { background-color: #f36f21; }





.details-content ul { list-style: none; padding: 0; }
.details-content li { margin-bottom: 10px; padding-left: 15px; position: relative; }
.details-content li::before { content: "•"; position: absolute; left: 0; }

.details-content .section {
  flex: 1;
  padding: 60px 40px;
  /*padding-left: 18vh;*/
}



.details-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.details-content p {
  font-size: clamp(16px,1vw,18px);
  margin-bottom: 20px;
  line-height: 1.5;
}

.details-content ul {
  list-style-type: none; 
  padding: 0;
}

.details-content li {
  font-size: clamp(16px,1vw,18px);
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}


.details-content li::before {
  content: "•";
  position: absolute;
  left: 10px;
  font-weight: bold;
}


.details-content .details-container {
  display: flex;
  width: 100%;
  min-height: 400px;
}

/*  MOBILE RESPONSIVE */


@media (max-width: 768px) {
  .details-content .details-container {
    flex-direction: column; 
  }

  .details-content .vertical-divider {
    width: 100%;
    height: 2px; 
    background-color: rgba(255, 255, 255, 0.2);
  }

  .details-content .section {
    padding: 40px 25px; 
    text-align: center; 
  }

  .details-content h2 {
    font-size: 24px; 
  }

  .details-content ul {
    display: inline-block; 
    text-align: left; 
  }

  
  @keyframes slideInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .details-content .slide-left, 
  .details-content .slide-right {
    animation: slideInUp 0.8s ease-out forwards;
  }
}


@media (max-width: 480px) {
  .details-content h2 {
    font-size: 20px;
  }
  .details-content .section {
    padding: 30px 15px;
  }
}
/* --- components\Salesdetails\Sales.css --- */
.sales-section-full {
  width: 100%;
  background-color: #fff;
  padding: 30px 100px;
 
  display: flex;
  justify-content: flex-start;
  
}

.sales-container {
  width: 100%; 
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.sales-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 2;
}

.icon-circle {
  background-color: #f36f21;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.text-content h2 {
  color: #f36f21;
  font-size: 22px;
  margin: 0;
  font-weight: bold;
}

.text-content p {
  line-height: 1.6;
  color: #666;
  font-size: clamp(16px,1vw,16.5px);
  margin: 5px 0 0 0;
}


.vertical-dotted-line {
  border-left: 2px dotted #333;
  height: 60px;
  margin: 30px 40px;
 
}

.sales-right {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sales-right .label {
  color: #f36f21;
  font-size: 16px;
  font-weight: 500;
}

.sales-right .number {
  color: #000;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-top: 5px;
}



.sales-right .number {
  text-decoration: none; 
  color: #000;
  font-size: 28px;
  font-weight: 800;
  transition: color 0.3s ease;
}

.sales-right .number:hover {
  color: grey;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .sales-section-full {
    padding: 40px 20px;
  }

  .sales-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .sales-left {
    flex-direction: row; 
    gap: 15px;
  }

  .text-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .text-content p {
    font-size: 14px;
    padding: 0 10px;
  }

  
  .vertical-dotted-line {
    display: block; 
    border-left: none;
    border-top: 2px dotted #ccc;
    height: 1px;
    width: 60%; 
    margin: 10px auto;
  }

  .sales-right {
    align-items: center; 
  }

  .sales-right .number {
    font-size: 24px; 
    margin-top: 10px;
    display: block;
    background: #f36f21;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
  }
  
  .sales-right .number:hover {
    color: white;
    transform: translateY(-2px);
  }
  
  .sales-right .label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .icon-circle {
    width: 50px;
    height: 50px;
  }
}
/* --- components\Product\Avionics\Avionics.css --- */
/*.avionics-img {
    width: 1200px;      
    height: 400px;     
    object-fit: cover; 
    display: block;
    margin: 30px auto; 
}
.avionics-container {
  padding: 30px;
 
}*/

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.avionics-section .avionics-banner {
    width: 92%;
    max-width: 1800px;
    height: auto;
    margin: 80px auto 40px auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.avionics-section .title1{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color:rgb(240, 38, 38);
  text-align: center; 

  opacity: 0; 
  animation: fadeInUp 1.2s ease-out forwards;

}

.avionics-section .product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.avionics-section .product-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.avionics-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  width: 92%; 
  max-width: 1800px; 
  margin: 50px auto; 
  opacity: 1;
}



.avionics-section .card-img-wrapper {
  width: 100%;
  height: 200px;
  background-color: #eef2f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avionics-section .card-img-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.avionics-section .card-content {
  padding: 20px;
  text-align: left;
}

.avionics-section .card-content h3 {
  color:rgb(123, 7, 123); 
  font-size: 30px;
  margin-bottom: 10px;
}

.avionics-section .card-content p {
  color: #666;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.avionics-section .card-content ul {
  line-height: 2;
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #555;
  font-size: clamp(13px, 1vw, 15px);
}


.avionics-section .explore-btn {
  background-color: rgb(13, 80, 122);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.avionics-section .explore-btn:hover {
  background-color: black;
}



@media (max-width: 768px) {
.avionics-section .avionics-banner {
  width: 100%;
  height: auto;
  margin-top: 60px; 
  display: block;
  max-width: 100%;
  object-fit: contain; 
}

.avionics-section .title1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.avionics-section .product-grid {
  grid-template-columns: 1fr; 
  gap: 20px;
  padding: 0 15px; 
}
.avionics-section .card-content h3 {
  font-size: 24px;
}

}
/* --- components\Product\Avionics\MILSTD_1553.css --- */
.milstd-1553 .avionics-hero-section {
    margin-top:clamp(60px,8vw,125px);
    width: 100%;
    min-height: 80vh; 
    background: radial-gradient(circle at center, #000 0%, #000 100%);
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 100px 100px; 
    box-sizing: border-box;
    overflow: hidden; 
}

.milstd-1553 .content-container {
    max-width: 900px;
    text-align: center;
    color: white;
}


.milstd-1553 .top-title, .main-heading, .description {
    opacity: 0; 
    animation: fadeInUp 1.2s ease-out forwards;
}


.milstd-1553 .top-title {
    font-size: clamp(1.2rem, 0.8vw + 0.5rem , 1.4rem);
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation-delay: 0.2s; 
}


.milstd-1553 .main-heading {
    color: white;
    font-size: clamp(2rem, 5vw + 1rem, 4rem);  
    font-weight: 500;
    margin-bottom: 40px; 
    animation-delay: 0.7s; 
}


.milstd-1553 .description {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1.2rem, 0.8vw + 0.5rem , 1.4rem);
    line-height: 1.6;
    font-weight: 600;
    animation-delay: 1.2s; 
}
.milstd-1553 .sub-nav-wrapper {
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: 100%;

    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.milstd-1553 .sub-nav-wrapper.reveal {
    opacity: 1;
    transform: translateY(0);
}

.milstd-1553 .sub-nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 5px 5px;
    display: flex;
    justify-content: space-between; 
    align-items: stretch; 
    
}

.milstd-1553 .nav-links {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    
    
}

.milstd-1553 .nav-item {
    font-size:clamp(18px, 1.2vw, 20px);
    font-weight: 800;
    color: #444;
    cursor: pointer;
    
    margin-left: 20px;
    transition: color 0.3s;
}

.milstd-1553 .nav-item.active {
    color: #d3213f;
}

.milstd-1553 .full-border-line {
    width: 100%;
    height: 1px;
    background-color: #004a99;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.milstd-1553 .section-divider {
    margin-top: 60px; 
    padding-top: 40px;
    position: relative;
    border-top: none; 
    
}


.milstd-1553 .section-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw; 
    height: 1px;
    background-color: #eee;
    
}
.milstd-1553 .section-divider1 {
    margin-top: 60px; 
    padding-top: 40px;
    position: relative;
    border-top: none; 
    
}


.milstd-1553 .section-divider1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw; 
    height: 1px;
    background-color: #eee;
    
}


.milstd-1553 .mil-container {
    overflow: visible; 
}
.milstd-1553 .mil-container {
    padding: 40px 60px 10px 60px;   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    margin: 0 auto; 
    
}
.milstd-1553 .mil-title, .mil-description{
    opacity: 0; 
    animation: fadeInUp 1.2s ease-out forwards;
}

.milstd-1553 .mil-title {
    scroll-margin-top: 120px;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 2px;
    margin-bottom: 10px;
    letter-spacing: -1px;
    
    white-space: nowrap;
    width: 100%;
    display: flex;
    justify-content: center;

    animation-delay: 0.3s;

    
}


.milstd-1553 .mil-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(18px, 1.2vw, 20px);
    font-weight: 600;
    color:#0952a0;
    line-height: 1.5;
    text-align: center;
    animation-delay: 0.7s;
}


.milstd-1553 .mil-content {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 0;   
}

.milstd-1553 .card-title{
    padding-left: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s; 
}
/*.product-title{
    display: flex;
    align-items: center;
    justify-content: center;
    
   
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333; 



    opacity: 0;
    animation:slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s; 
}*/

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px); 
    }
    to {
        opacity: 1;
        transform: translateX(0); 
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.milstd-1553 .left-section {
    flex: 1;
    border: none ;
    border-radius: 30px;
    /*box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
    background: #ffffff;
    overflow: hidden;
   
    transition: transform 0.4s ease;
    margin-left: 0%;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s; 
   
   
}


.milstd-1553 .right-section {
    flex: 1;
}

.milstd-1553 .feature-list {
    list-style: none;
    padding: 0;
}

.milstd-1553 .feature-list li {
    font-size: clamp(1.1rem, 0.8vw + 0.5rem, 1.4rem);
    line-height: 1.4; 
    padding: 12px 0;
    display: flex;
    align-items: flex-start; 
    color: #333;
}

.milstd-1553 .feature-list li::before {
    content: "•";
    margin-right: 15px;
    color:black;
    font-weight: bold;
    font-size: 1.5rem;
}



.milstd-1553 .image-layout {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


.milstd-1553 .main-image {
    flex: 1;
}

.milstd-1553 .slider-image1 {
    width: 100%;
    border-radius: 8px;
    display: block;   
    max-width: 90%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
   
    animation-delay: 1.7s; 
     opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s; 
}


.milstd-1553 .thumbnail-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
     opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s; 
}

.milstd-1553 .thumbnail-row {
  display: flex;
  flex-direction: row; 
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.milstd-1553 .thumbnail-item {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}


.milstd-1553 .thumbnail-item.active {
    border: 2px solid #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

.milstd-1553 .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.milstd-1553 .form-factors-container {
   
    margin-top: 60px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.milstd-1553 .form-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: #444;
    min-width: 180px;
}

.milstd-1553 .factors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.milstd-1553 .factor-box {
    
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    
    border: 2px solid #eee;
    color: #444;
    padding: 12px 28px;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

    opacity: 1 !important;
    transform: translateY(0) !important;
}


.milstd-1553 .factor-box.reveal {
    opacity: 1;
    transform: translateY(0);
}

.milstd-1553 .factor-box:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.milstd-1553 .factor-box.active-box {
    background: #0066cc !important;
    color: #fff !important;
    border-color: #0066cc !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
}


.milstd-1553 .factor-box.no-data:hover {
    background: #0066cc ;
    color: #fff;
    border-color: #0066cc;
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed;
}


.milstd-1553 .section-divider .mil-title, 
.milstd-1553 .section-divider .mil-description,
.milstd-1553 .section-divider .left-section,
.milstd-1553 .section-divider .slider-image1,
.milstd-1553 .section-divider .thumbnail-column,
.milstd-1553 .section-divider .card-title {
    opacity: 0;
    animation: none; 
}


.milstd-1553 .section-divider.reveal .mil-title {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.milstd-1553 .section-divider.reveal .mil-description {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
}

.milstd-1553 .section-divider.reveal .left-section {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

.milstd-1553 .section-divider.reveal .card-title {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

.milstd-1553 .section-divider.reveal .slider-image1,
.milstd-1553 .section-divider.reveal .thumbnail-column {
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
}

.milstd-1553 .section-divider1 .mil-title, 
.milstd-1553 .section-divider1 .mil-description,
.milstd-1553 .section-divider1 .left-section,
.milstd-1553 .section-divider1 .slider-image1,
.milstd-1553 .section-divider1 .thumbnail-column,
.milstd-1553 .section-divider1 .card-title {
    opacity: 0;
    animation: none; 
}


.milstd-1553 .section-divider1.reveal .mil-title {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.milstd-1553 .section-divider1.reveal .mil-description {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
}

.milstd-1553 .section-divider1.reveal .left-section {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

.milstd-1553 .section-divider1.reveal .card-title {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

.milstd-1553 .section-divider1.reveal .slider-image1,
.milstd-1553 .section-divider1.reveal .thumbnail-column {
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
}

.milstd-1553 .info-card {
    border: none;
    border-radius: 20px;
    /*box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
    background: #ffffff;
    overflow: hidden;
    margin-top: 10px;
    transition: transform 0.4s ease;
    margin-left: 0%;

    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
   
    
}


/*.info-card.reveal {
    opacity: 1;
    transform: translateY(0);
}*/

/* 
.info-card.reveal:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}*/

.milstd-1553 .tabs-header {
   
    display: flex;
    padding: 10px 10px 0 10px;
    gap: 5px;
}

.milstd-1553 .tab-link {
    padding: 10px 10px;
    font-weight: 800;
    color: #888;
    border: none;
    background: transparent;
    cursor: pointer;
    /*border-radius: 12px 12px 12px 12px;*/
    
}

.milstd-1553 .tab-link.active {
    background: #fff;
    color: #000;
    border-bottom: 3px solid #0066cc;

    /*border-left: 3px solid #0066cc;
    border-bottom: 3px solid #0066cc;
    border-right: 3px solid #0066cc;
    border-top: 3px solid #0066cc;*/
    
    
    
}

.milstd-1553 .tab-body {
    padding: 40px;
   
    min-height: 250px;
    background: #fff;
}

.milstd-1553 .top-layout {
    display: flex; 
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start; 
    
    padding: 20px 5% 20px 5%; 
    gap: 40px; 
    width: 100%;
    box-sizing: border-box;
}



.milstd-1553 .tab-body {
    margin-left: 0;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
   
    width: 500%; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}



.milstd-1553 .product-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex; justify-content: center; align-items: center;
  z-index: 2000;
}


.milstd-1553 .product-modal-container {
  background: white;
  /*width: 90%;
  max-width: 1000px;*/
  width: clamp(320px,80vw,1200px);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}


.milstd-1553 .modal-header {
  background: #004a8d;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.milstd-1553 .modal-header h2 { margin: 0; font-size: 1.1rem; }

.milstd-1553 .close-btn {
  background: none; 
  border: none; 
  color: white;
  font-size: clamp(24px, 2vw, 28px);
  cursor: pointer;
}


.milstd-1553 .modal-body-content {
  padding: 20px;
}

.milstd-1553 .key-features-header {
  font-weight: bold;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  
  color: #333;
}


.milstd-1553 .features-grid-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px; 
    padding-top: 5px;
}
.milstd-1553 .feature-column {
    flex: 1; 
}

.milstd-1553 .protocol-title {
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  margin-bottom: 15px;
}

.milstd-1553 .feature-list-items {
  list-style-type: disc;
  padding-left: 20px;
}

.milstd-1553 .feature-list-items li {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.5;
  color: #444;
}


.milstd-1553 .click-here-trigger {
  color: #007bff;
  cursor: pointer;
  margin-left: 12px;
  font-size: clamp(0.9rem, 0.6vw + 0.4rem, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* MOBILE RESPONSIVE  */

@media (max-width: 1024px) {
    .milstd-1553 .avionics-hero-section {
        padding: 80px 40px;
    }

    .milstd-1553 .main-heading {
        font-size: 3rem;
        white-space: normal;
    }

    .milstd-1553 .sub-nav-container {
        justify-content: center;
        overflow-x: auto; 
    }
}

@media (max-width: 768px) {
    
    .milstd-1553 .avionics-hero-section {
        margin-top: 80px;
        padding: 60px 20px;
        min-height: auto;
    }

    .milstd-1553 .main-heading {
        font-size: 2rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

   
   
    .milstd-1553 .sub-nav-container {
        display: block; 
        width: 100%;
        overflow: hidden;
    }

    .milstd-1553 .nav-links {
        display: flex; 
        gap: 20px;
        padding: 15px 20px;
        
      
        overflow-x: auto; 
        white-space: nowrap;
        width: 100%;
        
        
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory;
    }

  
    .milstd-1553 .nav-links::-webkit-scrollbar {
        display: none;
    }

    .milstd-1553 .nav-links {
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }

    .milstd-1553 .nav-item {
        flex: 0 0 auto; 
        font-size: 15px;
        scroll-snap-align: start;
        padding-bottom: 5px;
    }


    
    .milstd-1553 .mil-container {
        padding: 30px 15px;
    }

    .milstd-1553 .mil-title {
        font-size: 1.6rem;
        white-space: normal;
        text-align: center;
    }

    .milstd-1553 .mil-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    
    .milstd-1553 .card-title {
        order: 1;
        font-size: 1.3rem !important;
        text-align: left;
        padding-left: 10px;
    }

    .milstd-1553 .image-layout {
        order: 2; 
        display: flex;
        flex-direction: row; 
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .milstd-1553 .main-image {
        flex: 3.5;
    }

    .milstd-1553 .thumbnail-column {
        flex: 1;
        display: flex;
        flex-direction: column; 
        gap: 8px;
    }

    .milstd-1553 .thumbnail-item {
        width: 45px;
        height: 45px;
    }

  
   .milstd-1553 .features-grid-layout {
        flex-direction: column; 
        gap: 0 !important; 
    }

    .milstd-1553 .feature-column {
        width: 100%;
    }

  
    .milstd-1553 .right-col .protocol-title {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        color: black;
       
        padding-bottom: 5px;
    }

    .milstd-1553 .feature-list-items {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .milstd-1553 .feature-list1 {
        flex-direction: column; 
        display: flex;
        gap: 15px;
    }

    .milstd-1553 .feature-list1 li {
        font-size: 1rem;
        padding: 15px;
    }
     
   
    .milstd-1553 .product-modal-container {
        width: 95%;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 20px;
    }

    .milstd-1553 .features-grid-layout {
        flex-direction: column;
        gap: 20px;
    }

    .milstd-1553 .modal-body-content {
        padding: 15px;
    }
    
    .milstd-1553 .form-factors-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 30px;
    }

    .milstd-1553 .factors-grid {
        justify-content: center;
        width: 100%;
    }

    .milstd-1553 .factor-box {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
  
    .milstd-1553 .info-card {
        margin: 15px !important;
        width: auto !important; 
        margin-left: 0 !important;
        animation: fadeInUp 0.8s ease forwards; 
    }

    
    .milstd-1553 .tabs-header {
        display: flex !important;
        flex-wrap: nowrap !important; 
        overflow-x: auto !important; 
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
        padding: 10px !important;
        
        scrollbar-width: none; 
    }

    .milstd-1553 .tabs-header::-webkit-scrollbar {
        display: none; 
    }

   
    .milstd-1553 .tab-link {
        
       
        padding: 12px 15px !important;
        font-size: 14px !important;
    }

   
    .milstd-1553 .tab-body {
        width: 100% !important; 
        padding: 20px !important;
        min-height: auto !important;
        
    }

   
    .milstd-1553 .top-layout {
        flex-direction: column !important; 
        padding: 15px !important;
        gap: 20px !important;
        width: 100% !important;
    }

   
   
}

/* SMALL MOBILE (480px) */
@media (max-width: 480px) {
    .milstd-1553 .main-heading {
        font-size: 1.6rem;
    }

    .milstd-1553 .mil-title {
        font-size: 1.4rem;
    }

    .milstd-1553 .tab-link {
        font-size: 13px !important;
        min-width: 130px;
    }

    .milstd-1553 .product-modal-container {
        max-height: 90vh !important;
    }
    
    .milstd-1553 .modal-header h2 {
        font-size: 1rem !important;
    }
}
/* --- components\About\About.css --- */
.about {
    margin-top: 30px;
    padding: 110px 5% 60px; 
    max-width: 2000px;
    margin-left: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 3px solid #d32f2f; 
    display: table;
}

.about h3 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 15px;
    text-transform: capitalize;
    padding-left: 10px;
}

.about h5 {
    padding-left: 10px;
    font-size: 1.2rem;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}
.about h6 {
    padding-left: 10px;
    font-size: 1.2rem;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}


.about p {
    padding-left: 10px;
    margin-bottom: 20px;
    text-align: justify;
}


.about > div {
    margin-bottom: 40px;
    padding: 0px 0px;
    background: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.about ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about ul li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 10px;
}

.about ul li::before {
    content: "✔"; 
    position: absolute;
    left: 40px;
    color: #d32f2f;
    font-weight: bold;
}


.about div:last-child {
    background: #f4f4f4;
    border-top: 2px solid #ccc;
}


/*  MOBILE RESPONSIVE  */

@media (max-width: 1024px) {
    .about {
        padding: 100px 5%; 
    }
}

@media (max-width: 768px) {
    .about {
        
        padding: 50px 20px 40px; 
        text-align: left; 
        font-size: 1rem;
    }

    .about h2 {
        font-size: 1.5rem; 
       
        text-align: left;
        margin: 0 0 20px 0;
    }

    .about h3 {
        font-size: 1.3rem;
        text-align: left;
    }
    
    .about p {
        text-align: left; 
        line-height: 1.6;
    }

    
    .about ul li {
        padding-left: 35px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .about ul li::before {
        left: 10px; 
    }

   
    .about > div {
        padding: 20px;
        margin-bottom: 25px;
    }
}

/* MOBILE (480px)  */
@media (max-width: 480px) {
    .about h2 {
        font-size: 1.5rem;
    }
    
    .about h5, .about h6 {
        font-size: 1.1rem;
    }
}





/* --- components\Careers\Careers.css --- */

.careers-page-wrapper {
 
  width: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.careers-header-container {
  margin-top:clamp(60px,8vw,125px); ;
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.career-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%); 
}

.header-overlay {
  position: absolute;
  text-align: center;
  color: white;
  width: 100%;
}

.header-overlay h1 {
  font-size: 2.8rem;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}


.opportunities-container, 
.job-details-view, 
.application-container {
  
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}


.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.job-info h3 {
  margin: 0 0 10px 0;
  color: #000;
  font-size: 1.4rem;
}



.btn-group{
  text-align: center;
}
.btn-apply-outline {
  border: 1px solid #00a0af;
  color: #00a0af;
  background: white;
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-apply-outline:hover {
  background: #00a0af;
  color: white;
}

.btn-back {
  background: white;
  border: 1px solid #00a0af;
  color: #00a0af;
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.btn-submit {
  background: #00a0af;
  color: white;
  border: none;
  padding: 12px 50px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}


.application-container h2 {
  color: #333;
  margin-bottom: 10px;
}

.career-form {
  margin-top: 30px;
}


.resume-section {
  margin-bottom: 30px;
}

.file-input-wrapper {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin-top: 10px;
}

.file-input-wrapper input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f9f9f9;
}

.btn-choose {
  background: white;
  border: 1px solid #00a0af;
  color: #00a0af;
  padding: 0 20px;
  cursor: pointer;
  font-weight: bold;
}

.file-hint {
  font-size: 0.8rem;
  color: #d9534f; 
  margin-top: 5px;
}


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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}


.form-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}


/*  MOBILE  RESPONSIVE */
@media (max-width: 768px) {

  .careers-header-container {
    margin-top: 80px !important; 
    height: 250px;    
  }

  .header-overlay h1 {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  
  .job-row {
    flex-direction: column; 
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
  }

  .btn-apply-outline {
   
    margin-top: 10px;
   
    width: 100%; 
    text-align: center;
  }
  .btn-back {
   
    margin-top: 10px;
   
    width: 100%; 
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

 
  .file-input-wrapper {
    flex-direction: column; 
    width: 100%;
  }

  .btn-choose {
    padding: 12px;
    width: 100%;
  }


  .form-actions {
    flex-direction: column-reverse; 
    width: 100%;
  }

  .btn-submit, .btn-back {
    font-weight: bold;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }


  .opportunities-container, 
  .job-details-view, 
  .application-container {
    margin: 20px auto;
    padding: 0 15px;
  }
}

/* MOBILE (480px)  */
@media (max-width: 480px) {
  .header-overlay h1 {
    font-size: 1.5rem;
  }
  
  .job-info h3 {
    font-size: 1.2rem;
  }
}
/* --- components\Contact\Contact.css --- */


/*.phone-input-group {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.country-select-wrapper {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #f4f4f4;
  border-right: 1px solid #ccc;
  gap: 5px;
}

.flag-icon {
  width: 22px;
  height: auto;
  object-fit: contain;
}

.country-dropdown {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  font-weight: bold;
}

.phone-input-group input {
  flex: 1;
  border: none !important;
  padding: 12px;
  font-size: 16px;
}

/* 
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 150px 20px;
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  gap: 50px;
  align-items: center;
}

.contact-left {
  flex: 1;
  max-width: 500px;
}

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
}




/* 
.contact-title {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input, .contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px; /* 
}

.submit-btn {
  background: #0056b3;
  color: white;
  border: none;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.submit-btn:hover {
  background: #004494;
}

/*  
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column-reverse; /* 
    text-align: center;
  }
  .contact-title {
    text-align: center;
  }
}*/


.address-location .location-container {
  background-color: lab(95.7% -0.45 -1.8);  
  /*color: #333;
  padding: 150px 10% 150px 10%; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 
}


.address-location .location-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}


.address-location .location-description {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
}


.address-location .accordion-item {
  border-bottom: 1px solid #ddd;
}


.address-location .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}


.address-location .icon {
  color: #e31e24;
  font-size: 1.8rem;
  font-weight: bold;
}


.address-location .accordion-content {
  padding: 10px 0 30px 0;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.address-location .address-block {
  margin-bottom: 35px;
  max-width: 500px;
}


.address-location .unit-name {
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
  font-size: 1.1rem;
}


.address-location .address-text {
  margin-bottom: 5px;
  line-height: 1.5;
}


.address-location .tel-text {
  margin-bottom: 10px;
}


.address-location .map-link {
  color: #e31e24;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border-bottom: 2px solid #e31e24;
  padding-bottom: 2px;
  transition: all 0.3s;
}


.address-location .map-link:hover {
  background-color: #e31e24;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
}


/* MOBILE RESPONSIVE */

@media (max-width: 992px) {
  
  .contact-container {
    flex-direction: column-reverse; 
    gap: 40px;
    padding: 0 20px;
  }

  .contact-left, .contact-right {
    max-width: 100%;
    width: 100%;
  }

  .contact-title {
    font-size: 28px;
    margin-top: 20px;
  }

  .contact-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {

  .contact-section {
    padding: 100px 15px 50px 15px; 
  }

  
  .phone-input-group {
    flex-direction: row; 
  }


  .address-location .location-container {
    padding: 60px 20px;
  }

  .address-location .location-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .address-location .location-description {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 30px;
  }

  .address-location .accordion-header {
    font-size: 1rem;
    padding: 20px 0;
  }

  .address-location .address-block {
    max-width: 100%; 
    text-align: left;
    padding: 10px;
    background: white; 
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  
  .address-location .map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border: 1px solid #e31e24;
    border-radius: 4px;
  }
}

/* MOBILE (480px)  */
@media (max-width: 480px) {
  .contact-form input, .contact-form textarea {
    padding: 12px;
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
    padding: 15px;
  }

  .address-location .unit-name {
    font-size: 1rem;
  }
}

/* --- components\Catalog\Catalog.css --- */
.catalog-container {
  margin-top: clamp(60px,8vw,125px); 
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background-color:hwb(193 7% 38% / 0.445);

  margin-bottom: 50px; 
  padding-bottom: 30px;
}

.book-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.flipbook {
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  background-color: white;
}

.page-content {
  background-color: white;
  overflow: hidden;
}

.arrow-btn {
  background: black;
  color: white;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.arrow-btn:hover {
  background: #f5c400;
  color: black;
  transform: scale(1.1);
}


.download-controls {
  display: flex;
  flex-direction: row; 
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 50%;
}

.download-btn {
  background: #f5c400;
  background-color: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px; 
}

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

.download-btn:hover {
  background: #f5c400;
  color: black;
  transform: scale(1.1);
  opacity: 0.9;
  transform: translateY(-2px);
}
.catalog-selector {
 
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.select-btn {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 5px;
}

.select-btn.active {
  background: #007bff;
  color: white;
  border-color: #0056b3;
}


/*  MOBILE RESPONSIVE */

@media (max-width: 1024px) {
  .catalog-container {
    margin-top: 80px !important;
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  
  .arrow-btn {
    display: none !important; 
  }

  
  .book-wrapper {
   
    
     flex-direction: column;
    width: 100%;
   
  }

  
  .flipbook {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

 
  .catalog-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 25px;
  }

  .select-btn {
    padding: 12px 5px;
    font-size: 13px;
    text-align: center;
    width: 100%;
  }

  
  .download-controls {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
    padding: 0 15px;
  }

  .download-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 10px;
  }
}


@media (max-width: 480px) {
  .flipbook {
    transform: scale(0.75); 
    margin-top: -30px;
    margin-bottom: -30px;
  }
  
  .catalog-container {
    padding-top: 20px;
  }
}



/* --- pages\Certifications.css --- */

.cert-section-wrapper {
  margin-top:clamp(60px,8vw,125px); ;
  background-color: #000000;
  color: #ffffff;
  min-height: auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:60px 20px 0px 20px;
  overflow-x: hidden;
}

.cert-main-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.cert-description {
  max-width: 750px;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #aaaaaa;
  text-align: center;
}

.cert-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.cert-card {
  display: flex;
  align-items: center;
  background-color: #111111;
  padding: 30px;
  border-radius: 50px 15px;
  border: 1px solid #222;
  transition: all 0.5s ease;
}

.cert-card.active {
  border-color: #F54927;
  transform: scale(1.02);
  box-shadow: 0px 0px 25px rgba(245, 73, 39, 0.2);
}

.cert-logo-holder {
  min-width: 110px;
  height: 110px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.cert-logo-holder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-text-holder p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.5;
  color: #ffffff;
}

.cert-section-wrapper {
  position: relative; 
  padding-bottom: 0; 
}
.footer-divider-line {
  width: 100%;
  border: none;
  height: 1px;
  
  background: rgba(255, 255, 255, 0.2); 
  margin: 40px 0 0 0 !important;
  position: relative;
  left: 0;
}


/* MOBILE RESPONSIVE   */

@media (max-width: 768px) {
  .cert-section-wrapper {
    min-height: auto !important;
    padding-bottom: 0px !important;
  }

  .cert-main-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .cert-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .cert-card {
    flex-direction: column; 
    text-align: center;
    padding: 25px;
    border-radius: 30px 10px;
  }

  .cert-logo-holder {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: 90px;
    height: 90px;
  }

  .cert-text-holder p {
    font-size: 1rem;
  }
  .footer-divider-line {
    margin-top: 20px !important;
  }
}


.fade-in .cert-main-title {
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* --- components\Location\Location.css --- */
.location-container {
  margin-top:clamp(60px,8vw,125px); ;
  background-color: #f8f9fa; 
  color: #333;
  padding: 60px 10% 150px 10%; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.location-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.location-description {
  color: #555;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.icon {
  color: #e31e24;
  font-size: 1.8rem;
  font-weight: bold;
}

.accordion-content {
  padding: 10px 0 30px 0;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.address-block {
  margin-bottom: 35px;
  max-width: 500px;
}

.unit-name {
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.address-text {
  margin-bottom: 5px;
  line-height: 1.5;
}

.tel-text {
  margin-bottom: 10px;
}

.map-link {
  color: #e31e24;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border-bottom: 2px solid #e31e24;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.map-link:hover {
  background-color: #e31e24;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
}


@media (max-width: 768px) {
  .location-container {
    padding: 30px 20px;
  }
}
/* Static site additions */
.page-body { padding-top: 100px; min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; }
.mobile-icon { display: none; background: none; border: none; cursor: pointer; font-size: 24px; }
.mobile-icon .bars::before { content: 'â˜°'; }
.mobile-icon.active .bars::before { content: 'âœ•'; }
.product-detail-page .detail-gallery { display: flex; flex-wrap: wrap; gap: 20px; padding: 40px 5%; justify-content: center; }
.detail-gallery-img { max-width: 280px; max-height: 220px; object-fit: contain; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.product-listing .product-card { opacity: 1; transform: none; }
.catalog-note { text-align: center; padding: 60px 20px; }
.catalog-selector .select-btn { padding: 12px 24px; margin: 8px; border: 2px solid #ff7e01; background: #fff; cursor: pointer; font-weight: 600; border-radius: 6px; }
.catalog-selector .select-btn.active { background: #ff7e01; color: #fff; }
.navbar-container .mega-menu-content { display: none; }
.navbar-container .mega-menu-content.open { display: block; }
body.home-page { padding-top: 0; }
.home-page .slide-wrapper { margin-top: 0; padding-top: 0; }
@media (max-width: 1024px) {
  .mobile-icon { display: block !important; }
  .navbar-container .nav-menu { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: #fff; flex-direction: column; padding: 80px 20px; box-shadow: -5px 0 20px rgba(0,0,0,0.15); z-index: 999; overflow-y: auto; }
  .navbar-container .nav-menu.curtain-active { display: flex; }
  .navbar-container .mega-menu-content.open { position: static; box-shadow: none; }
}
