@font-face {
    font-family: "Made";
    src: url("/public/font/Reforma2018-Blanca.otf");
}

@font-face {
    font-family: "Made2";
    src: url("/public/font/Reforma2018-Negra.otf");
}

* {
    font-family: "Made";
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Made2";
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

#hero .overlay {
    position: absolute;
    inset: 0;
    background: #141414;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 20, 1) 0%,
        rgba(71, 71, 71, 0.51) 18%,
        rgba(255, 255, 255, 0) 50%,
        rgb(88 88 88 / 0%) 84%,
        rgb(116 116 116 / 0%) 100%
    );
    z-index: 1;
}

#hero .content {
    position: absolute;
    top: 0%;
    z-index: 2;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 0px;
    height: 12vh;
    width: 100%;
}

#hero .content .sowtex-image {
    height: 100px !important;
}
#hero .content .pivot-image {
    scale: 1 !important;
}

.hero-main{
  z-index: 2;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-desc {
    font-size: 20px !important;
}

@media (min-width: 1400px) {
    .hero-desc {
        font-size: 25px !important;
    }

    .about-desc {
        font-size: 22px !important;
    }

    .about-title {
        font-size: 36px !important;
    }

    .hero-title {
        font-size: 4rem !important;
    }

    .image-wrapper {
        background-size: contain !important;
    }

    #hero .content {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 2;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0px;
        height: 32vh;
        width: 17%;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .about-desc {
        font-size: 16px !important;
    }

    .about-title {
        font-size: 30px !important;
    }

    #hero .content {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 2;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0px;
        height: 32vh;
        width: 17%;
    }
}

.scroll-down {
    font-style: italic;
    animation: bounce 2s infinite;
}

#navbut{
  gap: 10px;
}

.bar-nav{
  color: #a1a1a1f5; cursor: pointer;
}

.logo-left{
  top: 0px; z-index:2; left:0px; height:100%; width:50%;
}

.logo-right{
  top: 0px; z-index:2; right:0px; height:100%; width:50%;
}


@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

#contact {
    background-color: #ead8a4;
    opacity: 0;
    transition: all 0.3s ease;
}

.contactForm{
  border-radius: 10px;
}

.form-control {
    border: 0;
    border-bottom: 2px solid #79797a4b;
}
.submit-btn {
    background-color: #5e846f;
    color: white;
    border-radius: 10px;
    padding: 0.75rem 4rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #ffa600;
}

.image-wrapper {
    background-image: url("../image/contact-cover.png");

    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

@media (max-width: 650px) {
    .image-wrapper {
        background-size: cover !important;
        background-position: center;
    }

    .about-desc {
        font-size: 18px !important;
    }

    .about-title {
        font-size: 28px !important;
    }
}

.about-desc {
    font-size: 12px;
}

.about-title {
    font-size: 26px;
}
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.8s ease-in-out;
    z-index: 1000;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

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

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.cursor-pointer {
    cursor: pointer;
}

#sidebar-menu {
    transition: all 0.8s ease;
}

@media (max-width: 768px) {
    .bars-menu {
        top: 120px !important;
    }
}

.is-invalid {
    border-color: red;
}

#navbut a {
    text-decoration: none;
    color: white;
    z-index: 9;
    position: relative;
    font-size: 18px;
    transition: color 0.3s ease;
}

#navbut h4 {
    border: 1px solid #ffffffdc;
    margin: 0 7px;
    border-radius: 50px;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
}

#navbut h4::after {
    content: "";
    background-color: #ffffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

#navbut h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#navbut h4:hover .rm-links {
    color: black !important;
}

@media (min-width: 1400px) {
    #navbut a {
        text-decoration: none;
        color: white;
        z-index: 9;
        position: relative;
        font-size: 28px;
    }

    #navbut h4 {
        border: 1px solid #e4fae2ff;
        margin: 0 7px;
        border-radius: 50px;
        padding: 8px 26px;
        position: relative;
        overflow: hidden;
        transition: all ease 0.4s;
        display: flex;
        align-items: center;
    }

    .rm-title {
        font-size: 4rem;
        color: white;
    }

    .rm-logo {
        max-width: 520px;
    }
}

@media (min-width: 900px) and (max-width: 1399px) {
    #navbut a {
        text-decoration: none;
        color: white;
        z-index: 9;
        position: relative;
        font-size: 18px;
    }

    #navbut h4 {
        border: 1px solid #ffffffdc;
        margin: 0 7px;
        border-radius: 50px;
        padding: 8px 16px;
        position: relative;
        overflow: hidden;
        transition: all ease 0.4s;
        display: flex;
        align-items: center;
    }

    .rm-title {
        font-size: 2.8rem;
        color: white;
    }

    .rm-logo {
        max-width: 380px;
    }
}

@media (max-width: 899px) {
    #navbut {
        display: none !important;
    }

    .rm-logo {
        max-width: 300px;
    }

    .rm-title {
        font-size: 0.7rem;
        color: white;
        display: none;
    }

    #hero {
        height: 37vh;
    }
}

.footer {
    background-color: white;
    color: black;
    padding: 20px 0 0 0;
}

.footer-top {
    padding-bottom: 30px;
}

.footer a {
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    transform: translateX(5px);
}

.logo-section {
    text-align: center;
}

.logo-section h3 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.logo-section p {
    color: black;
    font-size: 14px;
    margin: 0;
}

.links-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.links-section a {
    padding: 8px 16px;
    border-radius: 4px;
    background: #1a1a1a;
    border: 1px solid black;
    transition: all 0.2s ease;
    font-size: 16px !important;
}

.links-section a:hover {
    background: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid black;
}

.contact-info {
    text-align: center;
    margin-bottom: 5px;
}

.contact-info span {
    margin: 0 20px;
    color: black;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: right;
}

.contact-info span:hover {
    transform: translateX(2px);
}

.rm-foot-1 {
    width: 680px;
    height: 80px;
    border-radius: 20px;
}

.rm-foot-2 {
    width: 350px;
    border-radius: 20px;
}

.foot-navbut {
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-about {
        text-align: center;
    }

    .overlay {
        background: linear-gradient(
            180deg,
            #000000,
            #000000c7,
            rgba(255, 255, 255, 0) 50%,
            rgb(88 88 88 / 0%) 84%,
            rgb(116 116 116 / 0%) 100%
        ) !important;
    }

    .footer-about {
        font-size: 16px !important;
    }

    #hero video {
        object-fit: contain;
    }
    .footer-top {
        padding-bottom: 20px;
    }

    .logo-section h3 {
        font-size: 20px;
    }

    .logo-section p {
        font-size: 14px;
    }

    .links-section a {
        font-size: 16px !important;
        padding: 6px 12px;
    }

    .contact-info span {
        font-size: 14px;
        margin: 0 10px;
    }

    .rm-foot-1 {
        width: 84%;
        height: 48px;
        border-radius: 10px;
    }

    .rm-foot-2 {
        width: 74%;
        border-radius: 10px;
    }

    .foot-wrap {
        gap: 40px;
    }

    .foot-navbut {
        gap: 20px;
    }

    .rm-foot-links {
        font-size: 16px !important;
    }
}

/* basic styling */
.section-padding {
    padding: 40px 0px;
    margin-bottom: 10px;
    margin-top: 10px;
}
@media (max-width: 750px) {
    .section-padding {
        padding: 20px 0px;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .journey-title-heading {
        font-size: 20px !important;
    }
    .insigth-heading {
        font-size: 20px !important;
    }
    .blog-part-heading {
        font-size: 20px !important;
    }
    .planet-heading {
        font-size: 20px !important;
    }
    .review-heading {
        font-size: 20px !important;
    }
    .cont-heading {
        font-size: 20px !important;
    }
}
/* basic styling */

/* journey section */
.journey-img {
    object-fit: cover;
    height: 180px;
    width: 100%;
}

@media (max-width: 750px) {
    .journey-img {
        height: 140px;
        width: 90%;
    }
}
/* journey section */
/* insight section */
.insight-image {
    height: 280px;
    width: 100%;
}

@media (max-width: 750px) {
    .insight-image {
        height: 140px;
        width: 100%;
    }

    .goals h3 {
        font-size: 16px !important;
    }

    .goals p {
        font-size: 12px !important;
    }
}

.insight-description {
  font-size: 12px;
}

.insight-image {
  object-fit: cover;
  width: 100%;
  height: auto;
}



/* insight section */

/* blog section */
.blog-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.blog-marquee-content {
    display: inline-flex;
    gap: 20px;
}

.blog-card-marquee {
    flex-shrink: 0;
    width: 280px;
    white-space: normal;
}

.blog-image {
    height: 200px;
    object-fit: cover;
}

.blog-card {
    width: 18rem;
}

.blog-heading {
    font-size: 16px;
}

.blog-description {
    font-size: 13px;
}

@media (max-width: 750px) {
    .blog-card {
        width: 15rem !important;
    }

    .blog-image {
        height: 110px;
        object-fit: cover;
    }

    .blog-heading {
        font-size: 13px;
    }

    .blog-description {
        font-size: 10px;
    }
}

/* blog section */

/* planet section */
.planet-first-image-1 {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.planet-first-image-2 {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.slot-btn {
    margin-left: 90px;
    margin-top: 30px;
}

@media (max-width: 750px) {
    .planet-first-image-1 {
        height: 240px;
        width: 90%;
    }

    .planet-goal h5 {
        font-size: 16px !important;
    }
    .planet-goal p {
        font-size: 12px !important;
    }

    .slot-btn {
        margin-left: 0px;
        margin-top: 0px;
    }

    .planet-first-image-2 {
        height: 150px;
        width: 88%;
    }
}
/* planet section */
/* review section */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    gap: 20px;
}

.review-card {
    flex-shrink: 0;
    width: 300px;
    white-space: normal;
}

.marquee-content:hover {
    animation-play-state: paused;
}
@media (max-width: 750px) {
    .review-text {
        font-size: 14px !important;
    }
}

.review-img {
    height: 45px;
    width: 48px;
    object-fit: cover;
}

.review-name {
    font-size: 12px;
}

.review-title {
    font-size: 12px;
}
/* review section */
/* contact section */
.image-wrapper {
    height: 90vh;
}
.contact-form {
    min-height: 60vh;
}

@media (max-width: 750px) {
    .image-wrapper {
        height: 80vh;
    }
    .contact-form {
        min-height: 50vh;
    }
}
/* contact section */
/* footer */
/* Footer Container */
.footer-container {
  min-height: 260px;
}

/* Brand Logo Image */
.footer-brand-img {
  height: 45px;
  width: 400px;
  filter: invert(2);
}

/* About Text */
.footer-about {
  font-size: 16px;
  padding-left: 14px;
  margin: 20px 0px;
}

/* Footer Navigation Links */
.footer-links {
  gap: 30px;
  padding-left: 10px !important;
}

.footer-link {
  font-size: 16px;
}

/* Contact Info */
.contact-info {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 1rem;
  color: #212529; /* Bootstrap text-dark fallback */
  width: 100%;
}

.contact-heading {
  font-size: 16px;
}

/* Subscription Button */
.footer-subscribe {
  gap: 10px;
}

.footer-subscribe-btn {
  font-size: 18px;
  padding: 0.5rem 1.5rem;
}

/* Rematerial Logo */
.footer-logo {
  width: 76%;
}

/* footer */