/* Import Adobe Fonts */
@import url("https://use.typekit.net/beg8zuw.css");

/* Global Font Setup */
html,
body {
	font-family: 'Aptos';
	font-weight: 400;
	color: #333;
	background-color: #111D13 !important;
}

.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .site-main .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content, .ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description, .ast-separate-container .comments-area {
    background-color: #111D13 !important;
    padding: 0px;
}

/* ========================
   CONTAINER
======================== */
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 0px;
}

/* ========================
   HEADER STYLES
======================== */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(to right, #FFFEFB42, #FFFEFB42);
    z-index: 9999;
    margin-bottom: -100px;
}

.site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6px 0px;
}

.site-header .nav-menu {
	display: flex;
	gap: 20px;
}

.site-header .nav-menu li {
	list-style: none;
	position: relative;
}

.site-header .nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    transition: color 0.3s;
}

.site-header .nav-menu a:hover {
	color: #ffde59;
}

/* Dropdown */
.mobile-menu .menu li.menu-item-has-children > a {
    position: relative;
    padding-right: 30px; /* space for arrow */
  }

  .mobile-menu .menu li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: url("https://wordpress-880076-5728743.cloudwaysapps.com/wp-content/uploads/2025/08/arrow_back_ios_new-1.svg") no-repeat center;
    background-size: contain;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
  }

  /* Rotate arrow when submenu is open */
  .mobile-menu .menu li.open > a:after {
    transform: translateY(-50%) rotate(90deg);
  }

.site-header .nav-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 8px;
    margin-top: 0px;
    background: #fff;
    padding: 2px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.site-header .nav-menu li:hover>ul {
	display: block;
}

.site-header .nav-menu li ul li {
	padding: 8px 20px;
}

.site-header .nav-menu li ul li a {
	display: block;
	color: #333;
}
#primary {
    margin: 0em 0;
}

.logo-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.logo-center img {
    width: 22%;
}

/* General Menu */
.menu {
	display: flex;
	gap: 20px;
	margin: auto;
}


/* Responsive Header */
@media(max-width: 992px) {

	.nav-menu.left-menu,
	.nav-menu.right-menu {
		display: none;
	}
}

/* hide mobile menu on desktop */
.mobile-menu {
  display: none;
}

.mobile-toggle  {
  display: none;
}
@media (max-width: 991px) {
  .left-menu,
  .right-menu {
    display: none; /* hide desktop menus */
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    color: #fff;
    overflow-y: auto;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu.active {
    left: 0;
  }

      .mobile-menu .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: block;
    }

.mobile-menu .menu li a {
        display: block;
        padding: 8px 0px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid #ffffff38;
    }
    .mobile-menu .sub-menu {
        display: none;
        padding-left: 0px;
        margin: 0px;
    }

    .mobile-menu .menu li.open > .sub-menu {
        display: block;
        list-style-type: none;
    }

}


/* ========================
   FOOTER STYLES
======================== */
.site-footer {
    background: #000000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    align-items: start;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo img {
    max-width: 80px;
    margin-bottom: 11px;
}

.footer-description {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #FFFFFF;
    max-width: 100%;
    text-align: left;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

img.social-icons {
    width: 30px;
    margin-bottom: 0px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    margin: 0px;
}

.footer-column ul li {
	margin-bottom: 2px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #fff;
}

.footer-contact {
	text-align: right;
}

.footer-contact h4 {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
}

.contact-info {
	font-size: 13px;
	color: #ccc;
	line-height: 1.6;
}

.contact-info div {
	margin-bottom: 8px;
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 30px;
	padding-top: 20px;
	text-align: center;
}

.footer-copy {
    font-size: 16px;
    color: #8A8A8A;
    font-family: 'aptos-display';
    margin-bottom: 0px;
}

/* Responsive Footer */
@media (max-width: 991px) {
	.header-inner {
		justify-content: space-between;
	}

	.nav-menu {
		display: none;
	}

	.mobile-toggle {
		display: block;
	}

	    .logo-center {
        position: static;
        transform: none;
        order: -1;
        width: 20%;
    }

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	    .footer-logo {
        align-items: baseline;
    }

	.footer-contact {
		text-align: center;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.contact-box .elementor-icon-box-icon {
    margin-inline: 0 !important;
}
@media (max-width: 768px) {
	
	p.terms {
    margin-top: -28px;
    margin-left: 0px;
    color: white;
    font-size: 14px;
}
	
	
    .dropdown-button {
        background: #0C3F1A;
        color: white;
        border: none;
        padding: 10px 10px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        height: 40px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        display: flex
;
        align-items: center;
        gap: 6px;
    }
	
	.logo-center img {
    width: 100%;
}



	.slider-bar-mb .elementor-icon-box-description {
    display: none;
}
	
.controls {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    gap: 5px;
    z-index: 10;
}
	
	.map-image {
    width: 100%;
    height: 212px !important;
    object-fit: fill;
    /* opacity: 0.9; */
    filter: brightness(0.8) contrast(1.2);
    margin-top: 3rem;
}
	
	.dropdown-item {
    padding: 4px 10px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
	
	.dropdown-content {
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    background: #0C3F1A;
    border-radius: 3px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
	.container {
		padding: 0 20px;
	}

	.site-header {
		padding: 12px 0;
	}

	.logo-center img {
		max-height: 40px;
	}

    .mobile-toggle {
        background-color: #f0f8ff00 !important;
        padding: 0px !important;
    }
	.content-section {
		padding: 25px;
	}
	img.mobile-hmb {
    width: 32px;
}

	.site-header .header-inner {
    padding: 0px 0px;
}
	.content-section h2 {
		font-size: 24px;
	}

	.footer-links {
        grid-template-columns: 2fr 2fr;
        text-align: left;
    }

	.footer-content {
		gap: 25px;
	}
}





.cold-storage .call-descriptions {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Show with animation */
.cold-storage:hover .call-descriptions {
  opacity: 1;
  max-height: 500px; /* adjust if content taller */
  transform: translateY(0);
}

.fresh-icons {
    height: 190px;
}

.technology-carosal .swiper-pagination-progressbar {
    top: 107% !important;
    width: 30% !important;
    left: 40% !important;
}
.technology-carosal .swiper-pagination-progressbar-fill {
    background-color: #FBFBFB !important;
    height: 8px !important;
    border-radius: 50px;
    margin-left: 20px;
    margin-top: -2px;
}

img.arrow-paginations {
    width: 40px;
}

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}
.top-box:before {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    top: -3px;
    left: -32px;
    background-image: url(https://wordpress-880076-5728743.cloudwaysapps.com/wp-content/uploads/2025/08/SVG.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.jd-descriptions {
  display: none; /* ensure it's hidden initially */
  margin-top: 10px;
  transition: all 0.3s ease;
}

.engineer-skill .elementor-post-info__terms-list-item {
    background-color: #FAE3C6;
    padding: 2px 10px;
    border-radius: 50px;
	margin-bottom: 5px;
}

.jd-content {
  cursor: pointer;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.jd-content:hover {
  background: #f0f0f0;
}

.custom-contact-form p {
    margin-bottom: 20px;
}

textarea {
    padding-left: 3px;
    width: 100%;
    height: 100px !important;
}

p.terms {
    margin-top: -26px;
    margin-left: 34px;
    color: white;
}

.terms a {
    color: white;
    font-weight: 600;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0em;
}

.label-points .swiper-pagination-bullet {
    width: 26px !important;
    border-radius: 0px;
    height: 8px !important;
}

input[type="text"], input[type="number"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select {
    height: 48px;
}

label, legend {
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}


@media (max-width: 921px) {
    #primary, #secondary {
        padding: 0 0;
        margin: 0;
    }
}


/* Blog Details Typography - only single blog posts */
.single-post .blog-details {
  --h-margin: 0.75em 0 0.4em;
}

/* Headings H1–H6 inside blog details */
.single-post .blog-details h1,
.single-post .blog-details h2,
.single-post .blog-details h3,
.single-post .blog-details h4,
.single-post .blog-details h5,
.single-post .blog-details h6 {
  color: #fff; /* White text */
  margin: var(--h-margin);
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive scaling */
.single-post .blog-details h1 { font-size: clamp(28px, 4vw, 42px); }
.single-post .blog-details h2 { font-size: clamp(24px, 3.2vw, 36px); }
.single-post .blog-details h3 { font-size: clamp(20px, 2.6vw, 30px); }
.single-post .blog-details h4 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; }
.single-post .blog-details h5 { font-size: clamp(16px, 1.9vw, 22px); font-weight: 600; }
.single-post .blog-details h6 { font-size: clamp(14px, 1.6vw, 18px); font-weight: 600; }

/* Remove top margin if heading is the first element */
.single-post .blog-details :is(h1,h2,h3,h4,h5,h6):first-child {
  margin-top: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background-color: white;
}