/**
*
* ---------------------------------------------------------------------------
*
* Template : Blue - A One-Page HTML Portfolio/Business Template
* Author : Muhammad Morshd
* Author URI : http://morsheds.com
*
* --------------------------------------------------------------------------- 
*
*/

/* =================================== */
/*	Basic Style 
/* =================================== */

body {
    background-color: #fff;
    font-family: 'Prompt', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #818181;
}

figure,
p,
address {
    margin: 0;
}

p {
    line-height: 25px;
}

iframe {
    border: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a,
a:hover,
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Prompt', sans-serif;
    color: #252525;
}

main>section {
    padding: 70px 0;
}

.btn {
    border-radius: 0;
    border: 0;
    position: relative;
    text-transform: uppercase;
}

.btn-blue {
    background-color: rgba(0, 158, 227, 0.78);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
}

.btn-orange {
    background-color: #F5A623;
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
    font-weight: 600;
}

.btn-border-orange {
    border: 2px solid #F5A623;
    color: #F5A623;
    padding: 12px 35px;
}

.btn-border-orange:hover {
    background-color: #F5A623;
    color: #fff;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

.bg-blue {
    background-color: #009EE3;
}

.bg-orange {
    background-color: #F5A623;
}

.text-orange {
    color: #F5A623;
}

/* Sweep To Right */
.btn-effect {
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    display: inline-block;

    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    transition-property: color;

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;

    -moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;

    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);

    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;

    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;

    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-effect:hover,
.btn-effect:focus,
.btn-effect:active {
    color: #F5A623;
}

.btn-effect:hover:before,
.btn-effect:focus:before,
.btn-effect:active:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
    font-size: 36px;
    margin: 0 0 30px;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}

.sec-title.white h2 {
    color: #fff;
}

.sec-title h2:after {
    border-bottom: 3px solid #F5A623;
    content: "";
    display: block;
    left: 45%;
    bottom: 0;
    position: absolute;
    width: 115px;
}

.sec-title.white h2:after {
    border-bottom: 1px solid #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}


/**
/*	Preloader
/* ==========================================*/

#preloader {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/*Battery*/
.loder-box {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 1px;
    height: 100px;
    left: 50%;
    margin-left: -64px;
    margin-top: -50px;
    position: absolute;
    top: 50%;
    width: 128px;
}

.battery {
    width: 60px;
    height: 25px;
    top: 35%;
    border: 1px #2E2E2E solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 5s linear infinite;
    -moz-animation: charge 5s linear infinite;
    animation: charge 5s linear infinite;
    margin: 0 auto;
}

.battery:after {
    background-color: #2E2E2E;
    border-radius: 0 1px 1px 0;
    content: "";
    height: 10px;
    position: absolute;
    right: -5px;
    top: 7px;
    width: 3px;
}

@-webkit-keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #2E2E2E;
    }

    100% {
        box-shadow: inset 60px 0px 0px #2E2E2E;
    }
}

@-moz-keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #2E2E2E;
    }

    100% {
        box-shadow: inset 60px 0px 0px #2E2E2E;
    }
}

@keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px #2E2E2E;
    }

    100% {
        box-shadow: inset 60px 0px 0px #2E2E2E;
    }
}





/**
/*	Header
/* ==========================================*/

#navigation {
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;

    background-color: rgba(20, 20, 20, .85);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
}

#navigation.animated-header {
    padding: 10px 0;
}

/* Logo in navbar */
a.logo-brand {
    padding: 5px 15px;
    display: inline-block;
}

.nav-logo {
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

h1.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.navbar-inverse .navbar-nav>li>a {
    color: #fff;
    font-size: 14px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.navbar-inverse .navbar-nav>li>a:hover {
    color: #F5A623;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    color: #F5A623;
    background-color: transparent;
}


/*=================================================================
	Home Slider
==================================================================*/


#home-slider {
    position: relative;
    padding: 0;
}

.sl-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sl-slider {
    position: absolute;
    top: 0;
    left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sl-slide {
    z-index: 1;
}

.slide-caption {
    color: #fff;
    display: table;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 11;
}

.slide-caption .caption-content {
    vertical-align: middle;
    display: table-cell;
}

.caption-content h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.caption-content>span {
    display: block;
    font-size: 24px;
    margin-bottom: 45px;
    text-transform: capitalize;
}

.caption-content p {
    font-size: 29px;
    margin-bottom: 65px;
}

/* The duplicate parts/slices */

.sl-content-slice {
    overflow: hidden;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
    width: 100%;
    height: 50%;
    left: -200px;
    -webkit-transform: translateY(0%) scale(1);
    -moz-transform: translateY(0%) scale(1);
    -o-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
    top: -200px;
    padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
    top: 50%;
    padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
    width: 50%;
    height: 100%;
    top: -200px;
    -webkit-transform: translateX(0%) scale(1);
    -moz-transform: translateX(0%) scale(1);
    -o-transform: translateX(0%) scale(1);
    -ms-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
    left: -200px;
    padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
    left: 50%;
    padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
    position: absolute;
}

.sl-content {
    width: 100%;
    height: 100%;
}

/* Default styles for background colors

.btn-effect:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    content: "";
    position: absolute;
    z-index: -1;

    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

.btn-effect:hover,
.btn-effect:active {
    color: #0e83cd;
}

.btn-effect:hover:after,
.btn-effect:active:after {
    width: 100%;
} */


/* Project laughtbox setup */

.fancybox-item.fancybox-close {
    background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
    height: 50px;
    right: 0;
    top: 0;
    width: 50px;
}

.fancybox-next span {
    background: url("../img/right.png") no-repeat scroll center center #009ee3;
    height: 50px;
    width: 50px;
    right: 0;
}

.fancybox-prev span {
    background: url("../img/left.png") no-repeat scroll center center #009ee3;
    height: 50px;
    width: 50px;
    left: 0;
}

/*=================================================================
	About
==================================================================*/

#about {
    background: linear-gradient(135deg, #11141c 0%, #1e2430 100%);
    color: #cfd6e4;
    padding: 80px 0;
    border-bottom: 2px solid rgba(245, 166, 35, 0.2);
}

#about h3 {
    color: #F5A623;
    margin: 0 0 25px;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#about h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #F5A623;
    margin-top: 10px;
}

#about .welcome-block h3 {
    margin: 0 0 40px;
}

#about .welcome-block img {
    border: 3px solid rgba(245, 166, 35, 0.5);
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-right: 0;
    max-width: 100px;
    float: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .welcome-block img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.3);
}

#about .message-body {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
}

#about .message-body p {
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    color: #cfd6e4;
    text-align: justify;
}

#about .recent-works .work-item p {
    font-size: 15px;
    line-height: 26px;
    color: #cfd6e4;
    margin: 0;
}

.owl-buttons {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: inline-block;
    float: right;
    padding: 6px 12px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.owl-buttons:hover {
    border-color: #F5A623;
    background: rgba(245, 166, 35, 0.1);
}

.owl-buttons>div {
    display: inline-block;
    padding: 0 8px;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s ease;
}

.owl-buttons>div:hover {
    color: #F5A623;
}

@media (max-width: 767px) {
    #about .message-body {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    #about .message-body p {
        text-align: center;
    }
}

.welcome-message {
    padding: 0 50px;
}

.welcome-message img {
    display: block;
    height: auto;
    max-width: 100px;
    float: left;
}

.welcome-message p {
    font-size: 13px;
    margin-left: 135px;
}

/*=================================================================
	Services
==================================================================*/

.service-icon {
    border: 3px solid rgba(245, 166, 35, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    width: 85px;
    margin-bottom: 25px;
    border-radius: 8px;
    color: #4a5568;

    -webkit-transform: rotate(47deg);
    -moz-transform: rotate(47deg);
    -ms-transform: rotate(47deg);
    -o-transform: rotate(47deg);
    transform: rotate(47deg);

    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item {
    padding: 30px 20px;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
}

.service-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-item:hover .service-icon {
    border-color: #F5A623;
    color: #F5A623;
    transform: rotate(47deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.18);
}

.service-icon i {
    line-height: 1;
    -webkit-transform: rotate(-48deg);
    -moz-transform: rotate(-48deg);
    -ms-transform: rotate(-48deg);
    -o-transform: rotate(-48deg);
    transform: rotate(-48deg);
}

.service-item h3 {
    font-size: 20px;
    text-transform: uppercase;
}

/*=================================================================
	Portfolio (Products & Services)
==================================================================*/

#portfolio {
    background: linear-gradient(180deg, #11141c 0%, #0d0f14 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#portfolio .sec-title h2 {
    color: #ffffff;
}

#portfolio .sec-title p {
    color: #8a95a5;
}

.project-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.project-wrapper li {
    display: block;
}

.portfolio-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #171b26;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

figcaption.mask {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    background: #171b26 !important;
    padding: 22px 24px 24px !important;
    text-align: left;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: none;
}

figcaption.mask h3 {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    text-shadow: none !important;
    text-transform: none;
    transition: color 0.3s ease;
}

.portfolio-item:hover figcaption.mask h3 {
    color: #F5A623 !important;
}

figcaption.mask p {
    font-size: 14px !important;
    line-height: 22px !important;
    color: #8a95a5 !important;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 991px) {
    .project-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .project-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

ul.external {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -47px;

    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

ul.external li {
    display: inline-block;
}

ul.external li a {
    background-color: rgba(255, 255, 255, 0.9);
    color: #818181;
    display: block;
    padding: 10px 18px 13px;

    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

ul.external li a:hover {
    background-color: #F5A623;
    color: #fff;
}

/* Hide external icons (search/link) since we show text labels instead */
ul.external {
    display: none;
}

.portfolio-item:hover ul.external {
    top: 0;
}

.fancybox-skin {
    border-radius: 0;
}

.fancybox-title.fancybox-title-inside-wrap {
    padding: 15px;
}

.fancybox-title h3 {
    margin: 0 0 15px;
}

.fancybox-title p {
    color: #818181;
    font-size: 16px;
    line-height: 22px;
}

.fancybox-title-inside-wrap {
    padding-top: 0;
}

/*=================================================================
	Testimonials
==================================================================*/


#testimonials {
    background-image: url(../img/parallax/testimonial.jpg);
    padding: 0;
    color: #fff;
}

#testimonials .sec-title h2:after {
    border-bottom: 3px solid #F5A623;
}

#testimonials .overlay {
    background-color: rgba(20, 20, 20, 0.82);
    padding: 70px 0 40px;
}

.testimonial-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.testimonial-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.testimonial-item>div {
    line-height: 30px;
    position: relative;
}

.testimonial-item>div:before {
    background-image: url("../img/icons/quotes.png");
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.testimonial-item>div:after {
    background-image: url("../img/icons/quotes.png");
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.testimonial-item>div>span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#testimonials .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#testimonials .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#testimonials .owl-prev:hover,
#testimonials .owl-next:hover {
    color: #fff;
}

.price-table {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.price-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F5A623;
}

.price-table.featured {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.25);
}

.price-table.featured::before {
    background: linear-gradient(90deg, #F5A623, #ff7b00);
    height: 6px;
}

.price-table:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.price-table>span {
    color: #252525;
    display: block;
    font-size: 22px;
    padding: 35px 0 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.price-table .value {
    background-color: #fafafa;
    color: #4a5568;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.price-table.featured .value {
    background-color: #F5A623;
    color: #fff;
}

/* Partner card adjustments */
.partner-card>span {
    line-height: 1.4;
    padding: 30px 10px 20px;
}

.partner-value {
    background-color: rgba(0, 0, 0, 0.02) !important;
    padding: 15px 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.price-table.featured .partner-value {
    background-color: #F5A623 !important;
    border-top: 1px solid #F5A623;
    border-bottom: 1px solid #F5A623;
}

.partner-title {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600;
    color: #2d3748;
}

.price-table.featured .partner-title {
    color: #fff !important;
}

.price-table .value span {
    display: inline-block;
}

.price-table .value span:first-child {
    font-size: 32px;
    line-height: 32px;
}

.price-table .value span:nth-child(2) {
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 25px;
}

.price-table .value span:last-child {
    font-size: 16px;
}

.price-table ul {
    margin: 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
}

.price-table ul li {
    border-top: none;
    display: block;
    padding: 12px 0;
    color: #718096;
    font-size: 14px;
    transition: all 0.3s ease;
}

.price-table.featured ul li {
    color: #4a5568;
}

.price-table ul li a {
    display: block;
    text-transform: uppercase;
}

.price-table.featured ul li:last-child,
.price-table ul li:last-child:hover {
    background-color: transparent;
}

.price-table.featured ul li:last-child a,
.price-table ul li:last-child:hover a {
    color: #fff;
}


/*=================================================================
	Price
==================================================================*/

#social {
    background-image: url(../img/slider/banner.png);
    padding: 0;
}

#social .overlay {
    background: linear-gradient(135deg, rgba(20, 24, 33, 0.88) 0%, rgba(30, 37, 51, 0.88) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 100px 0 100px;
}

.social-button {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.social-button li {
    display: inline-block;
}

.social-button li:nth-child(2) {
    margin: 0 75px;
}

.social-button li a {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-button li a svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-button li a:hover {
    color: #ffffff;
    border-color: #F5A623;
    background-color: #F5A623;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.4);
}

.social-button li a:hover svg {
    transform: scale(1.1);
}


/*=================================================================
	Contact
==================================================================*/

.input-field {
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #ececec;
    border-radius: 0;
    box-shadow: none;
    color: #818181;
    font-size: 16px;
    height: 50px;
}

textarea.form-control {
    width: 100%;
    height: 165px;
}

#submit:hover {
    color: #fff;
}

#submit:before {
    background-color: #0A85BB;
}

#submit.btn-effect:after {
    background: #2E2E2E;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* New contact section styles */
.eolo-contact-header {
    margin-bottom: 35px;
}

.eolo-contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #252525;
}

.eolo-contact-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 18px;
    margin-bottom: 0; /* Override default margin */
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
}

.contact-item .contact-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-item:hover .contact-icon-wrap {
    background: #F5A623;
}

.contact-item .fa {
    font-size: 18px;
    color: #F5A623;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item:hover .fa {
    color: #ffffff;
}

.contact-item>div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.contact-item span {
    color: #252525;
    font-size: 15px;
    font-weight: 600;
    display: block;
    line-height: 1.5;
}

.contact-item a {
    color: #252525;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #F5A623;
}

.contact-info-block {
    padding-top: 10px;
}

.contact-map-block {
    padding-top: 10px;
}

.google-map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.google-map-embed:hover {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 20px 45px rgba(245, 166, 35, 0.12);
}

@media (min-width: 992px) {
    #contact .contact-details-row {
        display: flex;
        align-items: stretch;
    }
    #contact .contact-info-block {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
    }
    #contact .contact-map-block {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    #contact .google-map-embed {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        height: 100%;
    }
    #contact .google-map-embed iframe {
        flex-grow: 1;
        height: 100% !important;
    }
}


/*============================================================
	Google Maps
==============================================================*/

#google-map {
    padding: 0;
}

#map-canvas {
    width: 100%;
    height: 300px;
}


/*============================================================
	Footer
==============================================================*/

#footer {
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.12) 0%, transparent 60%), 
                linear-gradient(to bottom, #11141c 0%, #0b0d12 100%);
    padding: 85px 0 50px;
    color: #fff;
    border-top: 1px solid rgba(245, 166, 35, 0.15);
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.4) 50%, transparent);
}

.footer-content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-logo-wrap {
    margin-bottom: 25px !important;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.95;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-logo-wrap p {
    color: #94a3b8;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 500;
}

.footer-content .footer-social {
    margin: 30px 0 25px;
}

.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social ul li {
    display: block;
    margin: 0;
}

.footer-social ul li a {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social ul li a i {
    font-size: 18px;
    line-height: 1;
}

.footer-social ul li a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social ul li a:hover {
    color: #ffffff;
    background: #F5A623;
    border-color: #F5A623;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(245, 166, 35, 0.35);
}

.footer-copy {
    color: #64748b;
    font-size: 13px;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.footer-copy strong {
    color: #94a3b8;
    font-weight: 600;
}

.footer-content>p {
    color: #475569;
    font-size: 12px;
}



/*============================================================ 
	Responsive Styles
 ============================================================*/

/*============================================================
	For Small Desktop
==============================================================*/

@media (min-width: 980px) and (max-width: 1150px) {

    /*about*/
    #about .welcome-block img {
        margin-bottom: 30px;
    }

    /* portfolio */
    figcaption.mask {
        bottom: -151px;
    }

    .testimonial-item>div:after {
        bottom: -40px;
    }
}


/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {

    /* home slider  */
    .caption-content h2 {
        font-size: 40px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 45px;
    }

    /* about */
    .recent-works {
        margin-bottom: 50px;
    }

    .service-item {
        margin-bottom: 50px;
    }

    /* portfolio */
    .portfolio-item {
        width: 48%;
    }

    /* testimonial */
    .testimonial-item {
        width: 100%;
    }

    .testimonial-item {
        width: 80%;
    }

    .testimonial-item>div:after {
        bottom: -35px;
    }

    /* price */
    .price-table {
        margin-bottom: 50px;
    }

    /* contact form */
    .contact-form {
        margin-bottom: 50px;
    }
}


/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/

@media only screen and (max-width: 767px) {

    body {
        font-size: 14px;
    }

    .parallax {
        background-position: centet tip !important;
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .sec-title h2:after {
        left: 30%;
    }

    /*navigation*/
    .navbar-inverse .navbar-toggle {
        border-color: #fff;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }

    /* slider */
    .caption-content h2 {
        font-size: 18px;
    }

    .caption-content>span {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .caption-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .caption-content strong {
        font-size: 22px;
    }

    /* about */
    .recent-works {
        margin-bottom: 85px;
    }

    #about h3 {
        font-size: 18px;
        margin: 0 0 35px !important;
    }

    #about .owl-buttons {
        margin-top: 20px;
    }

    #about .message-body {
        margin-bottom: 45px;
    }

    #about .welcome-block img {
        margin: 0 25px 15px 0;
    }

    /* service */
    .service-item {
        width: 100%;
    }

    /*portfolio*/
    .portfolio-item {
        margin: 0 auto 20px;
        font-size: 14px;
        width: 100%;
        max-width: 360px;
    }

    figcaption.mask {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        padding: 20px !important;
    }

    /* lightbox */
    .fancybox-title h3 {
        font-size: 20px;
    }

    .fancybox-title p {
        font-size: 14px;
    }

    /* testimonial */
    .testimonial-item {
        width: 95%;
    }

    .testimonial-item>div:before,
    .testimonial-item>div:after {
        background-image: none;
    }

    .testimonial-item>div>span {
        margin: 30px 0 20px;
    }

    /* price */
    .price-table {
        margin-bottom: 50px;
    }

    /* follow us */
    .social-button li:nth-child(2) {
        margin: 0 25px;
    }

    .social-button li a {
        height: 60px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

    /* footer */
    .footer-content {
        width: 100%;
    }

    .footer-social ul li {
        margin: 0 7px;
    }
}


/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .sec-title h2:after {
        left: 38%;
    }

    /* home slider */
    .caption-content h2 {
        font-size: 35px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 35px;
    }

    /*about*/

    #about .welcome-block h3 {
        margin: 0 0 35px;
    }

    /* service */

    .service-item {
        margin: 0 auto 50px;
        width: 55%;
    }

    /* portfolio */
    .portfolio-item {
        width: 48%;
    }

    figcaption.mask {
        bottom: -132px;
    }

    /* testimonial */
    .testimonial-item {
        width: 80%;
    }

    .testimonial-item>div:before {
        bottom: 160px;
    }

    /* social */
    .social-button li:nth-child(2) {
        margin: 0 50px;
    }

    .social-button li a {
        height: 90px;
        line-height: 96px;
        width: 90px;
    }

    /* price */
    .price-table {
        margin-bottom: 50px;
    }

    /* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

    /* footer */
    .footer-content {
        width: 380px;
    }
}

/*============================================================
	Portfolio Category Modal Styles
==============================================================*/

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 18, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #171b26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    height: 80vh;
    max-height: 750px;
    min-height: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.modal-close-btn:hover {
    background: #F5A623;
    border-color: #F5A623;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.modal-image-col {
    width: 52%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #090b0f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: zoom-in;
}

.modal-image-col img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    transition: transform 0.4s ease;
    display: block;
}

.modal-image-col:hover img {
    transform: scale(1.02);
}

.image-zoom-trigger-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 18, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.modal-image-col:hover .image-zoom-trigger-overlay {
    opacity: 1;
}

.image-zoom-trigger-overlay i {
    font-size: 28px;
    color: #F5A623;
    text-shadow: 0 0 10px rgba(245, 166, 35, 0.6);
}

.modal-content-col {
    width: 48%;
    padding: 40px;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-content-col h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.modal-content-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #F5A623;
    border-radius: 2px;
}

.modal-subtitle {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-sub-items-wrap {
    flex: 1;
}

.modal-sub-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-sub-items li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

.modal-sub-items li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F5A623;
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.8);
}

.modal-sub-items li strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

/* Scrollbar styling for modal details */
.modal-content-col::-webkit-scrollbar {
    width: 6px;
}

.modal-content-col::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content-col::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.modal-content-col::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/*============================================================
	Image Zoom Lightbox Styles
==============================================================*/

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 30px;
    overflow: auto;
}

.zoom-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.zoom-overlay img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), max-width 0.3s ease, max-height 0.3s ease;
    cursor: zoom-in;
}

.zoom-overlay.active img {
    transform: scale(1);
}

.zoom-overlay img.zoomed-actual {
    max-width: none !important;
    max-height: none !important;
    width: auto !important;
    height: auto !important;
    cursor: zoom-out;
    transform: scale(1) !important;
}

.zoom-overlay.has-zoomed-actual {
    display: block;
    padding: 80px 30px 30px;
}

.zoom-overlay.has-zoomed-actual img {
    display: block;
    margin: 0 auto;
}

.zoom-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.zoom-close-btn:hover {
    background: #F5A623;
    border-color: #F5A623;
    transform: scale(1.1) rotate(90deg);
}

/* Mobile Responsive adjustments */
@media (max-width: 768px) {
    .modal-card {
        height: auto;
        min-height: auto;
        max-height: 90vh;
    }
    
    .modal-body {
        flex-direction: column;
        overflow-y: auto;
    }
    
    .modal-image-col {
        width: 100%;
        height: 240px;
        flex-shrink: 0;
    }
    
    .modal-content-col {
        width: 100%;
        height: auto;
        padding: 25px 20px;
        max-height: none;
        overflow-y: visible;
    }
    
    .zoom-overlay {
        padding: 10px;
    }

    .zoom-overlay.has-zoomed-actual {
        padding: 60px 10px 10px;
    }
}


/*=================================================================
    Mega Dropdown Menu – Products & Services
==================================================================*/

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border-top: 3px solid #F5A623;
    z-index: 9999;
    padding: 32px 0 28px;
    animation: megaFadeIn 0.22s cubic-bezier(0.165,0.84,0.44,1) forwards;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-dropdown.open .mega-dropdown-menu {
    display: block;
}

.mega-dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 0;
}

.mega-col {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #f0f0f0;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F5A623;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col-title i {
    color: #F5A623;
    font-size: 13px;
}

.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col ul li {
    margin-bottom: 4px;
}

.mega-col ul li a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: #444;
    font-weight: 400;
    border-radius: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mega-col ul li a:hover {
    background-color: #fff8ee;
    color: #F5A623;
    padding-left: 14px;
    text-decoration: none;
}

/* Products nav item caret */
.nav-products-toggle {
    cursor: default;
    user-select: none;
}

.nav-products-toggle .caret {
    margin-left: 4px;
}

/* Overlay fade behind mega menu (optional) */
.mega-overlay-bg {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    z-index: 9998;
}

.mega-dropdown.open ~ .mega-overlay-bg {
    display: block;
}


/*=================================================================
    Our Partners Section
==================================================================*/

#our-partners {
    background: #f9fafb;
    padding: 70px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#our-partners .sec-title h2 {
    color: #1a1a2e;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 10px;
}

.partner-logo-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245,166,35,0.15);
    border-color: #F5A623;
}

.partner-logo-card img {
    max-width: 130px;
    max-height: 60px;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo-card:hover img {
    filter: none;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 18px;
    }
    .partner-logo-card {
        width: 140px;
        height: 80px;
        padding: 16px 20px;
    }
}


/*=================================================================
    Product Category Cards (new portfolio section)
==================================================================*/

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.product-cat-card {
    background: #171b26;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 30px 20px 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: all 0.35s cubic-bezier(0.165,0.84,0.44,1);
    position: relative;
    overflow: hidden;
}

.product-cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #F5A623, #ff8c00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1);
}

.product-cat-card:hover::before {
    transform: scaleX(1);
}

.product-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 25px rgba(245,166,35,0.15);
    border-color: rgba(245,166,35,0.4);
    color: #fff;
    text-decoration: none;
}

.product-cat-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(245,166,35,0.1);
    border: 2px solid rgba(245,166,35,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.165,0.84,0.44,1);
}

.product-cat-card:hover .product-cat-icon {
    background: rgba(245,166,35,0.2);
    border-color: #F5A623;
    box-shadow: 0 0 20px rgba(245,166,35,0.3);
}

.product-cat-icon i {
    font-size: 28px;
    color: #F5A623;
}

.product-cat-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.product-cat-card p {
    font-size: 12px;
    color: #8a95a5;
    margin: 0;
    line-height: 18px;
}

@media (max-width: 991px) {
    .product-category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .product-category-grid { grid-template-columns: 1fr; }
}


/*=================================================================
    Product List Page (subcategory pages)
==================================================================*/

.product-list-page {
    background: #f4f6f9;
    min-height: 100vh;
    font-family: 'Prompt', sans-serif;
}

/* Shared product page navbar */
.prod-navbar {
    background: rgba(20,20,20,0.95);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.prod-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-nav-logo img {
    height: 44px;
    width: auto;
}

.prod-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(245,166,35,0.3);
}

.prod-nav-back:hover {
    background: rgba(245,166,35,0.1);
    color: #F5A623;
    text-decoration: none;
}

/* Breadcrumb */
.prod-breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #e8eaf0;
    font-size: 13px;
    color: #888;
}

.prod-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.prod-breadcrumb a {
    color: #F5A623;
    text-decoration: none;
}

.prod-breadcrumb a:hover { text-decoration: underline; }
.prod-breadcrumb span { margin: 0 6px; color: #bbb; }

/* Hero banner for product list */
.prod-hero {
    background: linear-gradient(135deg, #11141c 0%, #1e2430 100%);
    padding: 50px 0 40px;
    border-bottom: 3px solid #F5A623;
}

.prod-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.prod-hero h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prod-hero p {
    color: #8a95a5;
    font-size: 15px;
    margin: 0;
}

/* Product cards grid */
.prod-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 60px;
}

.prod-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.prod-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8eaf0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
}

.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 0 0 2px #F5A623;
    text-decoration: none;
    color: inherit;
}

.prod-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f8f9fc;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-img {
    transform: scale(1.04);
}

.prod-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 22px;
}

.prod-card-desc {
    font-size: 13px;
    color: #888;
    line-height: 20px;
    margin: 0 0 14px;
    flex: 1;
}

.prod-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #F5A623;
    text-decoration: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.prod-card:hover .prod-card-btn { gap: 10px; }

@media (max-width: 991px) {
    .prod-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .prod-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-hero h1 { font-size: 24px; }
}
@media (max-width: 480px) {
    .prod-cards-grid { grid-template-columns: 1fr; }
}


/*=================================================================
    Product Detail Page
==================================================================*/

.prod-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 60px;
}

.prod-detail-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
}

.prod-detail-img-wrap {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8eaf0;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    text-align: center;
    position: sticky;
    top: 90px;
}

.prod-detail-img-wrap img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.prod-detail-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.prod-detail-content .prod-category-badge {
    display: inline-block;
    background: rgba(245,166,35,0.12);
    color: #cc8800;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(245,166,35,0.3);
}

.prod-detail-desc {
    font-size: 15px;
    line-height: 26px;
    color: #555;
    margin-bottom: 28px;
    text-align: justify;
}

.prod-detail-meta {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    padding: 22px 24px;
    margin-bottom: 24px;
}

.prod-detail-meta-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}

.prod-detail-meta ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-detail-meta ul li {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-detail-meta ul li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #F5A623;
    flex-shrink: 0;
}

.prod-contact-cta {
    background: linear-gradient(135deg, #11141c 0%, #1e2430 100%);
    border-radius: 14px;
    padding: 24px 28px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.prod-contact-cta p {
    margin: 0;
    font-size: 15px;
    color: #ccc;
}

.prod-contact-cta strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.prod-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5A623;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.prod-cta-btn:hover {
    background: #e0941a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.35);
}

@media (max-width: 900px) {
    .prod-detail-grid { grid-template-columns: 1fr; }
    .prod-detail-img-wrap { position: static; }
}

/* ========================================================================= */
/*  News & PR Card Styles
/* ========================================================================= */
.news-pr-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
}
.news-pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: rgba(245,166,35,0.2);
}
.news-pr-card .card-img-wrap {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #b27300, #F5A623);
  position: relative;
}
.news-pr-card .card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.news-pr-card .card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #b27300 0%, #F5A623 100%);
}
.news-pr-card .card-img-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,0.3); }
.news-pr-card .card-body { padding: 1.75rem; }
.news-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cat-achievement { background: #ecfdf5; color: #059669; }
.cat-sustainability { background: #f0fdf4; color: #16a34a; }
.cat-event { background: #fef3c7; color: #d97706; }
.cat-announcement { background: #fff3eb; color: #F5A623; }
.cat-company-news { background: #f5f3ff; color: #7c3aed; }
.cat-pr-news, .cat-ข่าวสารประชาสัมพันธ์ { background: #fce7f3; color: #db2777; }
.cat-default { background: #f1f5f9; color: #64748b; }

/* Language Switcher UI */
.lang-switcher-group {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-btn {
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
}
.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lang-btn.active {
    background: #F5A623;
    color: #fff;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.6), 0 0 20px rgba(245, 166, 35, 0.4);
}

/* Utility Classes */
.d-none {
    display: none !important;
}

