:root {
    --curriculum-accent: #f6a500;
    --curriculum-muted: #9aa0a6;
    --curriculum-border: #e6e6e6;
    --curriculum-heading: #222;
    --curriculum-bg: #fff;
    --accent: #FF6D2F;
    --heading: #22313F;
    --muted: #6b7a86;
    --max-width: 1200px;
    --gap: 28px;
    --card-pad: 18px 24px;
}

/* Our Story Section Start */
.story {
    padding: 50px 0;
}

.story-container {
    display: flex;
    gap: 0;
}

.story-container-1,
.story-container-2 {
    width: 50%;
}

.story-container-1 img {
    width: 100%;
}

.story-container-2 {
    background-image: url(/images/About-us-img/story-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* CSS of About Page Start */

/* About Us Section Start */

.aboutus-section {
    padding: 100px 20px 50px;
    background: #fff;
}

.aboutus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    /* 🔹 Increased gap between image and content */
    gap: 100px;
}

/* Left Side Image */
.aboutus-image-box {
    position: relative;
    flex: 1;
    min-width: 35%;
}

.aboutus-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    z-index: 2;
    position: relative;
}




/* Right Content */
.aboutus-content {
    flex: 1;
    min-width: 55%;
}

.aboutus-subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.aboutus-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.aboutus-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Features List */
.aboutus-features {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-left: -30px;
}

.aboutus-features li {
    font-weight: 600;
    font-size: 15px;
    color: var(--heading);
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
}

.aboutus-features li svg {
    position: absolute;
    left: 0;
    top: 2px;
    color: #00A99D;
    font-size: 16px;
    margin-right: 10px;
}

.aboutus-features li span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .aboutus-container {
        flex-direction: column;
        gap: 60px;
    }

    .aboutus-image-box,
    .aboutus-content {
        min-width: 100%;
    }

}

@media (max-width: 576px) {
    .aboutus-title {
        font-size: 28px;
    }

}

/* About Us Section  Ends  */


/* Mission section Start */
.mission-vision-section {
    margin-top: 60px;
}

.mission-image img,
.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.vision-container {
    background: #0e1b3d !important;
}

.mission-content,
.vision-content {
    max-width: 500px;
}

.mission-content h5,
.vision-content h5 {
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 34px;
}

.mission-content h5 svg,
.vision-content h5 svg {
    margin-right: 10px;
}

.mission-content p,
.vision-content p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
}

.bg-dark {
    background-color: #0e1b3d !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .mission-content,
    .vision-content {
        max-width: 100%;
        text-align: center;
    }

    .mission-vision-section .row {
        flex-direction: column;
    }

    .bg-dark {
        padding: 30px !important;
    }
}

/* Our mission Section Ends */

/* Our Core Value Section Start */

.core-value-section {
    padding: 72px 60px 30px;
}



.core-value-kicker h4 {
    color: #FF6B35;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.core-value-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px !important;
    color: #1B263B;
}



/* Grid Layout */
.core-value-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: var(--gap);
    align-items: start;
}

/* Card */
.core-value-card {
    background: transparent;
    padding: var(--card-pad);
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}


/* Text */
.core-value-text {
    flex: 1;
}

.core-value-title-sm {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    margin: 2px 0 8px;
    color: #131F34;
}

.core-value-desc {
    font-size: 16px;
    font-weight: 400;
    color: #4A5565;
    line-height: 1.5;
    margin: 0;
}

/* Colored line separators */
.core-value-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 14px;
    height: 100%;
    width: 2px;
    border-radius: 2px;
    background: transparent;
}

.core-value-card:nth-child(1)::before {
    background: #34C6B3;
}

.core-value-card:nth-child(2)::before {
    background: #34D0E6;
}

.core-value-card:nth-child(3)::before {
    background: #F6C04A;
}

.core-value-card:nth-child(4)::before {
    background: #FF6D2F;
}

/* Responsive */
@media (max-width: 900px) {
    .core-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-value-card::after {
        right: 8px;
        top: 20px;
        height: 58px;
    }
}

@media (max-width: 560px) {
    .core-value-grid {
        grid-template-columns: 1fr;
    }

    .core-value-card {
        align-items: center;
        gap: 12px;
        padding: 16px;
    }

    .core-value-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 8px;
    }

    .core-value-card::after {
        display: none;
    }

    .core-value-title {
        font-size: 28px;
    }
}

.core-value-bottom-gap {
    height: 36px;
}

/* Our Core Value Section Ends */

/* Our Story section Start */

.story-section {
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0;
}

.story-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Image Side */
.story-image {
    flex: 1;
    min-width: 50%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Overlay Side */
.story-overlay {
    flex: 1;
    min-width: 50%;
    background-image: url('/assets/website/images/about-us-img/story-bg.jpg');
    color: var(--text-light);
    padding: 80px 50px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.story-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00232D;
    opacity: 0.8;
    /* Adjust this value for lighter/darker overlay */
    z-index: 1;
}

.story-overlay>* {
    position: relative;
    z-index: 2;
}

/* Section Title */
.story-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

/* Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Single Story Item */
.story-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* Year Circle */
.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF33;
    background: transparent;
}

.story-year {
    width: 70px;
    height: 70px;
    background: #00A99D;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Text Content */
.story-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.story-content p {
    color: #FFFFFFCC;
    font-size: 14px;
    line-height: 25px;
    margin: 0;
    max-width: 347px;
}

/* Vertical Line Connecting Circles */
.story-item::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 70px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.story-item:last-child::before {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
    }

    .story-image,
    .story-overlay {
        min-width: 100%;
    }

    .story-overlay {
        padding: 60px 30px;
    }

    .story-content p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .story-circle {
        width: 70px;
        height: 70px;
        padding: 5px;
    }

    .story-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .story-content h3 {
        font-size: 16px;
    }

    .story-title {
        text-align: center;
    }

    .story-item {
        flex-direction: row;
    }
}

/* Our Story section Ends */

/* Our team section start */

.team-section {
    padding: 90px 20px;
    text-align: center;
    background: #fff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.team-subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 50px;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
}

/* Card */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


.team-card:hover {
    transform: translateY(-7px);
}

.team-card-4 {
    margin-top: 100px;
}

/* Image Box */
.team-img-box {
    position: relative;
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    height: 260px;
}

/* Social Icons (bottom-right overlay) */
.team-social {
    position: absolute;
    right: 0;
    bottom: 0px;
    display: flex;
    gap: 10px;
    opacity: 1;
    padding: 10px 30px;
    background: #ffffff;
    border-radius: 20px 0 0 0;
}

.team-social a {
    background: #ffffff;
    color: #1B263B;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.3s;
}

/* .team-social a:hover {
    background: var(--accent);
    color: #fff;
} */

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

/* Text Info */
.team-info {
    padding: 20px 10px 25px;
}

.team-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #131F34;
    line-height: 29px;
    text-align: left !important;
}

.team-role {
    font-size: 16px;
    color: #1D2125;
    line-height: 22px;
    margin: 0;
    text-align: left !important;
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-4 {
        margin-top: 0;
    }
}

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

    .team-img-box img {
        height: 280px;
    }
}

/* Our team section ends */

/* Our Patner Section Start */
.Partners {
    padding: 50px 0px;
}

.Partners .Partners-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}

.Partners .Partners-top h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FF6B35
}

.Partners .Partners-top h2 {
    font-size: 40px;
    font-weight: 600;
    color: #033E80;
}

.partners-container .partner-logo {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 25px 130px 25px 0;
}

@media (max-width: 1200px) {
    .partners-container .partner-logo {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .partners-container .partner-logo {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .partners-container {
        padding: 0 50px;
    }

    .partners-container .partner-logo {
        flex: 0 0 50%;
        max-width: 33%;
        padding: 25px 100px 25px 0;
    }
}

@media (max-width: 575px) {
    .partners-container .partner-logo {
        flex: 0 0 100%;
        max-width: 50%;
        padding: 25px 50px 25px 0;
    }
}

@media (max-width: 375px) {
    .partners-container .partner-logo {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.partners-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-container img:hover {
    transform: scale(1.05);
}

/* Our Patner Section Start */


/* CSS of About Page Ends */
.course-details-container {
    padding: 100px 0;
}

.course-details-container .details-section {
    box-shadow: 0px 0px 68px 0px #36353540;
    padding: 20px;
    border-radius: 20px;
}

.course-details-container .details-section .details-admin {
    display: flex;
    align-items: center;
    gap: 40px;
}

.course-details-container .course-details-sidebar {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 20px;
    height: 595px;
}

.course-details-container .course-details-sidebar .course-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-details-container .course-details-sidebar .course-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.course-details-container .course-details-sidebar .course-features img {
    position: absolute;
    top: 20%;
    right: 0;
}


.curriculum-container {
    max-width: 900px;
    margin: 30px 0px !important;
    /* padding: 0 20px; */
}

.curriculum-card {
    background: var(--curriculum-bg);
    border: 1px solid var(--curriculum-border);
    border-radius: 4px;
    padding: 22px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.curriculum-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.curriculum-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    color: var(--curriculum-heading);
}

.curriculum-meta {
    color: var(--curriculum-muted);
    font-size: 15px;
    margin-top: 5px;
}

.curriculum-expand-btn {
    font-weight: 700;
    color: #20262a;
    font-size: 14px;
    cursor: pointer;
}

.curriculum-section {
    border-top: 1px solid var(--curriculum-border);
}

.curriculum-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    cursor: pointer;
}

.curriculum-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.curriculum-caret {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.curriculum-section-title {
    font-weight: 700;
    font-size: 16px;
}

.curriculum-section-right-num {
    color: var(--curriculum-accent);
    font-weight: 800;
    font-size: 20px;
}

.curriculum-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.curriculum-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 8px;
    border-top: 1px solid #f1f1f1;
}

.curriculum-item-icon {
    width: 28px;
    display: flex;
    justify-content: center;
    color: var(--curriculum-accent);
}

.curriculum-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.curriculum-item-text {
    font-size: 15px;
    color: #333;
}

.curriculum-item-meta {
    font-size: 14px;
    color: var(--curriculum-muted);
}

.curriculum-section-body {
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.curriculum-section-body.collapsed {
    max-height: 0;
}

.curriculum-section-body.expanded {
    max-height: 1000px;
}

@media (max-width: 700px) {
    .curriculum-title {
        font-size: 28px;
    }

    .curriculum-item {
        padding: 12px 8px;
    }
}

/* Card container */
.instructor-section {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    padding: 24px;
    max-width: 900px;
    margin: 30px 0;
}

/* Title */
.instructor-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Inner layout */
.instructor-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #e5e5e5;
    padding-top: 24px;
}

/* Profile image */
.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px #e5e5e5;
}

/* Text details */
.instructor-details .name {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.instructor-details .role {
    font-size: 13px;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
    margin-bottom: 12px;
}

.instructor-details .bio {
    font-size: 15px;
    color: #666;
    margin-top: 6px;
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.social-icons a {
    color: #222;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
    .instructor-inner {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }
}

/* Card container */
.rating-box {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    padding: 24px;
    max-width: 900px;
    margin: 30px 0;
}

/* Heading */
.rating-box h5 {
    font-weight: 700;
    margin-bottom: 24px;
}

/* Left side rating number */
.rating-large h4 {
    font-size: 90px;
    font-weight: 400;
    color: #333333;
    line-height: 90px;
}

/* Stars row */
.stars-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars-row .bi-star-fill,
.stars-row .bi-star {
    color: #f8b500;
    font-size: 22px;
}

.rating-count {
    color: #888;
    font-size: 15px;
    margin-top: 6px;
}

/* Rating bars on right */
.rating-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.rating-bars .bar-row .star {
    color: #f8b500;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.rating-bars .bar-row .label {
    width: 14px;
    text-align: right;
    color: #777;
    font-weight: 600;
}

.rating-bars .bar-row .progress-wrap {
    flex: 1;
}

.rating-bars .bar-row .count {
    width: 28px;
    text-align: center;
    color: #777;
}

.kp-progress {
    height: 12px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
}

.kp-progress .fill {
    height: 100%;
    display: block;
    background: #f8b500;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 767px) {
    .rating-large {
        font-size: 56px;
    }
}

.materials-section {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 16px;
    margin: 30px 0;
    max-width: 900px;
    background-color: #fff;
}

.materials-section h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.materials-table {
    width: 100%;
    border-collapse: collapse !important;
    text-align: left;
}

.materials-table th,
.materials-table td {
    border: 1px solid #dcdcdc !important;
    padding: 12px 16px;
    vertical-align: middle;
}

.materials-table td.download-cell {
    text-align: center;
}

.materials-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.download-icon {
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
    cursor: pointer;
}

.download-icon:hover {
    color: #0d6efd;
}


.course-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teacher-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-img img {
    position: absolute;
    top: -50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 10px;
}

.course-card-body .card-title {
    text-align: center !important;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.course-card-body .card-text {
    text-align: center !important;
    /* margin-top: 20px; */
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0px;
    color: #333333;
}

.course-underline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 20px 0;
}

.course-underline::before,
.course-underline::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #e6e6e6;
    /* Light silver/grey line */
}

.yellow-line {
    width: 50px;
    height: 4px;
    background: #f9b233;
    border-radius: 3px;
}

.borderline {
    background: #FFB606;
    height: 2px;
    width: 30px;
    text-align: center;
}

.documnet-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.documnet-icon span {
    color: #666666;
}

.course-rate strong {
    color: #FF6B35;
    font-size: 16px !important;
    font-weight: 500;
}

.course-feature-list span,
.details-admin span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-left: 10px;

}

.buy-btn {
    background: #00A99D;
    padding: 10px 20px;
    color: #fff;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin-top: 20px;
}

.buy-btn:hover {
    background: #00A99D;
    color: #fff;
}

/* Course Details Page Start */

/* COurse Details Page Ends */


/* CSS Of Blog Start */

/* Container */
.blog-page-wrapper {
    background: #f3f6f8;
    padding: 40px 0;
    min-height: 100vh;
}

.blog-page-inner {
    /* background: #fff; */
    border-radius: 6px;
    padding: 28px;

}

/* Cards column */
.blog-page-post-card {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.06);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-page-post-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: block;
}

.blog-page-post-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-page-meta {
    font-size: 13px;
    color: #8a94a0;
    margin-bottom: 8px;
}

.blog-page-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #10203a;
    line-height: 1.3;
}

.blog-page-excerpt {
    color: #6b7280;
    font-size: 14px;
    flex: 1;
    margin-bottom: 10px;
}

.blog-page-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #00a88f;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border-radius: 22px;
    padding: 8px 14px;
    width: max-content;
}

/* Sidebar container (visual card) */
.blog-page-sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    border-left: 4px solid transparent;
    /* leave for highlight if needed */
}

/* Search box (teal border like design) */
.blog-page-search-box {
    display: flex;
    gap: 8px;
    align-items: center;
    border: 2px solid #00a99a;
    /* teal border */
    border-radius: 6px;
    padding: 8px 10px;
    background: #fff;
}

.blog-page-search-box input {
    border: 0;
    outline: 0;
    flex: 1;
    font-size: 14px;
    padding: 4px 6px;
}

.blog-page-search-btn {
    background: transparent;
    border: 0;
    font-size: 18px;
    color: #00a99a;
    cursor: pointer;
}

/* Section headings */
.blog-page-widget-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.blog-page-widget-title h6 {
    margin: 0;
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}

.blog-page-widget-hr {
    height: 3px;
    width: 50px;
    background: #f36b2a;
    border-radius: 3px;
}

/* Categories list with caret */
.blog-page-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page-categories li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1B263B;
    padding: 8px 0;
    font-size: 14px;
}

.blog-page-caret {
    margin-top: 4px;
    color: #1B263B;
    font-size: 12px;
    font-weight: bolder !important;
    margin-top: 5px;
}

/* Archive */
.blog-page-archive {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page-archive li {
    padding: 6px 0;
    color: #1B263B;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    line-height: 21px;
    gap: 10px;
}

/* Events calendar block */
.blog-page-events {
    background: #fbfbfc;
    border-radius: 6px;
    padding: 12px;
    color: #6b7280;
    font-size: 14px;
}

/* Tags */
.blog-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.blog-page-tag {
    display: inline-block;
    padding: 7px 10px;
    background: #ff7a45;
    /* orange */
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Right column spacing to match the screenshot look */
.blog-page-sidebar {
    padding-left: 20px;
}

/* Small responsive tweaks */
@media (max-width: 991.98px) {
    .blog-page-inner {
        padding: 18px;
    }
}

/* CSS of Blog Ends */


/* CSS of Testimonials Start */
.testimonials-container {
    background: #ffffff !important;
}

.testimonials-container .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.testimonials-cards {
    box-shadow: 0px 16px 60px 0px #00000033;
    padding: 0 !important;
    border-radius: 10px;
    background: #ffffff;
    flex: 1 1 calc(25% - 25px);
    box-sizing: border-box;
}

.testimonial-page-rating {
    margin-top: -20px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testimonial-page-rating i {
    color: #ffc107;
    /* gold color */
    font-size: 14px;
    margin-right: 3px;
    cursor: pointer;
}

.testimonial-grid {
    gap: 25px;
}

@media (min-width: 400px) and (max-width: 1200px) {
    .testimonial-box {
        display: flex;
        flex-direction: column;
    }
}

/* CSS of Testimonials Ends */

/* CSS of COntact Us Page Start */

.contact-info-cards {
    background-image: url(/images/contact-us.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.contact-section {
    padding: 100px 20px;
    background: #f9fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-icon.red {
    background-color: #ff4d4d;
}

.contact-icon.orange {
    background-color: #ffa500;
}

.contact-icon.green {
    background-color: #28a745;
}

.contact-card {
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-text h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    color: #131D3B;
}

.contact-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666D81;
}

/* Form & Map Section */
.contact-form-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form-left {
    flex: 1;
    min-width: 48%;
}

.contact-map {
    flex: 1;
    min-width: 48%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

/* Form Styles */
.contact-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    /* line-height: 30px; */
    color: #1B263B;
}

.contact-subtitle {
    font-size: 16px;
    color: #666D81;
    line-height: 26px;
    letter-spacing: 0;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
}

.input-box,
.input-box-message {
    position: relative;
    width: 100%;
    flex: 1;
}

.input-box i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
}

.input-box-message i {
    position: absolute;
    top: 20%;
    left: 14px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: var(--heading);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

/* Fix: prevent textarea overflow */
.input-box textarea {
    width: 100%;
    display: block;
}


.contact-btn {
    background-color: #00A99D;
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto 0;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 198, 173, 0.25);
}

.contact-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    background-color: #00b09e;
}

.contact-btn:hover i {
    transform: translateX(5px);
    /* subtle arrow move effect */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form-section {
        flex-direction: column;
    }

    .contact-map {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .contact-row {
        flex-direction: column;
        gap: 14px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* CSS of Contact us Page Ends */


/* CSS of Blog Details Page Start */

.plog-details-page .blog-details {
    background: #fff;
    border-radius: 10px;
    padding: 25px 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.plog-details-page .blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.plog-details-page .blog-meta {
    color: #666;
    font-size: 14px;
}

.plog-details-page .blog-meta i {
    color: #f28500;
}

.blog-details-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #1B263B;
}

.plog-details-page .blog-content {
    color: #555;
    line-height: 1.8;
}



.plog-details-page .sub-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.plog-details-page .sub-image svg {
    margin-top: -330px;
    margin-left: 330px;
}

.blog-details-bottom {
    padding: 40px;
    background-image: url(/images/blog-details-bg.png);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blog-details-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.blog-details-bottom h4 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 22px;
}

@media(max-width: 768px) {
    .plog-details-page .sub-image svg {
        margin-top: -330px;
        margin-left: 280px;
    }
}

@media(max-width: 450px) {
    .plog-details-page .sub-image svg {
        margin-top: -330px;
        margin-left: 130px;
    }
}

@media(max-width: 375px) {
    .plog-details-page .sub-image svg {
        margin-top: -330px;
        margin-left: 80px;
    }
}

/* CSS of Blog Details Page Ends */


/* CSS of Privacy Policy Start */
.privacy-policy-page h2 {
    font-size: 28px;
    color: #222;
}

.privacy-policy-page p {
    color: #555;
    line-height: 1.8;
}

.privacy-policy-page .info-box {
    background-color: #f8f9fa;
    /* Bootstrap light gray */
    border: 1px solid #e0e0e0;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: #444;
}

.privacy-policy-page .info-box:hover {
    background-color: #fff;
    transition: 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

/* CSS of Privacy Policy Ends */