* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333
}

h1 {
    text-align: center;
    margin: 20px 0
}

.ge-header {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
    background-color: #fff;
    z-index: 1000
}

.ge-header .ge-logo {
    color: #614021;
    font-weight: 500
}

.ge-header .ge-logo img {
    width: 50px;
    height: auto
}

.ge-header .ge-header__menu {
    justify-content: flex-end
}

.ge-header .navbar-toggler {
    padding: 0;
    border: 0;
    background: #fff0
}

.ge-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.ge-header .navbar-toggler:active {
    outline: none;
    box-shadow: none
}

.ge-banner {
    width: 100%;
    background-color: #fff;
    height: 80vh;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px
}

.ge-banner__container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1
}

.ge-banner__product {
    width: 50%;
    height: 350px;
    display: flex;
    align-items: center
}

.ge-banner__product .ge-banner__img {
    width: 350px;
    height: auto;
    transition: opacity 1s ease;
    display: none
}

.ge-banner__product .ge-banner__img.show {
    display: block !important;
    animation: bounceIn 1s ease-in-out
}

.ge-banner__content {
    width: 50%;
    padding: 20px
}

.ge-banner__content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    overflow: hidden;
    height: 90px;
    color: #614021
}

#type-text::after {
    content: '|';
    animation: blink 1s step-start infinite
}

.ge-banner__content p {
    font-size: 1.2rem;
    font-weight: 200
}

.ge-banner__bg {
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: auto;
    z-index: 0;
    right: 0;
    display: none
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0)
    }

    100% {
        transform: translate3d(85px, 0, 0)
    }
}

@media (max-width:768px) {
    .waves {
        height: 40px;
        min-height: 40px
    }

    .content {
        height: 30vh
    }

    h1 {
        font-size: 24px
    }
}

.ge-about {
    background-color: #f9f5e5;
    padding: 60px 0;
    overflow: hidden
}

.ge-about__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px
}

.ge-about__content {
    flex: 1 1 50%;
    color: #333
}

.ge-about__content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #614021
}

.ge-about__content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px
}

.ge-about__highlights {
    list-style: none;
    padding: 0;
    margin-top: 25px
}

.ge-about__highlights li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center
}

.ge-about__highlights span {
    margin-right: 10px;
    color: green;
    font-size: 18px
}

.ge-about__image {
    flex: 1 1 40%;
    text-align: center
}

.ge-about__image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgb(0 0 0 / .08)
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease
}

.animate.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:768px) {
    .ge-about__grid {
        flex-direction: column
    }

    .ge-about__image {
        order: -1
    }
}

.ge-products {
    padding: 60px 0;
    background: #fff
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px
}

.section-header h2 {
    font-size: 32px;
    color: #614021;
    margin-bottom: 15px
}

.section-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.7
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px
}

.ge-product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgb(0 0 0 / .06);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.ge-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgb(0 0 0 / .1)
}

.ge-product__img-outer img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px
}

.ge-product h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    color: #614021
}

.ge-product p {
    color: #555;
    font-size: 14px
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out
}

.animate.visible {
    opacity: 1;
    transform: translateY(0)
}

.ge-services,
.ge-why-choose {
    background-color: #f8f4e1;
    padding: 60px 0
}

.testimonials-section {
    background: #614021;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.testimonials-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 350px;
    box-shadow: 0 10px 25px rgb(0 0 0 / .08);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.3s
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.6s
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.9s
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px
}

.testimonial-card h4 {
    font-weight: 700;
    color: #614021;
    margin: 0
}

.ge-services {
    background: #f9f9f9;
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    font-size: 32px;
    color: #614021
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px
}

.services-list:last-of-type {
    margin-bottom: 0
}

.service-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / .06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px)
}

.service-item h4 {
    margin-bottom: 10px;
    color: #614021
}

.service-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgb(0 0 0 / .08)
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease
}

.ge-contact {
    background: #f4f8f7;
    padding: 80px 20px
}

.ge-contact__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.ge-contact h2 {
    font-size: 32px;
    color: #614021;
    margin-bottom: 15px
}

.ge-contact p {
    color: #555;
    margin-bottom: 40px
}

.ge-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column
}

.full-width {
    flex: 1 0 100%
}

input,
textarea {
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border 0.3s
}

input:focus,
textarea:focus {
    border-color: #66bb6a
}

button {
    background-color: #614021;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s
}

button:hover {
    background-color: #614021
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease
}

.animate.visible {
    opacity: 1;
    transform: translateY(0)
}

.ge-footer {
    background-color: #614021;
    color: #f1f1f1;
    padding: 60px 20px 20px;
    font-size: 15px
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    color: #fff
}

.footer-column p,
.footer-column a {
    color: #fff;
    text-decoration: none;
    line-height: 1.6
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-column ul li {
    margin-bottom: 10px
}

.footer-column ul li a:hover {
    color: #F8F4E1;
    transition: 0.3s
}

.social-icons a img {
    width: 22px;
    margin-right: 10px;
    filter: brightness(.9);
    transition: filter 0.3s
}

.social-icons a:hover img {
    filter: brightness(1.2)
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #74512D;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    color: #fff
}

@media (max-width:768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .ge-footer{
            padding: 30px 20px 20px;
    }

    .footer-column {
        margin-bottom: 30px;
        flex:1;
    }
}

@media (max-width:768px) {
    .form-row {
        flex-direction: column
    }

    sectiom {
        padding: 40px 0px !important
    }
}

@media (max-width:768px) {
    .services-list {
        grid-template-columns: 1fr
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center
    }
}

@media screen and (max-width:768px) {
    .ge-banner__product {
        width: 100%;
        height: 300px;
        justify-content: center
    }

    .ge-banner__product .ge-banner__img {
        width: 240px;
    }

    .ge-banner__content {
        width: 100%;
        padding: 10px
    }

    .ge-banner__content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .ge-banner__content p {
        font-size: 1rem
    }

    .ge-banner__bg {
        display: none
    }

    .ge-banner__container {
        flex-direction: column-reverse
    }

    .ge-banner {
        height: auto;
        padding-bottom: 5px;
    }

    .ge-about {
        background-color: #f8f4e1;
        padding: 40px 0
    }

    .ge-products {
        padding: 40px 0
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

@keyframes waveScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.print {
    padding: 30px;
}
.print textarea{
    width: 100%;
    height: 100px;
    resize: none;
}
.print__outer{
    /* border: 1px solid #000; */
}
.print__header{
    padding: 10px;
    display: flex;
}
.print p,label{
    font-size: 14px;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1;
}

.print__header .print__header__text{
    padding-left: 20px;
}
.print__header__text h1{
    font-size: 20px;
    line-height: 1;
    margin: 0;
    margin-bottom: 5px;
    text-align: left;
}
.print__header__text p{
    font-size: 10px;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1;
}
.print__header__text p:last-child{
    margin-bottom: 0;
}
.print__header__contact{
    margin-left: auto;
}
.print__header__contact p{
    font-size: 10px;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1;
}
.print__header__contact p:last-child{
    margin-bottom: 0;
}
.print__invoice{
    padding-top: 30px;
}
.print__section h2{
    font-size: 20px;
    line-height: 1;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}
.print input, textarea{
    padding: 5px;
    font-size: 14px;
}
.print__input{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center
    
}
.print__input label{
    font-size: 14px;
    margin: 0;
    line-height: 1;
    min-width: 170px;
}
.print__invoice__details{
    display: flex;
}

.print__invoice__details__left{
    padding-right: 20px;
}
.print__invoice__details__right{
    padding-left: 20px;
}
.print__invoice__details__left, .print__invoice__details__right{
    flex: 1;
}
.print__section{
    margin-top: 20px;
}
.print__section h3{
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.print__customer__check .print__input{
    text-align: left;
    justify-content: flex-start;
    margin-top: 15px;
}

textarea.auto-resize {
    overflow: hidden;
    resize: none;
    font-family: inherit;
    font-size: 1em;
  }

.print__product table td,th, .print__summary table td,th{
    padding: 5px !important;
    font-size: 14px !important;
    border: 1px solid #eaeaea !important;

}

.print__summary{
    margin-left: auto;
}

.print__summary table{
    margin: 0;
}

@media print {
    @page {
        size: A4 landscape;
        margin: 0;
    }
    .print__invoice{
        padding-top: 8px;
    }
    .print input, textarea{
        padding: 0px !important;;
        border: 0px;
    }
    body {
        margin: 0;
        padding: 0;
    }

    .print {
        padding: 0px;
    }
    .print textarea{
        width: 100%;
        height: auto;
        resize: none;
    }

    .print_hide{
        display: none;
    }
    .print__input label{
        font-size: 12px;
    }
    .print__section{
        margin-top: 4px;
    }
    .print__section h2{
        font-size: 14px;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }
    .print__section h3{
        font-size: 12px;
        margin-bottom: 4px;
        margin-bottom: 4px;
        margin-top: 4px;
    }
    .print__product table td, th{
        font-size: 10px !important  ;
        padding: 4px !important;
    }

    .print input, textarea {
        font-size: 12px;
    }

    .print__product table td, th input, textarea{
        font-size: 10px !important;
    }
}
  
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
