* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Calibri';
    box-sizing: border-box;
}
body {
    background: #fefefe;
    overflow-x: hidden;
}
/* PRELOADER STYLING----------------------- */
#preloader {
    background: rgba(0, 0, 0, 1) url("../../images/websymbol.png") no-repeat center center;
    background-size: 92px 92px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 110vh;
    width: 100%;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }50% {
        transform: translateY(-5px); 
    } 100% {
        transform: translateY(0);
    }
}
/* PRELOADER STYLING------------------------- */

/*********** NAVBAR STYLING **************/
header {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color:black;
	height: 75px;
	border-bottom: 4px solid #20b15c;
    width: 100%;
    height: 80px;
    background: #11101b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}
#logo {
    height: 55px;
}
.hamburger {
    display: none;
}
.nav-bar ul {
    display: flex;
}
.nav-bar ul li a {
    color: #fefefe;
    font-size: 16px; 
    padding: 10px 20px; 
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
}
.nav-bar ul li a:hover {
    border-bottom: 2px solid #2ecc71;
    color: #2ecc71;
}
.nav-bar:hover{
    color: #2ecc71;
}
.nav-bar ul li a.active {
    color: #2ecc71;
    background: #fefefe;
}
@media only screen and (max-width: 900px) {
  header {
      padding: 0 30px;
  }
  .hamburger {
      display: block;
      cursor: pointer;
  }
  .hamburger .line {
      width: 30px;
      height: 3px;
      background: #fefefe;
      margin: 6px 0;
  }
  .nav-bar {
      height: 0;
      overflow: hidden;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      width: 100%;
      background: #11101b;
      transition: height 0.5s;
      z-index: 2;
      max-height: 400px;
  }
  .nav-bar.active {
      height: auto;
  }
  .nav-bar ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      opacity: 0;
      transition: opacity 0.5s;
  }
  .nav-bar.active ul {
      opacity: 1;
  }
  .nav-bar ul li {
      margin: 10px 0;
  }
  .nav-bar ul li a {
      font-size: 18px;
  }
}
/* **\*** END OF HEADER STYLING*************** */

/* Top button ------------------*/
#scrollUpBtn {
    background-color: #4d4d4d;
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 20px;
    right: 0;
    margin-right: 20px;
    border-radius: 50%;
    border: 3px solid green;
    color: white;
    cursor: pointer;
    padding: 1px;
    font-size: 18px;
}
/* Top button -------------------------*/

/* *****HERO SECTION CONTENT STYLING ********/
.hero-image {
    width: 100%;
    height: 88vh;
    max-height: 90vh;
    /* filter:brightness(0.7) ; */
}
.hero-section h1 {
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
    font-size: 4.5vw;
    height: auto;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
/* *****HERO SECTION CONTENT STYLING ********/
/* DOWN ARROW -----------------*/
.down-arrow {
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin: -1px auto;
    position: relative;
    bottom: 80px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: fit-content;
    padding:5px;
    border-radius: 50%;
}
.down-arrow i {
    font-size: 1.6rem;
    color: #fff;
}
.down-arrow:hover::after {
    opacity: 1;
}
/* DOWN ARROW -----------------*/

/*  ABOUT CONTENT STYLING----------------------- */
.about-fbg-wild {
    background: linear-gradient(to right, #eeeeee, #f3f3f3);
    margin-top: -46px;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}
.hero-content-mid {
    margin-bottom: 20px;
    padding-top: 30px;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}
.hero-tagline {
    font-size: 2.3em;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}
.hero-heading {
    font-size: 2.6em;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}
.system-details{
    align-items: center;
    justify-content: space-between;
    margin: 0px auto 10px auto;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    transition: opacity 1s ease-out, visibility 1s ease-out;
}
.system-details-content {
    width: 100%;
    padding:10px;
    margin: 0 auto;
    display: flex;
  }
  .aside-text, .aside-img {
    flex: 1; 
  }
  .aside-text {
    padding-right: 20px;
    text-align: justify;
    font-size: 1.1rem;
    color: #000;
    line-height: 2rem;
  }
  .aside-text h1{
    font-size: 45px;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 4px solid rgb(3, 102, 28);
  }
  .aside-img {
    display: flex;
    justify-content: center; 
  }
  .aside-img img {
    width: 90%;
    max-width: 100%; 
    height: 350px; 
    margin-top: 23px;
  }
  @media (max-width: 768px) {
    .system-details-content{
        flex-direction: column;
    }
    .aside-text{
        padding-right: 0px;
        width: 100%;
    }
    .aside-img img{
        height: 200px;
    }
  }
.about-know-more-button {
    display: inline-flex;
    align-items: center;
    background-color: #333;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-bottom: 23px;
}
.about-know-more-button:hover {
    background-color: #111;
}
.about-know-more-button i {
    margin-left: 0.5rem;
}
/*  ABOUT CONTENT STYLING----------------------- */

/* INNOVATION------------------------- */
.innovation {
    width: 100%;
    background-color: #f7f7f7;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: opacity 1s ease-out, visibility 1s ease-out, transform 0.3s ease-in-out;
    font-size: 2.5rem;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 20px auto;
}
@media (max-width: 768px) {
    .innovation {
        font-size: 2rem;
        padding: 2.5rem 1.5rem;
    }
}
@media (max-width: 480px) {
    .innovation {
        font-size: 1.5rem;
        padding: 2rem 1rem;
    }
}
@media (max-width: 768px) {
    .innovation {
        font-size: 2rem;
        padding: 2.5rem 1.5rem;
    }
}
@media (max-width: 480px) {
    .innovation {
        font-size: 1.5rem;
        padding: 2rem 1rem;
    }
}
/* INNOVATION------------------------- */

/* UNDERLYING PRINCIPLE STYLING---------------- */
.underlying-principle {
    width: 100%;
    background-color: #f7f7f7;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: opacity 1s ease-out, visibility 1s ease-out, transform 0.3s ease-in-out;
    /* font-size: 2.5rem; */
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 20px auto;
}
.underlying-principle h3 {
    color: #444;
    font-family: Arial, sans-serif;
    font-size: 2em;
    margin-bottom: 15px;
}
.underlying-principle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-bottom: 15px;
    border: none;
}
.underlying-principle-button a {
    text-decoration: none;
    color: inherit;
    font-weight: 900;
}
.underlying-principle-button i {
    margin-left: 0.5rem;
}
.underlying-principle-button:hover {
    background-color: #555;
    color: #fff;
}
@media (max-width: 768px) {
    .underlying-principle h3 {
        font-size: 1.5em;
    }
    .underlying-principle-button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}
@media (max-width: 480px) {
    .underlying-principle {
        padding: 30px 5px;
    }
    .underlying-principle h3 {
        font-size: 1.2em;
    }
    .underlying-principle-button {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}
/* UNDERLYING PRINCIPLE STYLING---------------- */

/* PURPOSE AND QUOTE STYLING-------------------- */
.purpose-and-quote {
    position: relative;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.purpose-and-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    background-image: url('purpose-and-quotes-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(3px) brightness(0.6);
    z-index: -1; 
}
.purpose-and-quote.visible {
    opacity: 1;
    visibility: visible;
}
.l2m-rail-purpose {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}
.quote {
    color: #fff;
    color: #fff;
    line-height: 1.8;
    font-size: 3rem;
    margin: 0;
    position: relative;
    padding: 2rem 3rem -5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 2rem auto;
    font-weight: 900;
    padding-bottom: -90px;
}
.quote q {
    display: block;
    font-size: 2.rem;
    font-weight: 900;
    color: #fff;
}
/* PURPOSE AND QUOTE STYLING-------------------- */

/* FEATURES AND ADVANTANGES STYLING----------------------- */
.features-and-advantages {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.features-and-advantages.visible {
    opacity: 1;
    visibility: visible;
}
.features,
.advantages {
    width: 50%;
    padding: 3.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}
.features h3,
.advantages h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 3px solid #757575;
    color: #333;
    margin-bottom: 1rem;
}
.features ul,
.advantages ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    color: #444;
}
.features li,
.advantages li {
    display: flex; 
    align-items: flex-start;
    gap: 0.5rem; 
    line-height: 2.5rem; 
}
.features li::before,
.advantages li::before {
    content: "\2022"; 
    color: #757575; 
    font-weight: bold;
    flex-shrink: 0; 
}
.features-know-more-button,
.advantages-know-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}
.features-know-more-button:hover,
.advantages-know-more-button:hover {
    background-color: #111;
}
.features-know-more-button i,
.advantages-know-more-button i {
    margin-left: 0.5rem;
}
.features-and-advantages .features,
.features-and-advantages .advantages {
    border-right: 2px solid #e0e0e0;
    padding-right: 2rem;
    position: relative;
}
.features-and-advantages .advantages {
    border-left: 1px solid #e0e0e0;
    padding-left: 2rem;
}
@media (max-width: 768px) {
    .features-and-advantages {
        flex-direction: column;
        align-items: flex-start;
    }
    .features,
    .advantages {
        width: 100%;
        padding: 2rem;
    }
    .features li,
    .advantages li {
        gap: 0.3rem; 
    }
    .innovations-list::before{
        flex-shrink: 0;
    }
}
/* FEATURES AND ADVANTANGES STYLING--------- */
/* RESPONSIVENESS-------------------*/
@media (max-width: 1200px) {
    .table-container {
        width: 95%;
        top: 60%;
    }
    th,td {
        font-size: 24px;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .down-arrow{
        display: none;
    }
    .table-container {
        width: 100%;
        top: 70%;
        padding: 15px;
    }
    th,
    td {
        font-size: 19px;
        padding: 8px;
    }
    .table-container h2 {
        font-size: 20px;
    }
    .hero-section h1 {
        font-size: 2rem; 
     }
     .about-fbg-wild{
        margin-top: -19px;
     }
     .digit{
        font-size: 15px;
     }
    .hero-tagline {
        font-size: 2em;
    }
    .hero-heading {
        font-size: 2.3em;
    }
    .about-intro {
        font-size: 1.2rem;
        text-align: center;
    }
    .innovations-list li {
        margin: 1rem 2rem;
    }
    .about-section {
        padding: 1.5rem;
    }
    .about-details {
        padding: 1rem;
    }
    .about-know-more-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    .features,
    .advantages {
        width: 100%;
        border-right: none;
        border-left: none;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    .features-and-advantages {
        flex-direction: column;
    }
    .purpose-and-quote {
        padding: 2rem;
    }
    .l2m-rail-purpose {
        font-size: 2.2rem;
    }
    .quote {
        font-size: 1.8rem;
        padding: 1.5rem 2rem;
    }
    .quote::before {
        font-size: 3rem;
    }
    
    .testimonial img{
        width: 80%;
    }
}
@media (max-width: 480px) {
    .down-arrow{
        display: none;
    }
    .hero-image{
        height: 70vh;
    }
    .hero-section h1{
        font-size: 25px;
    }
    .table-container {
        width: 100%;
        top: 60%;
        padding: 10px;
    }
    .about-fbg-wild{
        margin-top: -19px;
     }
    th,
    td {
        font-size: 16px;
        padding: 6px;
    }
    .table-container h2 {
        font-size: 18px;
    }
    .hero-tagline {
        font-size: 1.7em;
    }
    .hero-heading {
        font-size: 2em;
    }
    .about-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    .innovations-list li {
        margin: 1rem 1rem;
    }
    .about-section {
        padding: 1rem;
    }
    .about-details {
        padding: 0.8rem;
    }
    .about-know-more-button {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    .mvis-video {
        padding: 1.5rem;
    }
    .mvis-video h2 {
        font-size: 1.4rem;
    }
    .mvis-video video {
        height: 200px;
    }
}
/* END OF RESPONSIVENSS-------------------- */

/* FOOTER STYLING-------------------------------- */
footer {
    background-color: #383838;
    color: #e9f8ff;
    margin-bottom: 0;
    text-align: left;
}
footer a {
    color: #e9f8ff;
    text-decoration: none;
    font-size: 16px;
}
footer h4 {
    font-size: 18px;
    border-bottom: 3px solid white;
    padding-bottom: 5px;
    width: 130%;
    text-align: left;
    margin: 0 auto;
}
.follow-us {
    font-size: 18px;
    border-bottom: none;
    padding-bottom: 5px;
    width: 130%;
    text-align: left;
    margin: 0 auto;
}
footer h5 {
    font-size: 14px;
    text-transform: capitalize;
}
footer p {
    font-size: 17px;
}
.footer-sections {
    display: flex;
    gap: 100px;
    justify-content: space-around;
    padding: 30px 0;
    flex-wrap: wrap;
}
.copyright {
    text-align: center;
    padding-bottom: 20px;
}
.social-links {
    margin-top: 40px;
}
.social-links a {
    border-radius: 50px;
    padding: 10px;
}
footer p:hover,
footer a:hover {
    text-decoration: underline;
    transition: .5s;
}
@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    footer h4,
    .follow-us {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    footer a {
        font-size: 14px;
    }
    footer p {
        font-size: 15px;
    }
    footer h4,
    .follow-us {
        font-size: 16px;
        width: 60%;
        text-align: center;
        margin: 0 auto;
    }
    .social-links {
        margin-top: 20px;
    }
}
/* FOOTER STYLING-------------------------------- */


/* HOME HERO DABBA------------------------ */
.container {
    position: absolute;
    top: 75%; 
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    animation: popOut 1.5s ease-out forwards;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@keyframes popOut {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
.title {
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    animation: fadeIn 1.5s;
    color: #2d9f2d;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 1.8rem;
    animation: fadeIn 2s;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
.date {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    width: 95%;
    background-color: gray;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: slideUp 1.5s;
    margin-top: 20px;
}
.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
    text-align: center;
    max-width: 250px;
}
.card h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}
.card p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .container {
        top: 55%; 
        padding: 10px;
        transform: translate(-50%, -50%) scale(0.85);
    }
    .title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .cards {
        gap: 15px;
    }
    .card {
        width: calc(50% - 15px);
        max-width: 200px;
        padding: 10px;
    }
    .card i {
        font-size: 1.2rem;
    }
    .card h2 {
        font-size: 1rem;
    }
    .card p {
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .container {
        top: 55%; 
        padding: 10px;
        left:25%;
        box-shadow: none !important;
    }
    .card {
        width: 50%;
        max-width: none;
        padding: 10px;
    }
    .title {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 1rem;
        line-height: 1.5rem; 
        max-width: 200px; 
        word-wrap: break-word; 
        text-align: center; 
        margin: 0 auto; 
    }
    .date{
        font-size: 0.8rem;
        width: 55%;
        margin-top: 10px;
    }
    .card i {
        font-size: 1rem;
    }
    .card h2 {
        font-size: 0.9rem;
    }
    .card p {
        font-size: 0.75rem;
    }
}
/* .............................................................. */
