

/* CUSTOM RESETS
================================================== */
a {
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    cursor: pointer;
    color: #9fa3a7;
}

a:focus,
a:hover {
    color: #6fc754;
    outline: 0 none;
    text-decoration: none;
}

p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    color: #525354;
    line-height: 22px;
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 42px;
}

h1,h2,h3,h4,h5 {
    color: #26292c;
}

p + p {
    margin-top: 40px;
}

/* Buttons */
.btn {
    line-height: 50px;
    min-width: 200px;
    font-size: 16px;
    font-weight: 300;
    border: 0;
    border-radius: 50px;
    color: #26272d;
    background-color: #fff;
    padding: 0;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.btn-border {
    border: 1px solid #26272d;
}

.btn-fill {
    background-color: #267df4;
    color: #fff;
}

.btn-gray {
    background-color: #f5f5f8;
    color: #26272d;
}

.btn-green {
    background-color: #6fc754;
    color: #fff;  
}

.btn:hover,
button.btn:hover,
.btn:focus,
button.btn:focus {
    background-color: #26272d;
    color: #fff;
}

.btn-gray:hover,
.btn-gray:focus {
    background-color: #6fc754;
    color: #fff;    
}

/* 
 * Forms 
 */
/* Input fields */
.form-group {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.form-control {
    border-radius: 25px;
    height: 50px;
    padding: 15px 20px;
    border-color: #f5f5f8;
}

.form-control + .form-control {
    margin-top: 10px;
}

.form-control:focus {
    background-color: #f5f5f8;
    border-color: #f5f5f8;
    box-shadow: none;
    outline: none;
}

.form-group .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 40px;
    min-width: 60px;
    font-size: 16px;
    border-radius: 25px;
}

.form-control-comment {
    height: 100px;
    resize: none;
}

.search-form .form-group .form-control {
    padding-right: 80px;
}

/* ELEMENTS
================================================== */
/* Checkbox fields */
input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden;
    height: auto;
    margin-top: 0;
}

.checkbox {
    margin: 0;
} 

.checkbox + .checkbox,
.radio-btn + .radio-btn {
    margin-top: 15px;
}

.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    width: 20px; 
    height: 20px;
    background-color: #fff;
    border: 1px solid #f5f5f8;
    border-radius: 3px;
    box-shadow: none;
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    font-size: 15px;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    color: #fff;
    background-color: #6fc754;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
      transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

.checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}

.checkbox [type="checkbox"]:checked:focus + label:before,
.checkbox [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted #6fc754;
}

.checkbox [type="checkbox"]:not(:checked) + label:hover:before,
.checkbox [type="checkbox"]:checked + label:hover:before {
    border: 1px solid #6fc754;
}

/* Radiobutton fields */
.radio-btn label {
    font-weight: 400;
}

.radio-btn [type="radio"]:not(:checked) + label,
.radio-btn [type="radio"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-btn [type="radio"]:not(:checked) + label:before,
.radio-btn [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #f5f5f8;
    border-radius: 50px;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after,
.radio-btn [type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 4px;
    background-color: #6fc754;
    border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
.radio-btn [type="radio"]:checked + label:after {
    opacity: 1;
}

.radio-btn [type="radio"]:disabled:not(:checked) + label:before,
.radio-btn [type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.radio-btn [type="radio"]:disabled:checked + label:after {
    color: #999;
}

.radio-btn [type="radio"]:disabled + label {
    color: #aaa;
}

.radio-btn [type="radio"]:checked:focus + label:before,
.radio-btn [type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted #6fc754;
}

.radio-btn [type="radio"]:checked + label:hover:before,
.radio-btn [type="radio"]:not(:checked) + label:hover:before {
    border: 1px solid #6fc754;
}

/* Selectpicker */
select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
}

.bootstrap-select .btn {
    border: 1px solid #26272d;
    border-radius: 10px;
}

.bootstrap-select span.pull-left {
    padding-left: 10px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static; *
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bootstrap-select.open .dropdown-menu {
    display: block;
    border: 1px solid #26272d; 
    border-radius: 10px;
}

.bootstrap-select.btn-group .dropdown-menu {
    padding: 5px 0;
    min-width: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9999;
}

.bootstrap-select .dropdown-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    padding: 0;
}

.bootstrap-select .bs-caret {
    float: right;
    padding-right: 10px;
}

.bootstrap-select .bs-caret .caret {
    border-top: 6px dashed;
    border-top: 6px solid\9;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;   
}

.bootstrap-select .selected {
    color: #6fc754;
}

.bootstrap-select .check-mark {
    display: none;
}

/*  Tabs  */
.tab-style {
    border-bottom: none;
}

.tab-style + .tab-content {
    padding: 15px;
    border: 1px solid #26272d;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-tabs.tab-style > li.active > a,
.nav-tabs.tab-style > li > a:hover {
    border: 1px solid #6fc754;
    background-color: #6fc754;
    color: #fff;
}

.nav-tabs.tab-style > li > a {
    position: relative;
    color: #26272d;
    margin-right: 0;
    border: 1px solid #26272d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-tabs.tab-style > li + li {
    margin-left: 10px;
}

/* Accordion */
.accordion.panel-group {
    margin-bottom: 0;
}

.accordion.panel-group .panel + .panel {
    margin-top: 0;
}

.accordion .panel {
    border: 0;
    box-shadow: none;
    border: 1px solid #26272d;
    border-bottom: 0;
    border-radius: 0;
}

.accordion .panel:first-child,
.accordion .panel:first-child .panel-heading a {
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}

.accordion .panel:last-child {
    border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
    border-bottom: 1px solid #26272d;
}

.accordion .panel:last-child .panel-heading a.collapsed {
    border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
}

.accordion .collapsed {
    height: auto;
}

.accordion .panel-heading {
    background-color: transparent;
    padding: 0;
}

.accordion .panel-heading a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 40px 10px 15px;
}

.accordion .panel-heading a.collapsed {
    background-color: transparent;
    color: #26272d;
}

.accordion .panel-heading a.collapsed:hover,
.accordion.accordion-gray .panel-heading a.collapsed:hover,
.accordion .panel-heading a {
    background-color: #6fc754;   
    color: #fff; 
}

.accordion .panel-heading a.collapsed::after {
    content: "\f107";
}

.accordion .panel-heading a::after {
    font-family: "FontAwesome";
    content: "\f106";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.panel-group .panel-heading+.panel-collapse>.list-group, 
.panel-group .panel-heading+.panel-collapse>.panel-body {
    border: none;
}

/* Pagination */
.pagination {
  margin: 0;
  vertical-align: middle;
}

.pagination > li > a {
  border: none;
  color: #292a2c;
  background-color: #f5f5f8;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.pagination > li + li > a {
  margin-left: 5px;
}

.pagination > li.active > a,
.pagination > li > a:hover,
.pagination > li.active > a:hover {
  background-color: #6fc754;
  color: #fff;
}

.pagination > li:first-child > a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.pagination > li:last-child > a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.pagination > li.more > a {
  margin-left: 0;
  padding: 10px 5px;
  pointer-events: none;
  background-color: transparent;
}

.pagination > li.more + li > a {
  margin-left: 0;
}

/* LAYOUT
================================================== */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #26272d;
}

.img-res {
    display: block;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    /*background-color: #c5c1c0;*/
}

.list-inline > li {
    padding-top: 7px !important;
}

.flex-widget {
    background-color: #c5c1c0;
}
/* Background colors */
.gray-bg {
    background-color: #f5f5f8;
}

/* Margin and padding resets */
.mb-10 {margin-bottom: 10px;}
.mt-20 {margin-top: 20px;}
.mt-50 {margin-top: 50px;}

/* HEADER
================================================== */
.site-header {
    /*position: absolute;*/
    padding: 50px 0 0;
    background-color: transparent;
    width: 100%;
    z-index: 3;
    background-color: #151515bd; /* White background color */
    padding: 15px 0; /* Optional padding for better spacing */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

/* Site-logo */
.site-title {
    font-size: 25px;
    line-height: 26px;
    color: #FFD700;
}

.site-title:hover {
    color: #26272d;   
}

.site-title span {
    font-weight: 600;
}

.site-title a:hover {
    color: #fff;
}


.embossed-text {
    font-size: 34px;
    color: #FFD700; /* Gold color */
    background: linear-gradient(45deg, #FFD700, #FFC700);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px #e5a50873, /* Slight dark golden shadow */
    2px 2px 1px #85481c36, /* Deeper shadow for emboss effect */
    -1px -1px 1px #ffffffed; /* Highlight for a raised look */
}



/* General navbar styles */
.collapse.navbar-collapse {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: transparent; /* Transparent when collapsed */
    height: 60px; /* Collapsed height */
    transition: height 0.3s ease, background-color 0.3s ease;
}

    .collapse.navbar-collapse.show {
        height: 100vh; /* Full viewport height when expanded */
        background-color: rgba(0, 0, 0, 0.8); /* Dark transparent background when expanded */
        display: flex;
        align-items: center;
        justify-content: center;
    }

.navbar-nav {
    display: flex;
    flex-direction: row; /* Horizontal menu items */
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px; /* Increase the top space */
}

    .navbar-nav > li {
        margin: 0 15px; /* Horizontal spacing between items */
    }

        .navbar-nav > li > a {
            color: #fff; /* White text */
            font-size: 14px; /* Adjusted font size */
            text-transform: uppercase;
           /* font-weight: bold;*/
            padding: 5px 10px;
            transition: color 0.3s ease;
        }

            .navbar-nav > li > a:hover {
                color: #ff6600; /* Highlight color on hover */
            }

    /* Dropdown menu styling */
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 60px; /* Position below the navbar */
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9); /* Dark background for dropdown */
        border: none;
        padding: 20px;
        display: none; /* Hidden by default */
        justify-content: center;
        align-items: center;
    }

/* Close button styling for full-page overlay */
.navbar-collapse .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: flex; /* Show dropdown on hover */
    }

    /* Style for dropdown links */
.navbar-nav .dropdown-menu > li {
    width: 300px; /* Set a fixed width for all items */
    margin-bottom: 0px; /* Space between dropdown items */
    border: 2px solid #eeecec; /* White border around each item */
    box-sizing: border-box; /* Ensure borders are included in width */
}

    /* Highlight color when hovered after the class is added */
    .highlight-hover{
        color: #ff6600 !important; /* Change color on hover */
    }

        /* Style for dropdown links */
    .navbar-nav .dropdown-menu > li > a {
        color: #2b2a2ae6;
        font-size: 16px; /* Larger font size for full-page display */
        font-weight: 550;
        padding: 20px 40px;
        text-align: left; /* Align text to the left */
        display: block;
        transition: color 0.3s ease;
        width: 100%; /* Ensure the link fills the li width */
    }


            .navbar-nav .dropdown-menu > li > a:hover {
                color: #ff6600;
            }



/* Full-page dropdown menu without covering the top menu bar */
.navbar-nav > li .dropdown-menu {
    position: fixed;
    top: 80px; /* Position the dropdown below the navbar */
    left: 0;
    width: 100%;
    height: 0; /* Start with max-height 0 for sliding effect */
    overflow: hidden; /* Hide overflow when max-height is 0 */
    background-color: rgb(252 251 251); /* Dark background for full-page overlay */
    display: flex; /* Flexbox for aligning content */
    flex-direction: column; /* Ensure content is vertically aligned */
    justify-content: flex-start; /* Align content to the left */
    align-items: flex-start; /* Align items to the top */
    z-index: 1060;
    padding: 0 30px; /* Adjust padding for alignment */
    opacity: 0; /* Start with invisible state */
    transform: scaleY(0); /* Collapse the dropdown vertically */
    transform-origin: top; /* Start expanding from the top */
    transition: transform 1.0s ease, opacity 0.5s ease, height 0.5s ease; /* Smooth transition for max-height, opacity, and padding */
}


/* Display dropdown on hover */
/*.navbar-nav > li:hover .dropdown-menu {
    display: flex;*/ /* Flexbox for aligning content */
    /*flex-direction: column;*/ /* Ensure content is vertically aligned */
/*}*/

.navbar-nav > li:hover .dropdown-menu {
    height: calc(120vh - 60px); /* Full-page height minus the navbar */
    opacity: 1; /* Fully visible when expanded */
    transform: scaleY(1); /* Expand the dropdown vertically */
    padding-top: 50px; /* Add padding after expansion */
    overflow-y: auto; /* Allow scrolling if content exceeds available space */
   
}

/* Reset height and transform when not hovering */
.navbar-nav > li:not(:hover) .dropdown-menu {
    height: 0; /* Reset height to 0 when not hovering */
    transform: scaleY(0); /* Collapse the dropdown vertically */
    opacity: 0; /* Hide the dropdown */
}

/* Remove white background on hover for dropdown items */
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    background-color: transparent !important; /* Ensure no white background on hover */
    color: #ff6600; /* Keep text white */
    /*border: none;*/ /* Remove any borders */
}



/* HERO
================================================== */
.hero {
    background: url(../img/hero.jpg) no-repeat center / cover;
    height: 100%;
    width: 100%;
    display: table;
    position: relative;
}

.overlay:before {
  content: '';
  background-color: rgba(255,255,255,0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
    display: table-cell;
    vertical-align: middle;
    padding-top: 75px;
}

.hero-text {
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

    .hero-text h1 {
        position: relative;
        margin: 0;
        margin-bottom: 20px;
        font-family: auto;
        color: #020202d1;
    }

    .hero-text h3 {
        position: relative;
        margin: 0;
        font-size: 29px;
        font-variant-caps: petite-caps;
        color: #5b5d5f;
    }


.hero-text p {
    position: relative;
    margin: 45px 0 30px;
    font-size: 19px;
    color: #26272d;
    font-weight: 400;
}

.hero-text .btn {
    position: relative;
    background-color: transparent;
}

.hero-text .btn:hover {
    background-color: #26272d;
    color: #fff;
}

.hero .breadcrumb {
    padding-top: 60px;
    margin-bottom: 0;
}

.hero .breadcrumb:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 45px;
    height: 12px;
    width: 80px;
    border-top: 5px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.subpage-hero {
    height: 400px;
}

.subpage-hero.overlay:before {
    background-color: rgba(38,39,45,0.5);
}

.subpage-hero .hero-content,
.subpage-hero .hero-content h1,
.subpage-hero a  {
    color: #fff;
}

.subpage-hero a:hover {
    color: #6fc754;
}

.flexible {
    background: url(../img/flexible-packaging-banner.jpg) no-repeat center / cover;     
}

.packaging {
    background: url(../img/packaging-banner.png) no-repeat center / cover;     
}

.stretch {
    background: url(../img/stretch-banner.jpeg) no-repeat center / cover;     
}

.blog-hero {
    background: url(../img/about-us.jpg) no-repeat center / cover;     
}

.contact-hero {
    background: url(../img/contact-us.jpg) no-repeat center / cover;     
}

/*Carousal*/



/*Carousal end*/




/* SITEMAIN
================================================== */
/* site-section */

.site-section {
   padding: 100px 0 140px;
}

.subheading-text {
    font-size: 20px;
    font-style: italic;
}

.heading-separator {
    position: relative;
    margin: 0;
    padding-bottom: 70px;
}

.heading-separator:after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    height: 2px;
    width: 50px;
    margin: 0 auto;
    background-color: #267df4;
}

/* Section: Features */
.section-features h2 {
    padding-bottom: 40px;
    font-size: 30px;
}

.section-features img {
    position: absolute;
    right: 15px;
    height: 380px;
}

/* Section: Services */
.section-services .subheading-text {
    margin-bottom: 40px;
}

.section-services .col-md-3:nth-child(n+5) .service {
    margin-top: 60px;
}

.service {
    min-height: 250px;
}

.service img {
    height: 80px;
}

.service-title {
    margin: 35px 0 25px;
    font-size: 13px;
    text-transform: uppercase;
}

.service-info {
    font-size: 13px; 
}

/* Section: Map Feature */
.section-map-feature {
    padding-top: 250px;
    background: #071021 url(../img/map.png) no-repeat top center / cover; 
}

.section-map-feature h2 {
    padding-bottom: 30px;
    margin: 0;
}

.section-map-feature h2,
.section-map-feature p {
    color: #fff;
}

.section-map-feature .btn {
    margin: 80px 0 215px;
}

.counter {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

.counter-item h3 {
    margin: 0;
    font-size: 16px;
    color: #0960d7;
}

.portfolio-item {
    margin-top: 30px;
    /*height: 270px;*/
    height: 190px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; /* Ensure content doesn't overflow the container */
    border-radius: 50px;
}

.portfolio-image {
    position: relative;
    height: 100%;
}

    .portfolio-image img {
        transition: transform 0.5s ease, width 0.5s ease;
        width: 100%;
        height: 100%; /* Ensure the image covers the container */
        object-fit: cover; /* Maintain aspect ratio and cover the container */
    }

.portfolio-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0px; /* Border width */
    height: 100%;
    background-color: #f5f5f8; /* Border color */
    transform-origin: left;
    transform: rotate(0deg); /* No rotation initially */
    transition: width 0.5s ease, transform 0.5s ease; /* Smooth transition */
}

.portfolio-item:hover:before {
    width: 60%; /* Full width on hover */
    transform: rotate(-360deg); /* Rotate clockwise */
}

.portfolio-item:hover .portfolio-image img {
    transform: scaleX(0.75); /* Reduce the width by 25% */
}

.portfolio-item-title,
.portfolio-item a {
    position: absolute;
    left: 0px;
    margin: 0;
    font-size: 16px;
    opacity: 0;
}

.portfolio-item-title {
    width: 150px;
    top: 15px;
    transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.portfolio-item:hover .portfolio-item-title {
    left: 15px;
    opacity: 1;
}

.portfolio-item a {
    bottom: 15px;
    color: #26272d;
    padding: 5px 12px;
    border: 1px solid #26272d;
    border-radius: 50px;
    background-color: #26272d87;
    color: #fff;
}

.portfolio-item:hover a {
    left: 55%;
    opacity: 1;
}

.portfolio-item a:hover {
    background-color: #26272d;
    color: #fff;
}

.portfolio-item a i {
    width: 16px;
    text-align: center;
}


.iframe-border {
    padding: 0px; /* Padding around the iframe */
    background-color: #f9f9f9; /* Light grey background for padding area */
    border-radius: 40px; /* Rounded corners */
    box-shadow: 12px 18px 4px rgba(0, 0, 0, 0.1); /* Light shadow effect */
    flex: 1; /* Make the iframe take available space */
    max-width: 500px; /* Maximum width of the iframe */
    margin-left:80px;
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: flex-start; /* Align items to the start */
    }

   
}


/* Section: Newsletter */
.section-newsletter h2 {
    padding-bottom: 30px;
    margin: 0;
}

.newsletter-group {
    max-width: 550px;
}

.newsletter-group .form-control {
    padding-right: 125px;
}

.newsletter-group .btn {
    min-width: 120px;
}

/* FOOTER
================================================== */
.site-footer {
    background-color: #f5f5f8;
    padding-top: 95px;
}

.site-footer .site-title {
    display: inline-block;
    margin-bottom: 40px;
}

.site-footer h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin:0 0 40px;
}

.site-footer > .container {
    padding-bottom: 170px;
}

.site-footer .list-unstyled li + li {
    margin-top: 20px;
}

.contact-links li {
    position: relative;
}

.contact-links li i {
    position: absolute;
    top: 50%;
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #8c8f94;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.contact-links li a,
.contact-links li p {
    margin-left: 40px;
}

.list-unstyled {
    margin-bottom: 0;
}

.list-unstyled li a,
.list-unstyled li p {
    font-size: 16px;
    color: #8c8f94;
    font-weight: 300;
}

.list-unstyled li a:hover,
.list-unstyled li.active a {
    color: #6fc754;
}

/* Copyright */
.copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(38, 41, 44, 0.05);
}

.social-links a {
    line-height: 36px;
    padding: 5px 15px;
    font-size: 18px;
    border: 1px solid;
    border-radius: 50px;
}

.social-links a:hover {
    color: #fff;
}

.social-links a i {
    width: 18px;
    text-align: center;
}

a.instagran-bg {
    color: #55acee;
    border-color: #55acee; 
}

a.instagran-bg:hover {
    background-color: #55acee;
}

a.facebook-bg {
  color: #3b5998;
  border-color: #3b5998;
}

a.facebook-bg:hover{
  background-color: #3b5998;
}

a.pinterest {
  color: #dd4b39;
  border-color: #dd4b39;
} 

a.pinterest:hover{
  background-color: #dd4b39;
} 

a.linkedin-bg {
  color: #007bb5;
  border-color: #007bb5;
}

a.linkedin-bg:hover {
  background-color: #007bb5;
}

.copyright .text-right {
    padding: 4px 0;
}

.copyright p {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    color: #26272d;
}

.copyright p + p {
    margin-top: 2px;
}

/* PAGES
================================================== */
.subpage-site-section {
    padding: 60px 0;
}

.breadcrumb {
    background-color: transparent;
    position: relative;
}

.breadcrumb .active {
    color: #fff;
}

/* 
 * Portfolio
 */
.portfolio-sorting li:nth-child(-n+3){
    margin-bottom: 5px;
}

.portfolio-sorting li a {
    line-height: 40px;
    min-width: 120px;
    font-size: 16px;
}

.portfolio-sorting li .active {
    background-color: #6fc754;
    color: #fff;  
    box-shadow: none;   
}

#grid {
    margin-top: 25px;
}

#grid .col-md-4 {
    display: none;
}

#loadMore {
    margin-top: 30px;
}

#loadMore.disabled {
    background-color: #eee;
    color: #000;
    opacity: 0.3;
}

/* 
 * Portfolio-item
 */
.project-img {
    height: 480px;
}

.project-img + .project-img  {
    margin-top: 20px;
}

.project-info h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

.project-description,
.project-date-category {
    margin: 30px 0 0;
}

.project-date-category p + p {
    margin-top: 10px;
}

.project-date-category p span {
    font-size: 14px;
    text-transform: uppercase; 
    color: #26272d;
    font-weight: 400;
}

.project-info .btn {
    margin-top: 25px;
    line-height: 40px;
    min-width: 120px;
}

.project-info .social-links {
    margin-top: 25px;
}

.section-related-projects {
    padding-top: 0;
}

/* 
 * Blog
 */
.blog-post + .blog-post {
    margin-top: 60px;
}

.blog-post img {
    height: 480px;
}

.post-content,
.post-content .test,
.post-meta {
    margin-top: 20px;
}

.blog-post .post-title {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content p {
    margin: 25px 0 0;
}

.post-content .post-title a {
    color: #26292c;
}

.post-content a {
    color: #8c8f94;   
}

.post-content .read-more {
    position: relative;
    padding-right: 30px;
    text-transform: uppercase;
}

.post-content .read-more:after {
    content: '';
    display: block;
    background-color: #8c8f94;  
    width: 20px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 8px;
    transition: background-color 0.25s ease-in-out;
    -moz-transition: background-color 0.25s ease-in-out;
    -webkit-transition: background-color 0.25s ease-in-out;
    -o-transition: background-color 0.25s ease-in-out;
    -ms-transition: background-color 0.25s ease-in-out;
}

.post-content .read-more:hover:after {
    background-color: #6fc754; 
}

.blog-post a:hover + .post-content .post-title a,
.post-content a:hover {
    color: #6fc754;
}

.post-meta {
    padding: 5px 0;
}

.post-meta span {
    padding: 6px 0;
}

.post-meta span + span {
    margin-left: 40px;
}

.post-meta span a {
    position: relative;
    padding: 6px 0 6px 40px;
}

.post-meta i,
.post-author img {
    position: absolute;
    left: 0;
    top: 0;
}

.post-author img {
    height: 30px;
    width: 30px;
}

.post-meta i {
    font-size: 30px;
}

.post-category i {
    top: 1px;
}

.section-blog .ui-pagination {
    margin-top: 60px;
}

/* 
 * Blog post
 */
/* Post Comments */
.post-comments {
    margin-top: 40px;
}

.post-comments h3,
.respond h3 {
    font-size: 30px;
    margin: 60px 0 50px;
    text-transform: uppercase;
}

.post-comment {
    padding-left: 70px;
    position: relative;
}

.post-comment + .post-comment,
.replied + .post-comment {
    margin-top: 30px;
}

.replied {
    margin: 20px 0 0 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(38,41,44, 0.05)
}

.post-comment img {
    width: 70px;
    height: 70px;
    position: absolute;
    left: 0;
    top: 0;
}

.post-comment-content-details {
    background-color: #f5f5f8;
    padding: 10px 0 10px 20px;
}

.post-comment-content-details p {
    display: inline-block;
    color: #8c8f94;
}

.post-comment-content-details p + p {
    margin: 0 0 0 20px;
}

.post-comment-date i {
    margin-right: 5px;
    line-height: 18px;
}

.comment {
    padding: 15px 0 0 20px;
}

.comment + .comment {
    margin-top: 0px;
}

.comment-reply {
    margin-top: 5px;
}

/* Respond */
.respond .form-control + .btn {
    margin-top: 10px;
}

/* Sidebar */
.sidebar {
    padding-left: 30px;
}

.widget + .widget {
    margin-top: 60px;
}

.widget-title {
    font-size: 18px;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 1px;   
}

.widget .list-unstyled a:hover {
    padding-left: 15px;
}

.widget .list-unstyled li + li {
    margin-top: 20px;
}

.widget-categories li a span {
    float: right;
}

.widget-tags .list-unstyled li + li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(38,41,44,0.05)
}

.widget-tags{
margin: 60px 0 50px;
}

/* 
 * Contact
 */
/* Section: Contact-us */
.section-contact-us h2 {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 50px;
    letter-spacing: 1px;
}

.section-contact-us .form-group label,
.contact-info h3 {
    margin: 0 0 10px 20px;
    color: #26292c;
    font-size: 16px;
    font-weight: 300; 
}

.section-contact-us textarea {
    height: 130px;
}

.section-contact-us .btn {
    margin-top: 35px;
}

.contact-info {
    padding-left: 30px;
}

.contact-info h3 {
    margin-left: 0;
    color: #8c8f94;
}

.contact-info .list-unstyled li {
    font-size: 14px;
    font-weight: 300;
    color: #8c8f94;
}

.contact-info .list-unstyled + h3,
.contact-info a + h3 {
    margin-top: 30px;
}

.section-contact-us .row + .form-group,
.section-contact-us .form-group + .form-group {
    margin-top: 25px;
}

/* Section: map */
.section-map {
  height: 500px;
  width: 100%
}

.h3 img {
    width: 40px;
    height: 30px;
    margin-right: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.h3{
margin-top: 0px;
}

#background{
    z-index:2;
    background:#ffffff00;
    display:block;
    min-height:50%; 
    min-width:50%;
    color:yellow;
}

#content{
    position:absolute;
    z-index:0;
}

#bg-text
{
    color:#ababab61;
    font-size:24px;
    -webkit-transform:rotate(360deg);
    margin-top: 14%;
    font-weight: 600;
    margin-left: 60px;
}

.post-content .social-links{
    margin-top: 30px;
}

.loading {
    display: none;
    font-size: 16px;
    color: #fff;
    background-color: #787c76b8;
    padding: 2px 10px;
    border: none;
    border-radius: 18px;
    cursor: not-allowed;
    margin-left: 250px;
    margin-top: 20px;
}


#scrollbar-button {
    position: fixed;
    right: -45px; /* Position closer to the scrollbar */
    top: 40%; /* Vertically center */
    transform: rotate(90deg); /* Rotate button to make it vertical */
    /*z-index: 1050;*/ /* Ensure the button is above other content */
    /* Button Style */
    width: 145px !important; /* Adjusted width */
    height: 35px; /* Adjusted height */
    background: linear-gradient(45deg, #f0932b, #eb4d4b); /* Gradient background */
    border: none; /* Remove default border */
    border-radius: 30px; /* Slightly rounded corners */
    color: white; /* White text color */
    font-size: 14px; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    text-align: center; /* Center text */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transitions */
    cursor: pointer; /* Pointer cursor on hover */
    box-sizing: border-box; /* Include padding within width/height */
}

    /* Hover Effect */
    #scrollbar-button:hover {
        transform: rotate(90deg) scale(1.05); /* Slightly enlarge on hover */
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
    }


/* Modal body styling */
.modal-body {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form styling */
#contact-form {
    margin: 0;
}

/* Form group styling */
.form-group {
    margin-bottom: 0.75rem;
}

/* Label styling */
label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
    display: block;
}

/* Input and textarea styling */
.form-control-text {
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 0.4rem 0.6rem;
    font-size: 1.4rem;
    line-height: 1.3;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control-text:focus {
        border-color: #0056b3;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
    }

/* Textarea styling with even smaller height */
.form-control-comment {
    height: 80px; /* More compact height */
    resize: vertical;
}

.form-control-comment {
    height: 80px; /* More compact height */
    resize: vertical;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-body {
        padding: 10px;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    .form-control-text {
        font-size: 0.75rem;
    }
}

.alert {
    position: fixed; /* Fixes the alert's position */
    top: 30px; /* Space from the bottom of the viewport */
    left: 50%; /* Centers the alert horizontally */
    transform: translateX(-50%); /* Centers the alert horizontally */
    padding: 10px 20px; /* Padding around the text */
    background-color: #787c76b8;
    color: #6dff40 /*#FFD700*/;
    border-radius: 20px; /* Optional: Rounded corners */
    opacity: 0; /* Initially fully transparent */
    transition: opacity 0.5s ease-out; /* Fade-in/out effect */
    z-index: 1000; /* Ensures it appears above other elements */
}


/*New menu bar*/


.product-preview-container {
    display: none; /* Hidden by default */
    position: absolute; /* Position relative to the dropdown */
    top: 70px; /* Align it with the top of the dropdown */
    right: -230px; /* Position it next to the dropdown menu */
    width: 700px; /* Set the desired width */
    height: 90vh; /* Full height */
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* Scrollable if content overflows */
    z-index: 9998; /* Ensure it appears above other elements */
    opacity: 0;
    transform: translateX(100%); /* Move it out of view initially */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}



/* Show the product preview container on hover */
.navbar-nav > li.dropdown:hover .product-preview-container {
    display: block;
    opacity: 1;
    transform: translateX(0); /* Move to visible position */
}

.dropdown:hover .product-preview-container {
    display: block;
    opacity: 1;
}


/* Ensure the product-preview section is visible and occupies full height */
.product-preview {
    display: none; /* Hidden by default */
    width: 100%; /* Full width of the container */
    height: auto; /* Adjust height based on content */
}

    .product-preview.active {
        display: block; /* Show the active preview */
    }

    /* Style images inside the product-preview */
    .product-preview img {
        width: 100%; /* Full width */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Ensure images are displayed as block elements */
    }

/* Ensure the row and column layout is working */
.product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Adjust gap as needed */
}





/* Container for each product item */
.product-item {
    text-align: center; /* Center align text and image */
    margin: 20px -3px; /* Add some margin for spacing */
    transition: transform 0.3s ease; /* Smooth scaling effect */
}


    .product-item:hover {
        transform: scale(1.05); /* Slightly increase size on hover */
    }

    /* Style for images inside the product-item */
    .product-item img {
        width: 100%; /* Full width of the column */
        height: 100px; /* Maintain aspect ratio */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
        transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth shadow and transform */
        cursor: pointer; /* Change cursor to pointer on hover */
        background-color: lightgray;
    }

        .product-item img:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
            transform: translateY(-5px); /* Slightly lift the image on hover */
        }

/* Style for text below the image */
.product-text {
    margin-top: 10px; /* Space between image and text */
    font-size: 12px; /* Adjust font size as needed */
    color: #090909; /* Text color */
    text-align: center; /* Center align text */
    font-weight: bold; /* Bold the text */
    text-transform: capitalize; /* Capitalize the text */
    transition: color 0.3s ease; /* Smooth color transition */
}

.product-item:hover .product-text {
    color: #ff6600; /* Change text color on hover */
}

.prd-li {
    list-style-type: disc; /* You can change this to circle, square, or none if you prefer */
    padding-left: 20px; /* Indent the list from the left */
    margin: 20px 0; /* Add some space above and below the list */
}

    .prd-li li {
        font-size: 14px; /* Adjust the font size */
        color: #525354; /* Text color */
        padding: 5px 0; /* Add space between list items */
        transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out; /* Smooth transition on hover */
    }


.html5-main-video {
    top: 0px !important;
    height: 300px !important;
}



/* Responsive adjustments */

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 35px 0 !important;
        z-index: 1100; /* Ensure it’s above the carousel indicators */
    }
    #scrollbar-button {
        z-index: 1050;
    }
}

@media (max-width: 768px) {
    .embossed-text {
        font-size: 25px;
    }

    .breadcrumb {
        padding: 84px 15px !important;
    }
}


