* {
    margin: 0;
    padding: 0;
}

.top-area {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    margin-top: 25px;
    
}

.header-left {
    cursor: pointer;
}

.header-left img {
    width: 200px;
    margin-top: 5px;
    margin-left: 60px !important;
}

.header-left-i {
    margin-top: 50px;
    margin-left: 70px;    
}

.social-icon {
  width: 38px;           
  height: 38px;            
  line-height: 38px;       
  text-align: center;      
  border-radius: 50%;      
  background-color: grey; 
  color: #fff;             
  display: inline-block;   
  font-size: 18px;         
  margin: 3px;            
  transition: 0.3s;        
}

.social-icon:hover {
  opacity: 0.5;            /* subtle hover effect */
  cursor: pointer;
}

.header-mid1, .header-mid2 {
    display: flex;
    margin-top: 10px;   
}

.header-mid1a i, .header-mid2a i {
    margin-top: 3px;
    font-size: 16px;
    color: #F5B02D;
}

.header-mid1b h1, .header-mid2b h1 {
    font-size: 16px;
    font-weight: bold;
    margin-left: 8px;
}

.header-mid2b p span {
    font-weight: bold;
    font-size: 16px;
}

.header-left i {
    margin-top: 45px;
    font-size: 38px;
}

/* Navbar Area */
.dropdown-menu {
    margin-top: 6px !important;
}
.navbar, .dropdown-menu {
    background: #192437 !important;
    padding: 6px; 
    border-radius: 0;
}

.nav-link:hover, .nav-link:focus {
    color: orange !important;
}

/* .nav-link:visited {
    color: #DF6526 !important;
} */


.dropdown-menu {
    margin-top: 8px !important;
}

.dropdown-item:hover {
    background: transparent;
}

.navbar-nav {
    margin-left: 100px;
}

.nav-item {
    margin-right: 20px;    
    font-size: 16px;
}

.nav-item a {
    color: #fff;
}

.nav-item a:hover {
    color: #F5B02D;
    
}

.main-link a {
    color: #fff;
    font-weight: bold !important;
}

.search-btn {
    border: 1px solid #fff;
    color: #fff;
}

/* About Acinek */

.acinek {
    background-image: url('rig-acinek.jpg');
    background-repeat: no-repeat;
    background-size: cover;    
    padding: 20px;    
    position: relative;
    z-index: 0;
    min-height: 400px;
}

.acinek::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.9);
    z-index: 1;
}

.acinek-about {
    position: relative;
    z-index: 6;
}

.acinek-about hr {
    width: 60px;
    border: 3px solid #FBAD1A;
    margin: 20px auto 0 auto;
    z-index: 6;
}

.acinek-about-2 {
    display: grid;
    grid-template-columns: 50% 50%;
}

.acinek-about-2a h3 {
    font-family: poppins, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

button.seemore {
    position: relative;
    overflow: hidden;
    color: #fff;    
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}


button.seemore::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #072D4D;
    z-index: -1;
    transition: left 0.4s ease;
}

button.seemore:hover::before {
    left: 0;
}

button.seemore:hover {
    color: #fff; 
    border: none;
}

.accordion {
    width: 100%;
    margin: auto;
}

.accordion li {
    list-style-type: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before {
    content: '+';
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #007BFF;
    border: 1px solid #007BFF; 
    color: #fff;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: 0.5px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + label::before {
    content: '-';
}

.accordion .content {
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion input[type="checkbox"]:checked + label + .content {
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion input[type="checkbox"]:checked + label::before {
    content: '-';
}

.acinek-projects {
    background-image: url('rig1.png');
    background-repeat: no-repeat;
    background-size: cover;    
    padding: 20px;    
    position: relative;
    z-index: 0;
    min-height: 600px;    
    /* padding: 10px; */
}

.acinek-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 34, 43, 0.9);
    z-index: 1;
}

.acinek-projects h1 {
    color: #fff;
    margin: 55px 0 0 60px;
    position: relative;
    z-index: 6;
}

.acinek-projects hr {
    width: 60px;
    border: 4px solid orange;
    margin-left: 65px;
    position: relative;
    z-index: 6;
}

.acinek-projects-inner {
    display: grid;
    grid-template-columns: 32% 33% 32%;
    /* margin: auto; */
    /* column-gap: 10px; */
}

.acinek-projects-inner1, .acinek-projects-inner2, .acinek-projects-inner3 {
    position: relative;
    z-index: 6;
}

.image-overlay-container {
  position: relative;
  width: 420px;
  height: 300px;
  overflow: hidden;
  border: 1px solid #fff;
  cursor: pointer;
}

.image-overlay-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;  
  transition: opacity 0.3s ease;
}

.image-overlay-container:hover .overlay {
  opacity: 1;
}

.overlay span {
  background: orange;
  width: 100% !important;
  height: 80px;
  resize: none;
  padding: 8px;
  border: none;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

.overlay-link {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff; 
  padding: 20px 18px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.overlay span {
    color: #fff;
}

.our-tradion {
    background: #F5B02D; 
    height:170px;   
}

.our-tradion h3 {
    color: #fff;
    padding: 50px;
    font-family: poppins, sans-serif;
}

.our-pride {
    display: grid;
    grid-template-columns: 70% 15% 15%;    
    background-image: url('refinery.jpg');
    background-repeat: no-repeat;
    background-size: cover;  
    background-position: center;
    background-attachment: scroll; 
    padding: 40px;    
    position: relative;
    z-index: 0;  
    min-height: 300px;      
}

.our-pride::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(71, 69, 69, 0.7);
    z-index: 1;
}

.our-pride1, .our-pride2, .our-pride3 {
    position: relative;
    z-index: 6;
}

.our-pride1 h1 {
    color: orange;
    font-family: sans-serif;
    font-weight: 800;
    margin: 70px 0 0 60px;
}

.our-pride1 h1 span {
    color: #fff;    
    font-weight: 700;
}

.our-pride2 h1, .our-pride3 h1 {
    color: orange;
    font-family: sans-serif;
    font-weight: 700;
    margin: 70px 0 0 0;
}

.our-pride2 h1 {
    margin-left: -80px;
}

.our-pride2 p, .our-pride3 p {
    color: #fff;
    font-family: poppins, sans-serif;
    font-weight: 500;    
}

.demacate {
    width: 100%;
    background: #fff;
    min-height: 60px;
}

.clientelle {
    width: 100%;
    background: #F2F2F2;
    min-height: 200px;
}

.clientelle-inner {
    padding: 20px;
}

.clientelle-inner h1 {
    margin-top: 20px;
    font-family: poppins, sans-serif;
    font-weight: 800;
    font-size: 32px;
}

.clientelle-inner hr {
    width: 60px;
    border: 4px solid orange;
    z-index: 6;
}

.clientelle-imgs {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    margin-bottom: 90px;
}

.clientelle-imgs1 img, .clientelle-imgs2 img, .clientelle-imgs3 img, .clientelle-imgs4 img {    
    width: 250px;
    height: 113px ;
}

.newsletter {
    background: #F5B02D;
    width: 100%;
    height: 120px;
    display: grid;
    grid-template-columns: 70% 30%;
}

.newsletter1 {
    padding: 50px 0 0 40px;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 18px;
}

.newsletter2 {
    padding-top: 60px;
}

.newsletter2 form {
    margin-left: -80px !important;
}

.newsletter2 form input[type="text"] {
    width: 300px;
    padding: 7px;    
}

.newsletter2 form button {
    margin-left: 5px;
    background: #072D4D;
    border: 1px solid #072D4D;
}

footer {    
    background: #072D4D;
    width: 100%;
    min-height: 400px;
    color: #fff;
    /* position: relative; */
}

.footer-main {
    display: grid;
    grid-template-columns:  33% 33% 33%;
}

.footer-inner2 h3, .footer-inner3 h3 {
    margin-left: 32px;
    font-size: 22px;
}

.footer-inner2 ul li, .footer-inner3 ul li {
    list-style-type: none;
}

.footer-inner2 ul li a, .footer-inner3 ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-inner2 ul li a:hover, .footer-inner3 ul li a:hover {    
    text-decoration: underline;
}

.footer-inner3 {
    margin-left: 30px;
}

.footer-end {
    width: 100%;
    background: #000;
    height: 55px;
}

.footer-end p {
    padding: 15px 0 0 40px;
}

.totop {
    position: fixed;
    bottom: 35px !important;
    right: 25px !important;
    background: #FBAD1A;
    padding: 12px 18px;
    cursor: pointer;
}

.totop i:hover {
    color: grey;
}

/* Contact Page CSS */
.contact-banner {
    width: auto;
    height: 250px;
    background-image: url('workers.jpg');
    background-repeat: no-repeat;    
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 69, 70, .8);
    z-index: 1;
}

.contact-banner h3 {
    text-align: center;
    padding: 100px;
    position: relative;
    z-index: 6;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.contact-banner-next {
    background: #fff;
    padding-top: 12px;
    text-align: center;
    font-size: 18px;
    font-family: poppins, sans-serif;
}

.contact-banner-next p {
    cursor: pointer;    
}

.contact-banner-next p a {
    text-decoration: none;
    color: #000;
}

.contact-banner-next p a:hover {
    text-decoration: underline;
}

.contact-banner-next p span {
    color: #FBAD1A;
    cursor: text;
}

.contact-banner-next hr {
    margin: auto;
    width: 60px;
    border: 3px solid #FBAD1A;
    margin-bottom: 20px;
}

.contact-message h3 {
    font-size: 34px;
    font-family: 'poppins', sans-serif;
    font-weight: 700;        
    color: #242424;
    margin: 80px 0 0 220px;
}

.contact-message p     {
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;        
    color: #797979;
    line-height: 31px;
    margin: 10px 220px 0 220px;
}

.contact-form {
    width: 100%;
    display: flex;
    margin: 30px 0 0 0;
}

.contact-form-left {
    margin: 10px 0 40px 220px;
    border-right: 1px solid rgb(222, 218, 218);
}

.contact-form-left {
    padding: 0 80px 0 0;
}

.contact-form-left form input[type=text] {
    font-size: 16px;
    font-weight: 700;
    width: 500px;
    background: none;
    height: 40px;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(222, 218, 218);
    margin-bottom: 20px;
}

.contact-form-left form input[type=text]:focus {
    border-bottom: 1px solid #2B8CD3;
}


.contact-form-left form textarea {
    font-size: 16px;
    font-weight: 500;
    width: 500px;
    background: none;    
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(222, 218, 218);
    margin-bottom: 20px;
    resize: none;
}

.contact-form-left form textarea:focus {
    border-bottom: 1px solid #2B8CD3;
}

.contact-form-left p {
    margin: 10px 0;
}

.contact-form-left p span {
    color: red;
    font-style: italic;
    font-weight: 700;
}

.contact-form-left button {
    width: 150px;
    font-size: 18px;
    background: #2B8CD3;
    color: #fff;
    padding: 11px;
    margin: 0 0 50px 0;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.contact-form-left button:hover {
    border: 2px solid #2B8CD3;
    background: #fff;
    color: #2B8CD3;
}

.contact-form-right {
    margin: 0 0 0 60px;
}

.contact-form-right h4 {
    margin-top: 20px;
    font-size: 20px;
    color: #2B8CD3;
}

.contact-form-right p {
    font-size: 16px;
}

@media (max-width: 858px) {
.contact-message h3 
    {
        font-size: 28px;
        margin: 60px 0 0 30px;
    }
    
    .contact-message p 
    {
        font-size: 17px;
        margin: 10px 30px 0 30px;
        text-align: justify;
    }
    
    .contact-form 
    {
        flex-wrap: wrap;
    }
    
    .contact-form-left 
    {
    margin: 10px 0 20px 30px;
    }
    
    .contact-form-left form input[type=text]
    {
        width: 300px;
    }
    
    .contact-form-left form textarea {
        width: 300px;
    }
    
    .contact-form-left button 
    {
    width: 190px;
    margin: 10px 0 20px 50px;
    }
    
    .contact-form-right 
    {
    margin: 0 0 40px 30px;
    }
}

/* About Page CSS */

.about-banner {
    width: auto;
    height: 250px;
    background-image: url('worker.jpg');
    background-repeat: no-repeat;    
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 67, 67, 0.9);
    z-index: 1;
}

.about-banner h3 {
    text-align: center;
    padding: 70px;
    position: relative;
    z-index: 6;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.about-banner h3:hover {
    margin-left: -20px;
}

.overview p {
    font-family: poppins, sans-serif;
    font-size: 17px;
    text-align: justify;
}

.overview p span {
    font-weight: bold;
}

.overview hr {
    border: 2px solid orange;
    width: 150px;
}

.visimiss {
    width: auto;
    min-height: 450px;
    background-image: url('workers.jpg');
    background-repeat: no-repeat;    
    background-size: cover;
    background-attachment: fixed;    
    position: relative;
    z-index: 0;
}

.visimiss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 39, 38, 0.9);
    z-index: 1;
}

.visimiss-inner {
    display: grid;
    grid-template-columns: 50% 50%;   
    column-gap: 60px; 
}

.visimiss1, .visimiss2 {
    position: relative;
    z-index: 6;
    color: #fff;
}

.visimiss1 h4, .visimiss2 h4 {
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-top: 85px;
    line-height: 54px;
} 
.visimiss1 hr, .visimiss2 hr {
    width: 120px;
    border: 2px solid orange;
}

.visimiss1 p, .visimiss2 p, .visimiss2 ul {
    font-family: "poppins", sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 24px;
}

.visimiss2 ul li {
    list-style-type: square;
}

.core-value {
    background: #EDEDED;
    min-height: 520px;
}

.core-value-inner h4 {
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding-top: 30px;
    line-height: 54px;
    color: orange;    
}

.core-value-inner hr {
    width: 80px;
    border: 2px solid orange;
}

button.accordion-button {
    font-weight: bold !important;
    font-family: poppins, sans-serif;
    font-size: 18px;
}

.accordion-item {
    border-bottom: 1px solid orange;
}

.accordion-body {
    font-family: poppins, sans-serif;
    font-size: 18px;
    background: #fff;
}

/* Careers Page CSS */
.career-banner {
    width: auto;
    height: 230px;
    background-image: url('worker.jpg');
    background-repeat: no-repeat;    
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    padding: 50px;
}

.career-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 10, 0.9);
    z-index: 1;
}

.career-banner h3 {
    text-align: center;
    /* padding: 70px; */
    position: relative;
    z-index: 6;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.career-banner p {
    text-align: center;
    position: relative;
    color: #fff;
    z-index: 6;
    padding: 0 10px;
}

.career-main {
    width: auto;
}

.career-main-inner {
    display: grid;
    grid-template-columns: 50% 50%;
}

.career-main-inner1 img {
    width: 400px;
    height: 550px;
    margin-top: -55px;
    border: 3px solid orange;
    box-shadow: 5px 3px 5px rgb(212, 212, 212);
    /* border-bottom-right-radius: 60px;
    border-top-left-radius: 60px; */
}

.career-main-inner2 p {
    font-size: 18px;
    font-family: poppins, sans-serif;
}

.career-main-inner2 button {
    background-color: orange;
    border: none;
}


/* CSS FOR BOARD.PHP PAGE */

.board {
    padding: 10px;
}

.boardimgx {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

/* Carousel CSS Code */

/* --- UPDATED CAROUSEL CSS CODE --- */

/* CAROUSEL STRUCTURE */
.agilek-carousel-container {
    position: relative;
    max-width: 100%; 
    margin: auto;
    overflow: hidden; 
    height: 450px; /* Fixed height as requested */
}

.agilek-carousel-img {
    width: 100%;
    height: 450px; 
    object-fit: cover; 
    vertical-align: middle;
}

.agilek-carousel-slide {
    display: none; /* All slides hidden by default, shown by JavaScript */
}

/* IMAGE TEXT OVERLAY */
.agilek-carousel-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); 
    box-sizing: border-box;
}

.agilek-carousel-text h2 {
    margin: 0 0 10px 0;
    font-size: 2em;
}

.agilek-carousel-text p {
    margin: 0;
    font-size: 1.2em;
}

/* NAVIGATION BUTTONS (PREV/NEXT) */
.agilek-prev, .agilek-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
}

.agilek-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.agilek-prev:hover, .agilek-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* NAVIGATION DOTS */
.agilek-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .agilek-dot:hover { /* Keep .active for the JS, but use .agilek-dot:hover */
    background-color: #717171;
}

/* FADE ANIMATION */
/* .fade {
    animation-name: fade;
    animation-duration: 1.5s;
} */

/* @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
} */

