/* 
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 45px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
    padding: 1rem 2rem;
    background-color: #4B7CB6;
    margin-left: -4rem;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    color: white;
    position: relative;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.3));
    font-size: 14px;
    display: inline-block;
}

.title::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #2B5C96;
    left: 0;
    bottom: -1rem;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 100%,
            0% 0%
    );
}

.sub-title {
    padding: 1rem 2rem;
    background-color: #4B7CB6;
    margin-left: 2rem;
    border-radius: 100px;
    color: white;
    position: relative;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.3));
    font-size: 14px; 
    display: inline-block;
} */

/*button bg*/
.countdown-item-button {
    text-align: center;
    background: linear-gradient(to right, #fefefe, #5755d836);
    padding: 19px;
}

/*Breadcrumb*/

.breadcrumb {
    /*centering*/
    display: inline-block;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 5px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: white;
    /*need more margin on the left of links to accomodate the numbers*/
    padding: 0 10px 0 60px;
    background: #666;
    background: linear-gradient(#666, #333);
    position: relative;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
    padding-left: 46px;
    border-radius: 5px 0 0 5px;
    /*to match with the parent's radius*/
}

.breadcrumb a:first-child:before {
    left: 14px;
}

.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0;
    /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active,
.breadcrumb a:hover {
    background: #333;
    background: linear-gradient(#333, #000);
}

.breadcrumb a.active:after,
.breadcrumb a:hover:after {
    background: #333;
    background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    /*half of square's length*/
    /*same dimension as the line-height of .breadcrumb a */
    width: 36px;
    height: 36px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's:
    length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
    if diagonal required = 1; length = 1/1.414 = 0.707*/
    transform: scale(0.707) rotate(45deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #666;
    background: linear-gradient(135deg, #666, #333);
    /*stylish arrow design using box shadow*/
    box-shadow:
        2px -2px 0 2px rgba(0, 0, 0, 0.4),
        3px -3px 0 2px rgba(255, 255, 255, 0.1);
    /*
      5px - for rounded arrows and
      50px - to prevent hover glitches on the border created using shadows*/
    border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
    content: none;
}

/*we will use the :before element to show numbers*/
.breadcrumb a:before {
    content: counter(flag);
    counter-increment: flag;
    /*some styles now*/
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 8px 0;
    position: absolute;
    top: 0;
    left: 30px;
    background: #444;
    background: linear-gradient(#444, #222);
    font-weight: bold;
}


.flat a,
.flat a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}

.flat a:before {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
    text-align: center;
}

.flat a:hover,
.flat a.active,
.flat a:hover:after,
.flat a.active:after {
    background: #f5b74a;
}


.intro-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef1f6;
}

/* Header */
.intro-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon circle */
.intro-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06147e, #06147e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(78, 115, 223, 0.3);
}

/* Text */
.intro-text .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.intro-text .sub-title {
    font-size: 14px;
    color: #6c757d;
    margin: 2px 0 0;
}

/* Body */
.intro-body {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef1f6;
}

/* Description icon */
.intro-desc-icon {
    color: #06147e;
    font-size: 16px;
    margin-top: 3px;
}

/* Content */
.section-content {
    font-size: 14px;
    color: #495057;
    line-height: 1.7;
}

/* Hover effect (nice touch) */
.intro-card:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Info box style */
.info-box {
    background: #f4f7ff;
    border-left: 4px solid #06147e;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.8;
    position: relative;
    flex: 1;
    overflow: auto;
}


/* Better text spacing */
.info-box p {
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Highlight important words (optional if content has <strong>) */
.info-box strong {
    color: #06147e;
    font-weight: 600;
}

/* List styling (if your description has ul/li) */
.info-box ul {
    padding-left: 18px;
    margin: 10px 0;
}

.info-box li {
    margin-bottom: 6px;
}

/* Hover feel */
.info-box:hover {
    background: #eef3ff;
    transition: 0.3s ease;
}