
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    background: #323232;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

.hero-heading {
    font-family: "Jost", sans-serif;
}

#hero h2 {
    color: #ef9836;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #FD7B33;
}

#hero .btn-get-started:hover {
    background: #209dd8;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 0 8px 40px;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    position: relative;
}

#hero .btn-watch-video i {
    color: #fff;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 7px;
    transition: 0.3s;
}

#hero .btn-watch-video:hover i {
    color: #FD7B33;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }

    #hero .btn-watch-video {
        font-size: 16px;
        padding: 10px 0 8px 40px;
        margin-left: 20px;
    }

    #hero .btn-watch-video i {
        font-size: 32px;
        top: 7px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* ================================== */
/* ==== About Glozic Section start here */
/* ================================== */

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #FD7B33;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #FD7B33;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #FD7B33;
}

.about .content .btn-learn-more:hover {
    background: #FD7B33;
    color: #fff;
    text-decoration: none;
}



/* =========================================== */
/* Key Challenges We Solve section start here  */
/* =========================================== */

/* key challenges start */
.challenges {
    text-align: center;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    /* margin: 10 110px; */
}

.challenge-card {
    background: linear-gradient(135deg, #fff7f0, #fde2cf);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.challenge-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #f9c58d;
}

.challenge-card i {
    font-size: 2rem;
    color: #ffa162;
    margin-bottom: 1rem;
}

.challenge-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-footer {
    text-align: center;
    margin-top: 0rem;
}

.about-footer p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.challenge-btn-learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FD7B33;
    color: #FD7B33;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
/* ======================================== */
/* key challenges end*/
/* ======================================== */


/* ======================================== */
/* ======= Home page 4th section start here */
/* ======================================== */
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #323232;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
}

.why-us .accordion-list span {
    color: #FD7B33;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #FD7B33;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}
.image-height {
    height: 450px;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/* ======================================== */
/*     Home 4th Section end Here */
/* ======================================== */

/* ======================================== */
/*     Solution Section Start Here */
/* ======================================== */


/* solution start */
.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 .25rem;
}

.solutions-subtitle {
    color: var(--muted);
    margin: 0 auto;
}

.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto 24px;
}

.solution-tabs .tab {
    border: 2px solid rgba(0, 0, 0, .08);
    background: #efe8d0;
    color: #242424;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.solution-tabs .tab:hover,
.solution-tabs .tab:focus-visible {
    outline: none;
    border-color: #cd6640;
    background: rgba(205, 102, 64, .10);
    transform: translateY(-2px);
}

.solution-tabs .tab.active {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    border-color: transparent;
    outline: none;
    box-shadow: 0 8px 18px rgba(205, 102, 64, .28);
}

.solution-card-wrapper {
    position: relative;
}

.solution-card {
    display: none;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff7f0, #fde2cf);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 24px;
    animation: sol-fade .5s ease;
}

.solution-card.active {
    display: flex;
}

.solution-card .card-text {
    flex: 1;
    min-width: 280px;
}

.solution-card .card-text h3 {
    margin: 0 0 8px;
}

.solution-card .card-text ul {
    margin: 0 0 14px;
    padding-left: 20px;
    color: var(--dark);
}

.solution-card .card-text ul li {
    margin: 6px 0;
}

.solution-card .card-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.solution-card .card-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    border-color: transparent;
}

.btn-ghost {
    background: #fff;
    color: var(--dark);
}

@keyframes sol-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .solution-card {
        flex-direction: column;
        padding: 18px;
    }
}

.btn-primary {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 10px
}

/* ======================================== */
/*     Solution Section end Here */
/* ======================================== */


/* ======================================== */
/*     Features Section end Here */
/* ======================================== */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #FD7B33;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #323232;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #FD7B33;
}

/* ======================================== */
/*     Features Section end Here */
/* ======================================== */


/* ======================================== */
/*     Pricing Section start Here */
/* ======================================== */


/* pricing section start here */
.pricing {
  background: #fff;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.section-title p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pricing-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  text-align: center;
  padding: 40px 25px;
  width: 32%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(20, 45, 100, 0.15);
}

.pricing-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.pricing-period {
  color: #FD7B33;
  font-size: 15px;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 500;
  color: #333;
  /* margin-bottom: 24px; */
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.pricing-features li {
  padding: 6px 0;
  color: #000;
  font-size: 15px;
}

.pricing-features li.muted {
  color: #bcbcbc;
}

.pricing-btn {
  display: inline-block;
  border: 1px solid #FD7B33;
  color: #FD7B33;
  border-radius: 50px;
  padding: 10px 35px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #FD7B33;
  color: #fff;
}

@media (max-width: 991px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
    max-width: 400px;
  }
}

/* ======================================== */
/*     Pricing Section end Here */
/* ======================================== */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
    padding: 18px 18px 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.field label {
    font-weight: 700;
    color: #222;
}




.field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #242424;
}

.field .err {
    color: #d9534f;
    font-size: 12px;
    height: 14px;
}

.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #242424;
}

.form-actions {
    text-align: center;
    padding-top: 6px;
}

.contact-form-btn-grad {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #cd6640, #ef9836);
    box-shadow: 0 10px 28px rgba(205, 102, 64, .20);
    transition: transform .15s ease, opacity .2s ease;
}

.contact-form-btn-grad:focus,
.contact-form-btn-grad:active {
  outline: none;
  box-shadow: 0 10px 28px rgba(205, 102, 64, 0.2);
}
.contact .info {
    border-top: 3px solid #FD7B33;
    border-bottom: 3px solid #FD7B33;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #FD7B33;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #323232;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #FD7B33;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #FD7B33;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #FD7B33;
    border-bottom: 3px solid #FD7B33;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #FD7B33;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #FD7B33;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #209dd8;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.icofont {
  font-family: 'IcoFont' !important;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
}
