/* style.css */

body {
    /* font-family: Arial, sans-serif; */
    /* font-family: serif; */

    margin: 0;
    padding: 0;
    background-color: #fff;
    /* text-align:center; */


.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 10px;
}

.topnav {
    overflow: hidden;
    background-color: #0b0931;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.topnav .logo {
    margin-right: 20px;
}

#about {
    /* background: url('../images/about-bg.jpg') no-repeat top center; */
    background-size: cover;
    padding-top: 10px;
    /* padding-bottom: 150px; */
  }

.topnav .logo img.logo-image {
    height: 50px;
    vertical-align: middle;
}

.topnav a {
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    margin: 0 10px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    /* background-color: #91438c; */
    /* background-color: #fff; */
    color: white;
}

.get-in-touch-button {
    padding: 10px 20px;
    background-color: #568ac3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s;
}

.get-in-touch-button:hover {
    background-color: #0056b3;
}

.content {
    /* padding: 10px; */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #777;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
}

.banner-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgb(74 66 75 / 70%);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
    box-sizing: border-box;
}

/* Responsive adjustments */
/* For tablets and larger smartphones */
@media (max-width: 768px) {
    .banner-text {
        font-size: 24px;
        padding: 8px 16px;
    }
}

/* For smartphones */
@media (max-width: 480px) {
    .banner-text {
        font-size: 18px;
        padding: 6px 12px;
    }
}

/* For very small screens */
@media (max-width: 320px) {
    .banner-text {
        font-size: 16px;
        padding: 4px 8px;
    }
}

/* For very small screens */
@media (max-width: 786px) {
    .banner-text h3 {
        font-size: 14px;
        line-height: 14px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .banner-text h3 {
        font-size: 12px;
        line-height: 12px;
    }
}

/* For very small screens */
@media (max-width: 320px) {
    .banner-text h3 {
        font-size: 10px;
        line-height: 10px;
    }
}

.banner-text h3 {
    color: #ffff;
}

.footer {
    background-color: #022143;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.footer-section h3 {
    color: #fff;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #0056b3;
}

.footer-bottom {
    background-color: #01152b;
    color: #bbb;
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .topnav {
        flex-direction: column;
        align-items: flex-start;

        position: relative;
    }

    .topnav .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav a, .logo, .get-in-touch-button {
        float: none;
        display: block;
        text-align: left;
    }

    .get-in-touch-button {
        margin: 10px 0;
        position: static;
    }

    .banner-text {
        font-size: 24px;
    }

    .mv-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .mv-item img {
        margin-right: 20px;
        width: 20px;
        height: 20px;
        border-radius: 50%;

    }

    .team-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .team-member {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        width: calc(50% - 20px);
    }

    .team-member img {
        margin-right: 20px;
        border-radius: 50%;
    }

    .team-content {
        max-width: 200px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        padding: 10px 20px;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
    text-align: left;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    resize: vertical;
}

form input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

.form-section {
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.form-section h2 {
    margin-top: 0;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"] {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="message"] {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    resize: none;
}

input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Add styles for the job openings table */
.job-openings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.job-openings-table th, .job-openings-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.job-openings-table th {
    background-color: #f2f2f2;
    color: #333;
    text-align: left;
}

.job-openings-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.job-openings-table tr:hover {
    background-color: #f1f1f1;
}

.job-openings-table a {
    color: #007BFF;
    text-decoration: none;
}

.job-openings-table a:hover {
    text-decoration: underline;
}

.border-section {
    border: 2px solid #777;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
}

.border-section ul {
  list-style: none;
}

.border-section ul li:before {
  /* content: '✓'; */
  content: &#9989;
}

.border-section p {
    color: #312121;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0.2px;
    text-align: justify;
}

.border-section-50 {
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.border-section-30 {
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.service {
    
}

.service h3 {
    font-size: 20px;
}

.service p {
    color: #312121;
    font-size: 12px;
    line-height: 12px;
}

.value-image {
    width: 5%;
    height: 5%;
    margin-top:0%;
    border: 5px;
    border-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    object-fit: cover;
    display: block;    
}

.mv-thumb {
    background: #ffffff;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: crosshair;
    position: relative;
    top: 0;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    border: 1px solid #ccc;
    background-color: #f2f2ff;
    box-shadow: 10px 10px 5px #adc1cb;
}

.mv-image {
    width: 10%;
    height: 10%;
    margin-top:0%;
    border: 5px;
    border-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    object-fit: cover;
    display: block;
}

.mv-thumb h2 {
    text-align: center;  
}

.mv-thumb h3 {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;    
}

.mv-thumb h4 {
    line-height: 20px;
    font-size: 14px;
    text-transform: uppercase;    
}

.team-image {
    /* width: 100px; */
    width: 50%;
    height: 50%;
    display: flex;
    transform: translate(50%, -50%);
    margin-top:20%;
    border: 5px;
    border-color: #ffffff;
}

.outer {
    display: flex; /* Use flexbox */
}

.inner {
    flex: 1; /* Each inner div will take up equal space */
    margin: 0 10px; /* Optional margin between inner divs */
}

/*---------------------------------------
  Typorgraphy
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0px;
}

h1 {
    color: #ffffff;
    font-size: 45px;
    line-height: normal;
}

h2 {
    color: #2b2b2b;
    font-size: 35px;
    line-height: 30px;
    margin-top: 0px;

    /* border-bottom: 2px solid #b4c3d3; */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #282828;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

h4 {
    color: #353535;
    font-size: 20px;
}

p {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0.2px;
}

.bg-grey {
    background: #2b2b2b !important;
}

.white-color {
    color: #f0f0f0;
}

/*---------------------------------------
  General
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #a5c422;
    outline: none;
  }

/* a { */
  /* color: #757557; */
  /* -webkit-transition: 0.5s; */
  /* transition: 0.5s; */
  /* text-decoration: none !important; */
/* } */

/* a:hover, a:active, a:focus { */
  /* color: #000000; */
  /* outline: none; */
/* } */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  .section-title h2 {
    margin-top: 0;
  }

  .section-btn {
    background: #a5c422;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    padding: 14px 20px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .section-btn:hover {
    transform: translateY(-5px);
  }

  .text-align-right {
    text-align: right;
  }

  .text-align-center {
    text-align: center;
  }

  .border-top {
    border-top: 1px solid #f2f2f2;
    margin-top: 4em;
    padding-top: 2.5em;
  }

  .btn-gray {
    background: #393939;
  }

  .btn-blue {
    background: #4267b2;
  }

/*---------------------------------------
  product section
-----------------------------------------*/

#product {
  padding-top: 10px;
}

.product p {
    color: #312121;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0.2px;
    text-align:justify;
}


.product-image-thumb img {
  border-radius: 5px;
  margin-bottom: 22px;
}

.product-image-thumb .social-icon li a {
  background: #f0f0f0;
}

.product-thumb {
  padding: 32px 12px;
}

.product-thumb p {
  padding: 2px 0;
}

/*---------------------------------------
  Service section
-----------------------------------------*/

.service-thumb {
    background: #ffffff;
    border-radius: 5%;
    padding: 30px 20px;
    cursor: crosshair;
    position: relative;
    top: 0;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    border: 1px solid #BFBFBF;
    background-color: #f5f5f5;
    box-shadow: 10px 10px 5px #aaaaaa;
    margin-bottom: 5%;
    max-height: 600px;
    overflow: hidden;
}

/* Media Queries */
@media (max-width: 768px) {
    .service-thumb {
        height: 560px; 
    }
}

@media (max-width: 480px) {
    .service-thumb {
        height: 480px; 
    }
}

@media (max-width: 320px) {
    .service-thumb {
        height: 420px;
    }
}

.service-thumb:hover {
    background: #d9d5d5;
    top: -5px;
}

.service-thumb p {
    padding: 2px 0;
    color: #312121;
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0.2px;
    /* text-align: left; */
}

.service-thumb h2 {
    text-align: center;
}

.service-thumb h3 {
    text-align: center;
}

.service-thumb h4 {
  padding-bottom: 5px;
  text-align: center;
}

.service-thumb .fa {
  color: #7682cc;
  font-size: 62px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 22px;
}

.bg-grey .fa {
  color: #ffffff;
}

.img-holder {
    width: 50%;
    height: 50%;
    display: flex;
    transform: translate(50%, -50%);
    margin-top:20%;
    border: 5px;
    border-color: #ffffff;
}

.service-thumb:hover .img-holder {
    border: 0px solid #fff;
}

.bg-grey .img-holder {
    color: #ffffff;
}

  /*---------------------------------------
      HOME SLIDER
  -----------------------------------------*/

    #home h1 {
        color: #ffffff;
        padding-bottom: 10px;
        margin-top: 0;
    }

    #home h3 {
        color: #ffffff;
        font-size: 14px;
        font-weight: normal;
        line-height: inherit;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin: 0;
    }

    .slider .container {
        width: 100%;
    }

    .slider .owl-dots {
        position: absolute;
        top: 450px;
        width: 100%;
        justify-content: center;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 5px 7px;
        border: 2px solid #d9d9d9;
        background: transparent;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 30px;
    }

    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background-color: #ffffff;
        border-color: transparent;
    }

    .slider .caption {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        background-color: rgba(20,20,20,0.2);
        height: 100%;
        color: #fff;
        cursor: e-resize;
    }

    .slider .item {
        background-position: inherit;
        background-repeat: no-repeat;
        background-attachment: local;
        background-size: cover;
        /* object-fit: cover; */
        height: 500px;
        border-radius: 10px;
        border: 2px solid #777;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 1);

        position: relative;
        /* text-align: center; */
        margin-bottom: 10px;
    }

    .slider .item-first {
        background-image: url(../images/banner1.png);
    }

    .slider .item-second {
        background-image: url(../images/banner2.png);
    }

    .slider .item-third {
        background-image: url(../images/banner3.png);
    }

    .slider .item-fourth {
        background-image: url(../images/banner4.png);
    }

  /*---------------------------------------
      TEAM MEMBERS
  -----------------------------------------*/

  .team-thumb {
    background-color: #f9f9f9;
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .team-info {
    padding: 20px 30px 0 30px;
  }

  .team-contact-info {
    border-top: 1px solid #e9e9e9;
    padding-top: 1.2em;
    margin-top: 1.5em;
  }

  .team-contact-info .fa {
    margin-right: 5px;
    display: inline-block;
  }

  .team-contact-info p {
    margin-bottom: 2px;
  }

  .team-contact-info a {
    color: #757575;
  }

  .team-thumb .social-icon li {
    font-weight: 500;
  }

  .team-thumb .social-icon li a {
    background: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 2px 0 2px;
  }

  .team-thumb .social-icon {
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
    text-align: center;
    position: relative;
    top: 0;
  }

  .team-thumb:hover .social-icon {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translateY(0px);
    top: -22em;
  }

  /*---------------------------------------
      PROGRESS BAR
  -----------------------------------------*/

    .progress-container {
        background-color: #f5f5f5;
        width: 80%;
        border-radius: 15px;
        border-color: #fff;
        margin: 10px;
    }

    .progress {
        background-color: #007bff;
        color: white;
        padding: 10px;
        text-align: right;
        font-size: 16px;
        border-radius: 15px;
        box-sizing: border-box;
    }

    .progress.percentage {
        width: 44%;
        padding-bottom: 8%;
        font-size: 16px;
    }


    /* Responsive adjustments for progress text */
    @media (max-width: 768px) {
        .progress.percentage {
            padding-bottom: 6%;
            font-size: 14px;
            line-height: 6px;
        }
    }

    @media (max-width: 480px) {
        .progress.percentage {
            padding-bottom: 5%;
            font-size: 12px;
            line-height: 4px;
        }
    }

    @media (max-width: 320px) {
        .progress.percentage {
            padding-bottom: 4%;
            font-size: 10px;
            line-height: 2px;
        }
    }

  /*---------------------------------------
      GOOGLE MAP
  -----------------------------------------*/

    .map-container {
        width: 100%;
        height: 100%;
    }

    .google-maps {
        position: relative;
        padding-bottom: 75%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }
    .google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

    /*---------------------------------------
      TESTIMONIAL
    -----------------------------------------*/
    .testimonial-section {
      background-image: url('../images/coffe-shop-with-wooden-walls-unfocused.jpg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      position: relative;
    }

    .testimonial-section .featured-block {
      background-color: #254f39;
      border-radius: 20px;
      margin-bottom: 24px;
      padding: 30px;
    }

    .testimonial-section .featured-block h4,
    .testimonial-section .featured-block p {
      color: #ffffff;
    }

    /*---------------------------------------
      SECTION
    -----------------------------------------*/
    .section-padding {
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .section-bg {
        border: 2px solid #eee;
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        background-color: #f9f9f9;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .section-overlay {
        background-color: #b0d1f3;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        border: 2px solid #eee;
        border-radius: 10px;
        padding: 20px;
        margin-top: 0px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .testimonial-section .section-overlay {
      opacity: 0.85;
    }

    .section-overlay + .container {
      position: relative;
    }

    /*---------------------------------------
      FEATURED
    -----------------------------------------*/
    .featured-image {
      border-radius: 20px;
    }

    .featured-block {
      padding: 20px;
    }

    .featured-block h3 {
        text-align: center;
        color: #fff;
    }

    /*---------------------------------------
      AVATAR IMAGE - TESTIMONIAL
    -----------------------------------------*/
    .avatar-image {
      border-radius: 100px;
      width: 75%;
      height: 25%;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2%;
    }

    .avatar-image-main {
      border-radius: 25px;
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2%;
    }
    
    .avatar-image-product {
      width: 25%;
      height: 25%;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2%;
    }

