@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #4879c2;
    --text-color: #000;
    --background-light: #f8fafc;
    --text-bg: #e6edf2;
    --color-text: #41739f;
    --light-bg: #f8fafc;
    --primary-gradient: linear-gradient(135deg, #4274a0 0%, #73a7f0 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f8fafc 100%);
    --gradient-hover: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
}


body * {
    font-family: 'Poppins', sans-serif;
}

body {
    box-sizing: border-box;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logos{
    width: 250px;
    margin-right: 15px;
}
.mort-logo{
    width: 120px;
}
.dropdown-item.active, .dropdown-item:active {
   font-weight: normal;
    background-color: transparent !important;
}
.navigation-desk a {
    color: var(--text-color);
    position: relative;
    transition: color 0.3s;
}

/* .navigation-desk a.active {
    color: var(--primary-color);
    font-weight: 600;
} */
.nav-link.active {
  font-weight: 600;
  color: var(--primary-color)
}


.navigation-desk a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #4879c2;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

.navigation-desk a:hover {
    color: #4879c2;
}

.navigation-desk a:hover::after {
    width: 100%;
    background: var(--primary-color);
}

.badge{
    background-color: #555c62;
    letter-spacing: 1.2px;
    font-weight: normal;
}

.badge-gbl{
    background-color: var(--text-bg);
    color: var(--color-text);
    font-weight: 600;
}
.gradiant-texts {
  background: linear-gradient(135deg, #4274a0 0%, #73a7f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;

}

.hero-section {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), 
              url('../assets/images/avsimulation-environment-day.jpg') no-repeat bottom center;
  background-size: cover;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
  color: white;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3));
  z-index: -1;
}


.gradiant-text {
  color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle{
    font-size: 22px;
  }

  /*stats section*/
  .stats-box {
  background: var(--primary-gradient);
  transition: transform 0.3s ease;
}
.stats-box:hover {
  transform: translateY(-5px);
}
/*about section*/
.icons-bg {
  background-color: #e6edf2;
  padding: 15px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-card{
    transition: transform 0.3s ease;
}
.mission-card p{
    font-size: 17px;
}

.mission-card:hover {
  transform: translateY(-5px);
}
.about-section{
    padding: 80px 0px;
}

/*commitment section css*/
.commitment-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
.commitment-section{
  padding: 80px 0px;
}
.commitment-card:hover {
    transform: translateY(-5px);
}

.card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-img-1 {
  background-image: url('../assets/images/RVSF.png');

}

.bg-img-2 {
  background-image: url('../assets/images/Logo-Machinery-Made-In-Italia.png');

}

.bg-img-3 {
  background-image: url('../assets/images/5480338.jpg');
}

.card-img {
  height: 300px;
  background-size: contain;
  background-position: center;
  position: relative;
}
.overlay-text-card {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  padding: 10px 15px;
  width: 100%;
  backdrop-filter: blur(1px);
}

.bottom-overlay {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 0;
}
.bg-cover {
  background-repeat: no-repeat;
}
/*enviournmental section css start*/
.enviournmental-section{
    padding: 80px 0px;
}

.sidebar-menu {
    height: 100vh;
    width: 280px;
    position: fixed;
    top: 0;
    left: -280px;
    background-color: white;
    z-index: 1030;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-menu.show {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1029;
    display: none;
}

.overlay.show {
    display: block;
}

.sticky-header .btn-primary {
    background: var(--primary-gradient);
    border: 0;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    line-height: 1.35;
}

.sticky-header .btn-primary:hover {
    background: var(--gradient-hover);
}

/* Second Section */
.gradient-light {
    background: var(--gradient-light);
}

.manual-entry-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #4b5563;
    margin: 0 auto;
    font-weight: 500;
}

.problem-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.problem-card p {
    color: #495057;
    line-height: 1.6;
}

.problem-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
  justify-content: center;
}

.problem-icon i {
    width: 50px;
    height: 50px;
    background: #e6edf2;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
   
}

/*solution css*/
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-card {
    flex-direction: row;
    height: 100%;
  }
 
}

.service-icon-box {
  background-image: linear-gradient(135deg, #4274a0 0%, #73a7f0 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 30px;
  min-height: 380px;
  min-width: 250px;
}

.service-content {
  padding: 30px;
}

.service-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
.hero-title {
  font-size: 1.9rem;
}
.hero-section {
    min-height: 60vh;
}

.header-logos{
    width: 150px;
    margin-right: 5px;
}
.mort-logo{
    width: 80px;
}

    .container {
        padding: 0 5px !important;
    }
    .section-title h2 {
    font-size: 1.5rem !important;
    line-height: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}
.service-icon-box {
  min-height: 150px !important;
}

.form-check-label{
    font-size: 13px;
}
.demo-form-container {
    padding: 20px !important;
}
.section-title p {
    font-size: .9rem !important;
}
.hero-subtitle {
    font-size: 15px;
}

.mission-card p {
    font-size: 16px !important;
}

.un-list-css-policy ul li{
    font-size: 14px;
}


}




/* 3rd Section */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}




.audience-section {
    padding: 80px 0;
    background-color: #fff;
}


.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: linear-gradient(135deg, white 0%, #FFF8E1 100%);
    border: 1px solid rgb(255 204 128);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: transparent;
    padding: 20px 20px 0;
    color: white;
    text-align: center;
}

.card-header i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.card-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
}

.card-body {
    padding: 10px 25px 25px;
}

.card-body p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
}



.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #475569;
}
.audience-list li i{
    color: var(--primary-color);
}

/* .audience-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 5px;
    top: 3px;
} */

@media (max-width: 768px) {
    .audience-section {
        padding: 50px 0;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }
}


.demo-section {
    padding: 80px 0;
    background: var(--gradient-light)
}


.demo-header {
    text-align: center;
    margin-bottom: 40px;
}


.demo-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.links-anchor{
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.form-check-input:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 109, 253, 0);
}
.form-section h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.form-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 18px;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    /* border: 1px solid var(--primary-color); */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #000;
    border: 3px solid;
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.demo-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}




@media (min-width: 600px) {
    .demo-form {
        grid-template-columns: 1fr 1fr;
    }

    .form-section:last-child {
        grid-column: span 2;
    }

    .demo-button {
        grid-column: span 2;
    }

    .form-footer {
        grid-column: span 2;
    }
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-accordion {
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--primary-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: background-color 0.2s;
    position: relative;
}

.faq-question::before {
    content: "\f0da";
    /* Font Awesome 'caret-right' */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #1e293b;
    margin-right: 10px;
    display: inline-block;
    position: absolute;
    left: 5px;
    /* match your padding */
    top: 50%;
    transform: translateY(-50%);
}


.faq-question:hover {
    background-color: #f8fafc;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 15px 0 25px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: #f8fafc;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .section-header h1 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

.easydata-footer {
    background-color: #191d2e;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-brand h2 i {
    color: var(--primary-color);
}

.social-icons a i:hover {
    color: var(--primary-color);
}

.footer-brand p {
    color: #94a3b8;
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer-columns {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    grid-template-columns: 1fr  1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}



@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Optional: Styling for dropdown in mobile sidebar */
.mobile-dropdown .dropdown-toggle-mobile {
  cursor: pointer;
}

.dropdown-items-mobile a {
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid var(--primary-color);
}


    .footer-brand p {
        margin-bottom: 30px;
    }
}

@media (min-width: 1370px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1680px) {
    .container {
        max-width: 1550px;
    }
}

/* Enable dropdown on hover */
.navigation-desk .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Style dropdown menu */
.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  transition: background 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000;
}

/* Remove Bootstrap default arrow */
.no-toggle-icon::after {
  display: none !important;
}

