/***************************************************
Theme Name:   Nexera
Theme URL:    https://nexera.com/
Description:  2024 Site
Author:       Nexera
Author URI:   https://nexera.com/
Version:      1.0
**************************************************/

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

body {
    font-family: Arial, sans-serif;
}
img{
    max-width: 100%;
}
.nexera-container {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center all children */
    align-items: center; /* Center vertically */
    width: 100%; /* Full width */
    max-width: 1200px; /* Max width to prevent overflow */
    margin: 0 auto; /* Center the container */
    padding: 0 15px; /* Add some padding for spacing */
}
:root {
    --color-primary-light-blue: #3AB5FC;
    --color-primary-dark-blue: #00517B;
    --color-primary-light-blue-10: #DBEDFF;
    --color-neutral-black: #191715;
    --color-neutral-lightest-gray: #F5F7FA;
    --color-secondary-blue: #0067AB;
    --color-neutral-orange: #F69F1A;
    --color-neutral-white: #FFFFFF;
    --font-family: 'Inter', sans-serif;

    /* Headlines */
    --headline1-desktop: 28px;
    --headline1-mobile: 64px;
}
.primary-light-blue {
    color: var(--color-primary-light-blue);
}
.orange {
    color: var(--color-neutral-orange);
}

a{ display: inline-block;}

body {
    background-color: var(--color-neutral-lightest-gray);
    color: var(--color-neutral-black);
    font-family: var(--font-family);
}

header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.primary-blue {
    color: var(--color-primary-dark-blue);
    
}
bg-primary-blue{
    background-color: var(--color-primary-dark-blue);
}

.white-s{
    color: var(--color-neutral-white);
}
header.scrolled {
    background-color: rgb(255, 255, 255); /* Adjust opacity here */
}


a{ text-decoration: none;}


::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}
.logo {
    height: auto;
    max-width: 100%;
}

.flex-column {
    flex-direction: column; /* Stack children vertically */
}
.ham-burger {
    border: none;
    background: none;
    cursor: pointer;
}
.nav-container {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.nav-container a {
    position: relative;
    padding: 14px 16px;
    color: var(--color-neutral-black);
    text-decoration: none;
    font-weight: bold;
}

.nav-container li.current-menu-item a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 130%;
    height: 4px;
    background-color: var(--color-primary-light-blue);
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .nav-container {
        display: none;
    }

    .ham-burger-container {
        display: flex; /* Show hamburger menu on mobile/tablet */
    }
}

footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}


.ham-burger-container {
    display: none;
}

.ham-burger {
    border: none;
    background: none;
    cursor: pointer;
}

/* Base styles for hamburger container */
.ham-burger-container {
    display: none; /* Hidden by default */
    position: relative;
}

/* Dropdown menu styles */
.dropdown-menu {
    display: none; /* Hidden until toggled */
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 100%; /* Position below the hamburger button */
    right: 0;
    width: 150px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Links inside the dropdown */
.dropdown-menu a {
    padding: 10px;
    color: var(--color-neutral-black);
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #555;
}

/* Display hamburger on small screens */
@media (max-width: 768px) {
    .ham-burger-container {
        display: flex; /* Show on mobile/tablet */
    }
}
.workday {
    color: var(--color-neutral-orange);
}


.hero {
    display: grid;
    grid-template-columns: 1fr; /* One column layout */
    min-height: 600px;
    position: relative; /* For positioning elements */
}



.container {
    display: contents; /* Use contents to allow grid items to flow */
}

.hero-image {
    grid-column: 1 / -1; /* Make the image span across the entire grid */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Cover without distortion */
    position: absolute; /* Position absolute to stack under the text */
    top: 0;
    left: 0;
    z-index: 1; /* Behind the text */
}
.bg-cover-img{
    width: 100%;

}
.flex-start{
    align-items: self-start;
}

.hero-content {
    display: flex; /* Flexbox to center align text */
   
    position: relative; /* To stack on top of the image */
    z-index: 2; /* On top of the image */
    color: white; /* Adjust text color based on your image */
    text-align: center; /* Center align the text */
    flex-direction: column;
    align-items: self-start;
}
.hero-text {
    text-align: start  ;
}
/* Adjust text for mobile */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }
    .wrap {
        flex-wrap : wrap;
    }
}

.stretch {
    align-content: stretch ;
}
.align-items-center {
    text-align: center;
}
.hero-button {
    background-color: var(--color-neutral-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    width: 200px;
    height: 50px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
}


.what-we-do {
    padding: 40px 15px 60px; /* Add padding for spacing */
    background-color: #f9f9f9; /* Optional: Set a background color */
}


.what-we-do-heading {
    margin-bottom: 20px; /* Space between heading and paragraph */
    font-size: 2rem; /* Adjust font size as needed */
    color: var(--color-secondary-blue); /* Use your color variable */
}

.nexera-container p {
    font-size: 1rem; /* Adjust font size as needed */
    line-height: 1.5; /* Improve readability */
    color: #333; /* Adjust text color */
}


/* Default card style */
.nexara-card {
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    padding: 20px;
    border-bottom-right-radius: 25px;
}

/* Color variations */
.nexara-card.blue {
    background-color: var(--color-secondary-blue); /* First color */
}

.nexara-card.orange {
    background-color: var(--color-neutral-orange); /* Second color */
}


.why-nexera{
    background-color: var(--color-primary-light-blue-10)
}

.why-nexera-heading-line {
  padding: 20px;
   
 }
 

 .blue-border {
    position: relative;
    padding-left: 25px; /* Adjust as needed */
    margin-left: 5px; /* Adjust as needed */
}

.blue-border::before {
    content: "";
    position: absolute;
    top: 5%; /* Start 5% from the top to achieve 90% length */
    left: 0;
    width: 5px; /* Border width */
    height: 85%; /* Length of the border */
    background-color: var(--color-primary-light-blue); /* Border color */
}

.join-us-button {
    background-color: var(--color-neutral-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 11px;
    cursor: pointer;
    margin-top: 20px;
    width: 160px;
    height: 50px;
    text-align: center;
    line-height: 30px;
}

.nexara-contact {
    position: relative;
    background-size: cover; /* Ensure the image covers the section */
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px; /* Adjust padding as necessary */
    color: #fff; /* Optional: Adjust text color for better contrast */
}

.nexara-contact-img {
    display: none; /* Hide the img element */
}



.nexera-contact-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.contact-us-button {
    background-color: var(--color-neutral-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    width: 150px;
    font-family: var(--font-family);
    /* height: 59px; */
}
.btn-submit{
    background-color: var(--color-neutral-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.nexa-label{
    padding-bottom: 5px;
    padding-top: 5px;
}


.footer-logo {
    width: 150px;
    height: auto;
}

.footer-text-section {
    flex: 2;
    text-align: left;
    font-size: 0.9rem;
    color: #333;
    padding: 10px;
}

.footer-text-section p {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.5;
}

.footer-links-section {
    flex: 1;
    text-align: right;
    padding: 10px;
}

.footer-links-section span {
    display: block;
    font-weight: bold;
    color: #0072ce;
    margin-bottom: 5px;
}

.social-icons a {
    margin: 0 5px;
    text-decoration: none;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo-section, .footer-text-section, .footer-links-section {
        text-align: center;
    }
}


.card-img-join {
   width: auto;
   height: 500px;
    /* height: 800px; */
}

.card-img {
   height: 48px;
   width: 48px;
}

.card-hr {
    border: none;
    height: 2px;
    background-color: var(--color-neutral-white); /* Adjust color as needed */
    margin: 10px 0;
}
.card-heading {
   color: var(--color-neutral-white);
   font-size: 20px;
}
.card-button {
   color: var(--color-neutral-white);
   background-color: var(--color-secondary-blue);
   border: none;
   width: 40px;
}


.card-content {
    padding: 20px;
}



.card-heading-button-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between heading and button */
}

.card-heading {
    font-size: 1.25rem; /* Adjust font size as needed */
}

.card-button {
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
}

.card-button .arrow {
    width: 24px; /* Adjust size of arrow as needed */
    height: auto;
}

.space-between{
    justify-content: space-between;
}



@media (max-width: 768px) {
    .nexera-card {
        width: 100%; /* Full width on mobile */
        display: block; /* Ensure it takes a new line */
        margin-top: 20px; /* Add space above if needed */
    }

    .why-nexera-heading-line {
        width: 100%; /* Ensure full width */
    }

    .flex-wrap{
        flex-wrap: wrap;
    }
    .card-img-join{
        width: 300px;
    }
    
}

/* @media ( min-width:800  max-width: 1600px) {
   
} */

.join-us-img{
    width: 400px;
}


.bg-blue-with-border{
    background-color: var(--color-primary-light-blue-10);
    border: 1px solid var(--color-primary-light-blue-10);
    border-radius: 10px;
    padding: 20px;
}

.card-height{
    height: 500px;
}

@media (max-width: 768px) {
   
}


.nexara-card {
    position: relative; /* This allows child elements to be positioned relative to the card */
    overflow: hidden; /* Optional: prevents overflowing content from being visible */
}

.card-img-vector {
    max-width: none; /* Allow the icon to take full width */

    height: auto; /* Maintain aspect ratio */
}

.card-content {
    position: relative; /* Ensures that content sits above the background image */
    padding-bottom: 20px; /* Add padding to ensure text does not overlap with the icon */
}


.who-we-are .primary-blue h4 {

    margin: 0; /* Reset margin */
    line-height: 1.5; /* Optional: Set line height for readability */
}

.who-we-are .primary-blue {
    text-align: center; /* Center content */
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center items in the flex container */
}

.card-img-join {
    width: 100%; /* Make the image take full width of its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves like a block element */
    margin: 0; /* Remove any margins */
    padding: 0; /* Remove any paddings */
}
.square-dot {
    display: inline-block; /* Makes the span behave like a block element */
    width: 10px; /* Set the width of the square */
    height: 10px; /* Set the height of the square */
    background-color: #F69F1A; /* Set the background color */
    margin-right: 8px; /* Space between the dot and the text */
    vertical-align: middle; /* Align the dot with the text */
}


.full-width-img {
    width: 100%; /* Make the image span the full width of the section */
    height: 100%; /* Make the image span the full height of the section */
    object-fit: cover; /* Ensure the image covers the entire section */
    display: block; /* Remove any inline spacing */
}


.full-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensures no extra spacing */
}


.styled-input {
    width: 100%;
    height: 42px;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    padding-right: 14px;
    padding-left: 14px;
    gap: 10px; /* Applies space between input fields */
    box-sizing: border-box; /* Ensures padding does not affect width */
}

.styled-textarea {
    width: 100%;
    height: 100px; /* Fixed height */
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    padding: 16px;
    box-sizing: border-box; /* Ensures padding does not affect width */
    resize: none; /* Prevents resizing */
}


.btn-submit {
    margin-top: 12px; /* Adjust as needed */
    /* Add further button styles if needed */
}

.section-container {
    position: relative;
    height: 100%; /* Or a specific height */
  }
  
  .section-image {
    position: absolute;
    left: 55%;
    height: 100%; /* Matches the section height */
    object-fit: cover; /* Ensures the image scales properly */
  }

  .why-nexera .nexera-container { position: relative;}
  .why-nexera .section-image{ left: auto; right: 0;}
  
  .join-us-heading {
    color: var(--color-secondary-blue);
  }

  .join-us-text {
    line-height: 20px;
    font-size: 16px;
    font-weight: 480;
  }
  .cards-sec{ display: block;}
  .what-we-do .nexara-card{ margin: 0; height: 100%;}
  .what-we-do aside{ padding-top: 30px;}
  .inner-banner{ background-repeat: no-repeat; background-position: center; min-height: 400px; display: flex; align-items: flex-end; padding-bottom: 30px;}
  .nav-container .menu{ display: flex; list-style: none; margin: 0;}
  .what-we-do aside:nth-child(2n) .nexara-card{ background: var(--color-neutral-orange);}
  .cards-sec .card-img-container{ padding: 0 20px;}
  .inner-icons .card-heading{ margin:0 0 15px;}
  .inner-icons .card-content p{ color: #fff;}
  .quote-sec{ padding-top: 60px; margin-bottom: 0 !important;}
  .blue-bar{ padding: 40px 0px;}
  .blue-bar p{ border-top-right-radius: 1px; margin: 27px 20px; text-align: center;}
  .form-sec{ padding: 50px 0;}
  .btn-submit{ width: 100%;}
  .form-sec p label{ font-weight: 700; margin-top: 15px;}
  .form-sec p br{ display: none;}
  .inner-banner h1{ font-weight: 700;}
  .hm-top-text{ font-weight: 600; max-width: 830px; margin: auto; margin-bottom: auto; text-align: center;}

  @media(max-width: 1279px){
   section.careers-section.p-5 { padding: 20px 20px !important;}
   section.careers-section.p-5 h1{ padding-left: 0 !important;}
   .img-cont-sec{ padding: 0 20px;}
   .blue-bar{ padding: 40px 20px;}
   .form-sec{ padding: 50px 10px;}
  }

  @media(max-width: 991px){
   .why-nexera .section-image{ display: none;}
   .inner-banner{ min-height: 290px;}
   .join-us-image{ padding-bottom: 30px;}
   .who-we-are .primary-blue h4{ font-size: 16px;}
   .form-sec .nexera-container{ display: block; }
   .nav-container a{ padding: 14px 10px;}
   .dropdown-menu a:hover{ background: none;}
  }
  @media(max-width: 768px){
  .ham-burger-container{ position: static;}
  .dropdown-menu{ width: 100%; background: var(--color-secondary-blue);}
  .ham-burger-container ul li{ list-style: none;}
  .ham-burger-container ul li a{ color: #fff; font-weight: 600;}
  }
  @media(max-width: 767px){
    .why-nexera.p-5{ padding: 10px 15px 50px !important;}
    .join-us.p-5{ padding: 40px 15px !important;}
    .join-us-img{ width: 100%;}
    .join-us-heading{ padding-top: 20px;}
    .nexara-contact{ padding: 20px 0 0;background-position: 0 0;text-align: center;}
    .hero-button{ margin:auto; margin-top: 10px;}
    .hero{ min-height: 300px; text-align: center;}
    .hero-content{ display: block; margin:auto; }
    .why-nexera-heading-line{ padding: 10px 0 0;}
	.home .why-nexera-heading-line{ padding: 10px 0 0 30px;}
    .why-nexera .p-5{ padding: 35px 25px !important;}
    .why-nexera .square-list{ display: block;}
    .rights{ padding-top: 15px;}
    .inner-icons .card-img-container{ padding-left: 18px;}
	#hamburger-button{ font-size: 30px;}
  }