
/* custom.css */
body, html {
    overflow-x: hidden;
}



/* HERO SECTION */
        body {
            line-height: 1.6;
            /*background-color: #F5F5F5;*/
        }

        .jumbotron {
            background: linear-gradient(135deg, #009FF5 0%, #66C5F9 100%);
            /* background-color: #009FF5; */
        }

        .title-description {
            color: #fff;
        }

        p {
              color: #fff;
        }

        /* Example styles */
        h2 {
            color: #333; /* Text color */
            font-size: 16px; /* Font size */
            margin-bottom: 15px; /* Bottom margin */
            font-weight: bold; /* Font weight */
            /* Add more styles as needed */
        }

        header {
            background: #009FF5;
            color: #fff !important;;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 2.5rem;
        }
        .navbar-brand img {
            max-height: 40px; /*TODO: check that property on the index page */
        }
        section h2 {
            color: #009FF5;
        }
        .hero {
            /*background: url('/assets/images/orka-banner-homepage-1.png') no-repeat center center;
            background-size: cover;*/
            color: #fff;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 20px;
        }
        .hero button {
            background: #fff;
            color: #009FF5;
            border: none;
            padding: 10px 20px;
            font-size: 1.2em;
            border-radius: 5px;
            cursor: pointer;
        }
        .hero button:hover {
            background: #009FF5;
            color: #fff;
        }
       
        .cta {
            text-align: center;
            margin: 40px 0;
        }


/*button hero mobileoptimisation */
.jumbotron .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 17px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

@media (max-width: 767px) {
  .jumbotron .btn-ghost {
    width: 100%;
    max-width: 414px;
    margin: 0 auto;
    font-size: 16px;
  }
}

/* AFTER HERO SECTION */
h2 {
    /* Your custom styles */
    color: #333; /* Example color */
    font-size: 24px !important; /* Example font size */
    font-weight: 700; /* Example font weight */
    /* Add more styles as needed */
}
h3 {
    /* Your custom styles */
    color: #333; /* Example color */
    font-size: 18px !important; /* Example font size */
    font-weight: 700; /* Example font weight */
    /* Add more styles as needed */
}

.title-description {
    color:#fff !important;
}


/****************/
/* FAQ section */
/****************/
  #faq {
    font-size: 18px;
    max-width: 100%; /* Ensure FAQ content does not exceed the viewport width */
    overflow-x: hidden; /* Prevent horizontal overflow */
  }

  #faq .card {
    border: none;
    background-color: transparent;
    margin-bottom: 10px;
    width: 100%; /* Ensure the card width is 100% */
    box-sizing: border-box; /* Include padding and border in the element's total width */

  }

  #faq .card-header {
    background-color: #f8f8ff;
    border: none;
    padding: 0; /* Adjust padding if needed */
  }
  #faq .btn-link {
    color: #333;
    font-weight: normal;
    text-decoration: none;
    width: 100%;
    text-align: left;
    /*padding: 0; */
    
    white-space: normal; /* Ensure the text wraps */
    word-wrap: break-word; /* Ensure long words break correctly */
    overflow-wrap: break-word; /* Ensure long words break correctly */
    box-sizing: border-box; /* Include padding in the element's total width */
  }

  #faq .btn-link:hover,
  #faq .btn-link:focus {
    text-decoration: none;
  }

  #faq .card-header .btn-link {
    font-size: 18px !important;
    font-weight: 700;
  }

  #faq .card-body {
    background-color: #fff;
    border: 1px solid #f8f8ff;

    width: 100%; /* Ensure the card body width is 100% */
    box-sizing: border-box; /* Include padding and border in the element's total width */


  }
  
/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    #faq {
        padding: 0 15px; /* Adjust padding to prevent overflow */
    }

    #faq .card {
        margin-bottom: 15px;
    }

    #faq .card-header {
        padding: 10px 15px; /* Adjust padding for better fit */
    }

    #faq .card-body {
        padding: 15px; /* Adjust padding for better fit */
    }
}


/************************************/
/* Blueprint Sprint Timeline Styles */
/************************************/
.blueprint-timeline {
   margin-left: 20px !important;
   margin-right: 20px !important;
}

.blueprint-timeline h1 {
    color: #009FF5;
    font-size: 40px !important;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 100px;
}

.blueprint-timeline .sprint-phase {
    margin-bottom: 3rem;
}

.blueprint-timeline .phase-title {
    color: #003366;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem;
}

.blueprint-timeline .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.blueprint-timeline .timeline-card {
    background-color: #f0f8ff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.blueprint-timeline .timeline-card:hover {
    background-color: #009FF5;
    box-shadow: 0 6px 12px rgba(0, 102, 204, 0.2);
}

.blueprint-timeline .timeline-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blueprint-timeline .timeline-card-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #003366;
    transition: color 0.3s ease;
}

.blueprint-timeline .timeline-card-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #003366;
    margin: 0;
    transition: color 0.3s ease;
}

.blueprint-timeline .timeline-card-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.blueprint-timeline .timeline-card-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 16px;
    color: #555555;  /* Changed to a darker grey for better contrast */
    transition: color 0.3s ease;
}

.blueprint-timeline .timeline-card-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #009FF5;
    transition: color 0.3s ease;
}

.blueprint-timeline .timeline-card:hover .timeline-card-icon,
.blueprint-timeline .timeline-card:hover .timeline-card-title,
.blueprint-timeline .timeline-card:hover .timeline-card-content li,
.blueprint-timeline .timeline-card:hover .timeline-card-content li::before {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .blueprint-timeline .card-grid {
        grid-template-columns: 1fr;
    }
}


/************************************/
/************************************/
/************************************/

.title-main {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
}

      .container-fluid {
            padding-left: 0;
            padding-right: 0;
        }


      .idea-to-implementation {
            /*background: linear-gradient(135deg, #8a4baf 0%, #6a3093 100%);*/
            background: linear-gradient(135deg, #66C5F9 0%, #009FF5 100%);
            color: white;
            font-family: Arial, sans-serif;
            
        }

        .idea-to-implementation {
            padding: 20px 65px 20px;
            /* other styles */

        }

        .container {
            padding-top: 50px;
            margin-bottom: 20px;
        }

        .idea-to-implementation {
            padding-bottom:150px;
            padding-top: 120px
        }


        .idea-to-implementation h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        .feature {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding: 20px 0;
        }
        .feature:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        .feature-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .feature-number {
            color: #003366;
            font-weight: 900 !important;
            margin-right: 10px;
            font-size: 1rem;
        }
        .feature-title {
            font-weight: bold;
            font-size: 1rem !important;
            color:#fff !important;
            margin: 0;
        }
        .feature-content {
            display: none;
            margin-left: 25px;
        }

        .feature-content p {
            font-size: 0.9rem !important;
            color: #fff !important;
        }

        .see-action {
            color: #003366;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            font-weight: 900;
        }
        .see-action:hover {
            color: #003366;
            text-decoration: underline;
            font-weight: 900;
        }
        .platform-image {
            position: relative;
            height: 300px;
        }
        .platform-layer {
            position: absolute;
            width: 100%;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            font-size: 0.8rem;
        }
        .platform-layer:nth-child(1) { bottom: 0; }
        .platform-layer:nth-child(2) { bottom: 60px; }
        .platform-layer:nth-child(3) { bottom: 120px; }
        .platform-layer:nth-child(4) { bottom: 180px; }


/************************************/
/************WHY SECTION ************/
/************************************/

.why {
    margin-top: 100px;
    text-align: center;
    font-size: 18px !important;
    font-family: Muli, Arial, sans-serif;
}




/************************************/
/************ blueprint timeline ************/
/************************************/


.blueprint-timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.blueprint-timeline {
    max-width: 1200px; /* Adjust this value as needed 
}
*/

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}




/******************************
WHY CHOOSE THE BLUEPRINT SPRINT
******************************/

        .title-why {
            font-size: 32px !important;
            font-weight: bold;
        }




        .why-choose-blueprint-sprint h1 {
            color: #2C2C2C;
            font-weight: bold;
            margin-top: 8rem;
            margin-bottom: 3rem;
        }

        .why-choose-blueprint-sprint {
            margin-bottom: 6rem;
        }


        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            height: 100%;
            cursor: pointer;
        }
        .feature-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #011926;
        }
        .feature-title-why {
            font-weight: bold;
            color: #011926;
        }
        .tooltip-inner {
            background-color: #f8f8ff;
            color: #2c2c2c;
            padding: 10px;
            font-size: 14px;
            max-width: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .bs-tooltip-auto[x-placement^=bottom] .arrow::before, 
        .bs-tooltip-bottom .arrow::before {
            border-bottom-color: #f8f0ff;
        }



/******************************
detailed timeline
******************************/

/**
.detailed-timeline {
    margin-bottom: 300px !important;
}
*/

.detailed-timeline {
    margin-top: 10rem !important;
}


 .pb-8rem {
      padding-bottom: 10rem !important;
      }