/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

/* CSS Variables for Main Colors */
:root {
  --primary-color: #0B0146;   
  --secondary-color: #ffffff;    
  --accent-color: #f90;       
}

/* Body Default Styles */
body {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--accent-color);
  transition: 0.3s;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
}

/* Buttons */
button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--accent-color);
}

/* Top Bar - Desktop */
.top-bar {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  background-color: #fff;        /* white background */
  color: #000;                   /* black text */
  padding: 6px 70px;
  font-size: 14px;
  text-align: left;
  z-index: 1000;
  border-bottom: 1px solid #ddd; /* subtle divider */
}

/* Top Bar - Mobile */
.top-bar-mobile {
  position: fixed;
  width: 100%;
  background-color: #fff;        /* white background */
  color: #000;                   /* black text */
  padding: 6px 20px;
  font-size: 13px;
  text-align: center;
  display: none;                 /* hidden on desktop */
  border-bottom: 1px solid #ddd; /* subtle divider */
  z-index: 1000;
}

/* Divider Line */
.line {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0;
}

/* Responsive Toggle for Top Bars */
@media (max-width: 768px) {
  .top-bar {
    display: none;          /* hide desktop top bar on small screens */
  }
  .top-bar-mobile {
    display: block;         /* show mobile top bar */
  }
}

.mobile-header{
  position: fixed;
    width: 100%;
    top: 33px;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    background-color: white;
}
.menu-btn{
    margin-right: 20px;
    margin-top: 10px;
    cursor: pointer;
}
.logo-image{
    margin-top: 2px;
}

#quote-btn{ 
    position: relative;
    font-size: 14px;
    background-color: #0B0146;
    color: white !important;
    padding: 4px 12px;
    border-radius: 60px;
    margin-left: 60px;
    top: 12px;
    cursor: pointer;
}

#quote-btn:hover{
  background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.menu-text{
  font-size: 12px;
  text-align: center;
  color: #000;
}
.mobile-menu {
    position: fixed;
    width: 100%;
    background-color: rgb(255, 255, 255); 
    backdrop-filter: blur(10px);           
    padding: 15px 20px;
    top: 89px;
    z-index: 200;

}

.mobile-links ul {
    list-style: none;          
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;    
    gap: 15px;                 
}

.mobile-links a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quote-btn{ 
    width: 100%;
    background-color: #0B0146;
    color: white !important;
    border-radius: 60px;
    border: none;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;           
    text-align: center;       
    margin: 12px 0;  
}

.quote-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.desktop-menu {
  position: fixed;
    width: 100%;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 5px 5px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 2000;
    top: 35px;
    padding-left: 40px;


}

.desktop-header-logo img {
    display: block;
    max-width: 130px;
    padding-right: -50px;
    padding-left: -50px;
}
.menu-links {
    display: flex;
    align-items: center;
    gap: 60px; 
    margin-right: 60px;
}

.menu-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--accent-color)
}

.getQuote {
    display: inline-block;
    background-color: #0B0146;
    color: white !important;
    border: none;
    padding: 10px 25px;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.getQuote :hover{
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;             /* 60% of viewport height */
  padding: 0 88px;
  background-color: #06002994;
  background-image: url(images/Kudayung.webp);
  gap: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  top: 85px;

}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 0, 41, 0.952); /* dark blue with 50% opacity */
  z-index: 0;
}

.hero-text,
.hero-image {
  position: relative;
  z-index: 1;
}

/* Hero Text */
.hero-text {
  flex: 1;
}

.hero-text hr {
  width: 70px;
  border: 0;
  border-top: 3px solid #f90;
  margin-bottom: 15px;
}

.hero-text h5 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 75px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
}

/* Hero Buttons */
.hero-buttons button {
  margin-right: 15px;
  padding: 12px 25px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.primary-btn {
  background-color: var(--accent-color);
  color: #fff !important;
}

.primary-btn:hover {
  background-color: #f90;
  color: white;
}

.secondary-btn {
  background-color: #ddd;
  color: #000;
}

.secondary-btn:hover {
  background-color: #f90;
  color: #fff;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.hero-image img {
  max-width: 90%;
  margin-bottom: 0px;
  transform: translateX(70%);
  animation: slideIn 1s forwards ease-out;
  margin-left: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px 20px;
    overflow: hidden;
    margin-top: 0px;
  }
  
  .hero-image img {
    margin-top: 20px;
    pointer-events: none;
    
  }
  
  .hero-buttons button {
    margin-bottom: 10px;
    position: relative;
    pointer-events: auto;
    z-index: 1000;
  }

.hero-text h1 {
  font-size: 35px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-image img {
  max-width: 100%;
  margin-bottom: -20px;
  margin-top: -50px;
  transform: translateX(70%);
  animation: slideIn 1s forwards ease-out;
  margin-left: 320px;
  margin-right: 5px;
}


}

/* About Section */
.about-section {
  display: flex;
  padding: 40px;
  margin-left: -200px;
  gap: -40px;
  background-color: #fff;
  justify-content: left;
  align-items: flex-start;
  top:0px;
  margin-top: 90px;
}

/* Left box with main image */
.box-one {
  flex: 1 1 50%;
  display: flex;
  justify-content:end;
  align-items: start;
}

.box-one img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-top: -60px;
}

/* Right box with text content */
.box-two {
  flex: 1 1 50%;
  padding: 20px;
}

.box-two hr {
  width: 70px;
  border: 0;
  border-top: 3px solid #f90;
  margin-bottom: 15px;
  margin-right: 20px;

}

.box-two h4 {
  font-size: 18px;
  line-height: 1.1;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.box-two h2 {
  font-size: 40px;
  color: #0B0146;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.box-h4{
  font-size: 55px;
  color: #0B0146;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.box-two p {
  font-size: 15px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-btn{
  background-color: var(--primary-color);
  color: white;
  border-radius: 60px;
  padding: 10px 20px;
}

.about-btn:hover{
  background-color: var(--accent-color);
  color: white;
}

/* Inner class: small image + text */
.inner-class {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* keeps them side by side but wraps if too narrow */
}

.inner-class div:first-child img {
  width: 100%;
  max-width: 80px; /* small image */
  border-radius: 6px;
}

.inner-class div:last-child {
  flex: 1;
  font-size: 14px;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-wrap: wrap-reverse;
    padding: 10px;
    gap:0px;
    margin: 0px;
    margin-top: 90px;
  }

  .box-one,
  .box-two {
    flex: 1 1 100%;
  }

  .inner-class {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
.box-h4{
  display: none;
}
.about-btn{
 display: none;
}

.box-two h2{
  font-size: 30px;
}

}

/* Services */

.services-section{
  background-color: #fafafa;
  margin-top: -70px;
  padding: 20px;
  padding-bottom: 50px;
}

.services-section p{
  margin-top: 10px;
}

.service-box-one{
  text-align: center;
}

@media (max-width:768px) {
  .service-image{
   width: 100% !important;
}
}


.one-h1{
line-height: 1.2;
margin-top: 30px;
}

.three-boxes {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin: 20px auto;
padding: 0;
}


.service-box {
border: 1px solid grey;
border-radius: 10px;
background-color: #f5f5f5;
padding: 30px;
text-align: center;
flex: 1 1 250px;
max-width: 300px;
box-sizing: border-box;
}


.service-box img {
margin-bottom: 10px;
}


.service-box h3 {
margin: 10px 0 10px 0;
margin-top: -10px;
}


.service-box hr {
margin: 10px auto;
width: 50px;
border-top: 2px solid #ccc;
}


.service-box p {
margin-top: 10px;
font-size: 15px;
line-height: 1.4;
}

@media (max-width:768px) {
.three-boxes {
flex-direction: column;
align-items: center;
margin: 10px;
}
.service-box {
max-width: 90%;
margin: 10px 0;
padding: 20px;
}

.service-box img {
display: block;
margin-left: auto;
margin-right: auto;
}

.service-box p {
font-size: 14px;
margin-top: 8px;
}

.service-box h3{
  margin-top: -6px;
  line-height: 1.2;
}
}

.vertical-line {
  width: 3px;            
  height: 50px;         
  align-content: center;
  align-items: center;
  align-self: center;
  background-color: #0B0146; 
}

.enquiry-btn{
  text-align: center;
  margin-top: 40px;

}
*/
.space{
  padding: 10px;
  margin-top: -10px;
}

.point{
  text-align: center;
}

@media (max-width:768px) {
  .point img{
    width: 90%;
  }
}


/*=============== SERVICES ===============*/

.contact-box{
  margin-top: 10px;
  text-align: center;
}
.contact-info{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 90px;
}

.info-box{
  border: 1px solid grey;
  border-radius: 10px;
  padding: 20px;
  margin-top: -60px;
}

.contact-info :hover{
  background-color: white;
  cursor: pointer;
}

@media (max-width:768px) {
   .contact-info{
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 30px;
    padding-bottom: 30px;
    gap: 90px;
    margin-top: -20px;
  }

  .contact-box{
    margin-top: 60px;
  }

  .info-box img{
    width: 20%;
  }

  .contact-hello{
    margin-top: 30px;
  }
}

/* ============= Contact us ==============*/

.contact-hello {
  padding: 110px 110px;
  background-color: #f9f9f9;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0px;
}

/*.contact-title h2 {
  text-align: left;
  color: #0B0146;
  margin-bottom: 30px;
  font-size: 20px;
}*/

.contact-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.form-input,select{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
select:focus {
  border-color: #0B0146;
  box-shadow: 0 0 4px rgba(11, 1, 70, 0.2);
}

.checkbox-group {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #333333;
}

.submit-btn {
  background-color: #0B0146;
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.form-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.form-image img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .contact-hello {
    padding: 40px 20px;
  }

  .contact-form {
    flex-direction: column-reverse;
    gap: 0px;

  }

  .form-box{
    position: relative;
    top: -40px;
  }


  .form-box,
  .form-image {
    flex: 1 1 100%;
    
  }

  .submit-btn {
    width: 100%;
  }

  .contact-hello h2{
    display: none;
  }
}

/* =============== NOT SURE ===================*/


/*--- Last Section ---*/
.last-Section {
    background-color: #ebebeb; 
    padding: 30px 15px;
    text-align: center;
}
.last-Section h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}
.last-Section .quoteBtn {
    background-color: #0B0146;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.last-Section .quoteBtn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
@media (min-width: 768px) {
  .top-bar-mobile {
    display: none;
  }
  .mobile-header{
    display: none;
  }

  .foot-image{
    width: 50%;
  }
}

@media (max-width: 991px) {
    .footer{
    display: flex;
    flex-direction: column;
    }
}

.foot-image{
    text-align: center;
    position: relative;          
    left: -100%;                 
    animation: slideIn 1.5s forwards; 
}
@keyframes slideIn {
  0% {
    left: -100%;  
  }
  50% {
    left: 50%;     
    transform: translateX(-50%); 
  }
  100% {
    left: 50%;     
    transform: translateX(-50%);
  }
}
.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 5%;
  background-color: #0B0146;
  color: #fff;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer p {
  line-height: 1.6;
  font-size: 15px;
}

.footer hr {
  
  border: 1px solid #ffffff;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0051ff;
}

.footer4 input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  border-radius: 5px;
}

.footer4 button {
  width: 100%; 
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0004ff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  transition: 0.3s;
}

.footer4 button:hover {
  background-color: #020066;
}

.last {

  display: flex;
  justify-content: space-between;
  padding: 15px 70px 15px 70px !important;
  text-align: center;
  background-color: #060029;
  color: #fff;
  font-size: 12px;
  border-top: 1px solid #222;
}

@media (max-width:768px) {
  .last {
    display: block;
    padding: 15px 20px 15px 20px !important;
  }
}

.last a{
  color: white !important;
}

.last a:hover{
  color: var(--accent-color) !important;
}

.services-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 5%;
  color: #fff;
}
.services{
    background-color: rgb(235, 235, 235);
    padding-top: 10px;
    padding-bottom: -10px;
    text-align: center;
}
.services hr{
    width: 100px;
    border: 3px solid #636363;
    margin-bottom: 1px;
    text-align: center;
    margin: 20px auto;
}

.services h4{
    font-size: 30px;
    color:  #636363;
}

.services-box{
    background-color: rgb(235, 235, 235);
    margin: 0;
    padding: 50px;
}

.about{
  display: grid;
    padding: 50px;
}

.inner-section{
    display: flex;
    grid-template-columns: auto;
}

.tab-about-us{
  background-color: white;
  text-align: center;
  margin-top: 100px;
}

.tab-about-us img{
  margin-top: 10px;
  margin-bottom: -30px;
}

.about-box{
  display:flex;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .tab-about-us img{
    margin-top: 10px;
    margin-bottom: 0px;
  }

 .box-two hr{
 display: none;
 }
}

.about-us-image{
  display: flex;
  justify-content: space-between;
}

@media(max-width:768pc){
  .about-us-image{
    display: flex;
    flex-wrap: wrap;
  }
}

.info-box-box{
  border: 1px solid rgb(233, 233, 233);
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: -60px;
  color: #222;
}

.contact-info-box{
  box-shadow: 0 6px 20px rgba(11, 1, 70, 0.15);
}

@media(max-width:768px){
  .info-box-box img{
    width: 70%;
  }
}

.service-box-about{
  margin-top: -100px;
  width: auto;
  justify-content: center;
  padding-left: 30px;
}

.about-section-box {
  display: flex;
  padding: 40px;
  margin-left: -200px;
  margin-right: 30px;
  gap: -40px;
  background-color: #fff;
  justify-content: left;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .about-section-box {
    flex-wrap: wrap-reverse;
    padding: 10px;
    gap:0px;
    margin: 0px;
    margin-top: -20px;
  }

  .service-box-about{
  margin-top: 10px;
  width: auto;
  justify-content: center;
  padding-left: 0px;
}

.foot-long{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  
}

.foot-long img{
  margin-top: -5px;
  margin-bottom: -5px;
}

}

.foot-long{
  text-align: center;
  margin-top: -40px;
  margin-bottom: 20px;
}

.foot-long{
  cursor: pointer;
}

.quote-head{
  text-align: center;
  margin-top: 100px;
}

.quote-head img{
  margin-top: 90px;
}

.form-quote-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  margin-top: -15px;
}

.form-quote{
  box-sizing: border-box;
  width: 85vw;
  padding: 12px 14px;
  border: 1px solid #585858;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
  display: block;
}

.form-quote label{
  color: #000000 !important;
}

.submit-btn-quote-one {
  display: block;
  width: 85vw;
  position: relative;
  padding: 16px 20px;
  background: #0B0146;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.quote-text{
  text-align: center;
  color: #000;
  font-size: 12px;
}

@media (min-width: 768px) {
  .form-quote-box {
    justify-content: center;     /* centers the form horizontally */
  }

  .form-quote-box form {
    width: 60%;                  /* make form narrower and centered */
    max-width: 700px;            /* prevent it from getting too wide */
  }

  .form-quote,
  .submit-btn-quote-one {
    width: 100%;                 /* fill the form width */
  }

  .quote-head img{

  width: 53%;
  }

  .quote-head{
  text-align: center;
  margin-top: 40px;

}

}

@media(max-width:768px){
  .quote-head{
  text-align: center;
  margin-top: 10px;
}
}



/*
.services-box{
  display:flex;
  justify-content: space-between;
  gap: 20px;
}
*/

@media(max-width:768px){
  .service-box{
    display:flex;
    flex-wrap: wrap;
  }
}

.service-tab-area{
  display: flex;
  padding: 50px;
  gap: 20px;
  background-color: #fff;
  justify-content: left;
  align-items: flex-start;
  margin-top: 90px;
}

.service-tab-area h2{
  font-size: 40px;
}

.service-tab-area hr{
  width: 80%;
  border: 0;
  border-top: 3px solid #f90;
  margin-right: 20px;
  text-align: center;
}

@media (max-width:768px){

.service-tab-area hr{
  width: 100%;
  border: 0;
  border-top: 3px solid #f90;
  margin-right: 20px;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 10px;
}

  .service-tab-area{
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    gap: 20px;
  }

  .service-tab-area h2{
  display: none;
}

.service-tab-area img{
  width: 330px;
}
  .desk-img{
    display: none;
  }

  .service-tab-area hr{
    margin-top: -15px;
    margin-bottom: 5px;
  }
  
}

.services-list-box{
  display:flex;
  justify-content: space-between;
  padding: 70px;
  margin-top: -80px;
}

.service-list-info{
  background-color: white;
  border: 1px solid grey;
  border-radius: 6px;
  text-align: center;
 
}

/* ========== NOT SURE ============*/

.foot-longer{
  text-align: center;
  margin-top: -0px;
}

.foot-longer{
  cursor: pointer;
}

@media (max-width:768px){
  .foot-longer{
  text-align: center;
  margin-top: -10px;
}
}

/* =========  CAREERS ===========*/

.no-vacancies {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
  margin: 40px auto;
  border-radius: 8px;
  width: 85%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-top: -30px;
}

.no-vacancies h2 {
  color: #0B0146;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.no-vacancies p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.careers-footer {
  text-align: center;
  padding: 40px 20px;
}

.careers-footer p {
  font-size: 1rem;
  color: #333;
}

.careers-footer a {
  color: #0B0146;
  font-weight: 600;
  text-decoration: none;
}

.careers-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .no-vacancies {
    width: 90%;
    padding: 30px 15px;
    margin-top: -10px;
  }

.no-vacancies p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  margin-top: -15px;
}

}

/* Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.show {
  opacity: 1;
}

/* Slide from Left */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from Right */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slight Zoom */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.9s ease;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

.thank-you-container{
  margin-top: 150px !important;
  margin: 50px;
  background-color: #0B0146;
  text-align: center;
  padding: 40px;
  border-radius: 6px;
}

.thank-you-container h1{
  font-size: 50px;
  color: white;
}

.thank-you-container p{
  color: white;
  padding-right: 150px;
  padding-left: 150px;
}

.thank-footer{
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-container button{
  margin-top: 15px;
  background-color: #f59300;
  text-align: center;
  padding: 6px 12px;
  border-radius: 50px;
}

@media (max-width:768px) {

  .thank-you-container h1{
  font-size: 30px;
  color: white;
}

  .thank-you-container p{
  font-size: 13px;
  padding-right: 0;
  padding-left: 0;
}

.thank-you-container{
  margin-top: 100px !important;
  padding: 20px;
  margin: 20px;
}
}

.thanks{
width: 100%;
  bottom: 0px;
  position: fixed;
}