:root {
    --primary-color: #bf311a !important;
    --secondary-color: #bf311a;
    --accent-color: #60a5fa;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #334155;
}

/* Global Styles */
body {
    color: var(--text-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

p {
    font-family: "Raleway", sans-serif;
}

/* Navigation */


.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

/* Animated Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: white;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: white;
    bottom: -100px;
    right: 10%;
    animation-delay: 3s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.8);
    top: 40%;
    right: -50px;
    animation-delay: 6s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: white;
    top: 20%;
    left: 15%;
    animation-delay: 9s;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.shape-5 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: 20%;
    left: 5%;
    animation-delay: 12s;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.text-content {
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    display: inline-block;
}

.cta-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-button:active {
    transform: translateY(-1px);
}

.scroll-indicator {
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
    margin-top: 60px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5 {
        transform: scale(0.6);
    }

    .scroll-indicator {
        margin-top: 40px;
    }
}

/* Story Section - Main Layout */
.story-section {
    background-color: white;
    padding: 0;
}

.story-block {
    display: flex;
    align-items: center;
    padding: 50px 0px 50px;
}

.story-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.story-content h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-content ul {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-content ul li {
    margin-bottom: 0.5rem;
}

/* Image Container */
.cartoon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cartoon-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.cartoon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-instruction {
    text-align: center;
    padding: 2rem;
    color: var(--text-color);
    font-style: italic;
    position: relative;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.highlight-box h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Numbered sections */
.numbered-section {
    counter-reset: section;
}

.numbered-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.numbered-item::before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .story-block {
        min-height: auto;
        padding: 60px 0;
    }

    .story-content {
        padding: 1rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-content p,
    .story-content ul {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    /* Stack text above cartoon on mobile */
    .row.flex-lg-row-reverse {
        flex-direction: column-reverse !important;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Progress indicator */
.progress-bar-custom {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--secondary-color);
    z-index: 9999;
    transition: width 0.1s ease;
}

.cclient {
    background: #bf311a;
    padding: 10px;
    border-radius: 40px 0px;
    position: absolute;
    bottom: -12%;
    color: #fff;
    width: 70%;
    left: 15%;
}

ul.client-need {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    padding: 0px;
    /* margin: 0 auto; */
}

ul.client-need li {
    border: 1px solid #bf311a;
    padding: 5px 15px;
    border-radius: 50px;
    list-style: none;
    cursor: pointer;
}

ul.client-need li:hover {
    border: 1px solid #bf311a;
    background: #bf311a;
    color: #fff;
}
ul.balance {
    padding: 0px 30px;
}

ul.balance li {
    list-style: disc;
    font-size: 18px;
}

.highlight-box.problem {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.balance-icon {
    margin-right: 8px;
}

#challenge {
    background: #bf311a;
    color: #fff;
}

.highlight-box.success {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: #bf311a;
    color: #fff;
}

footer h5 {
    font-size: 45px;
}

footer h6.mb-3 {
    font-size: 25px;
}

footer img {
    width: 250px;
}

.list-unstyled.content li {
    line-height: 45px;
}

#hero,
#introduction {
    padding-bottom: 50px !important;
}

li.breadcrumb-item {
    list-style: none;

}

ul.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 10px !important;
}

li.breadcrumb-item a {
    text-decoration: none;
    color: #fff;
}

section.innerbanner-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

/* About Us */
.key-features {
    padding: 50px 0 60px;
    overflow: hidden;
}

.upload-btn button#addtocart {
    width: auto;
    font-size: 12px !important;
}

.key-features .title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.key-features .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    gap: 30px;
}

.key-features .card-wrapper .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 60px 30px 40px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #eee;
}


/* Hover effect */
.key-features .card-wrapper .card:hover {
    border: 2px solid #bf311a;
    box-shadow: 0 8px 0 #bf311a;
}

.key-features .card-wrapper .card:hover img {
    filter: brightness(0) invert(1);
}

.key-features .card-wrapper .card .icon-circle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #60a5fa;
    color: white;
    font-size: 28px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-features .card-wrapper .card .icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.key-features .card-wrapper .card .icon-circle.orange {
    background: #f26b3a;
}

.key-features .card-wrapper .card .icon-circle.purple {
    background: #c940f6;
}

.key-features .card-wrapper .card .card-content h2 {
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
}

.key-features .underline {
    width: 50px;
    height: 2px;
    margin: 10px auto;
    background: #000;
}

.key-features .underline.blue {
    background: #60a5fa;
}

.key-features .underline.orange {
    background: #f26b3a;
}

.key-features .underline.purple {
    background: #c940f6;
}

/* cta */

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e7ff 100%);
    padding: 80px 50px;
    text-align: center;
    overflow: hidden;
    border-radius: 30px;
}

.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #bf311a 0%, #bf311a 100%);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    animation: pulse 4s infinite;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.cta-section-wrap .cta-dots {
    position: absolute;
    top: 50%;
    left: 10%;
}

.cta-section-wrap .cta-dots div {
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    position: absolute;
    animation: float 3s infinite;
}

.cta-section-wrap .cta-dots .dot-1 {
    top: 0;
    left: 0;
    background: #e74c3c;
    animation-delay: 0s;
}

.cta-section-wrap .cta-dots .dot-2 {
    top: 25px;
    left: 40px;
    background: #2ecc71;
    animation-delay: 0.5s;
}

.cta-section-wrap .cta-dots .dot-3 {
    top: 50px;
    left: 15px;
    background: #9b59b6;
    animation-delay: 1s;
}

.cta-section-wrap .cta-dots .dot-4 {
    top: 75px;
    left: 50px;
    background: #e67e22;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cta-section-wrap .cta-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section-wrap .cta-content p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: backwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section-wrap .cta-form {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-section-wrap .cta-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cta-section-wrap .cta-form input:focus {
    transform: scale(1.05);
}
.cta-section-wrap .cta-form button {
    padding: 3px 63px;
    border: none;
    background: linear-gradient(45deg, #bf311a, #bf311a);
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 13px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: table;
    width: 17%;
}

.cta-section-wrap .cta-form button:hover {
    background: linear-gradient(45deg, #bf311a, #bf311a);
    transform: scale(1.1);
}

/* Team Section */

.modern-team {
    padding: 50px 20px;
    text-align: center;
}


section.modern-team .team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.left-tet {
    text-align: left;
}
section.modern-team .team-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    position: relative;
}

section.modern-team .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

section.modern-team .avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.4s ease;
    background-color: #dfdfdf;
    /* border: 4px solid #bf311a; */
}

section.modern-team .team-card:hover .avatar {
    transform: scale(1.05);
}

section.modern-team .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.modern-team .team-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.team-card h3 a {
    text-decoration: none;
    color: var(--primary-color) !important;
}

section.modern-team .team-card .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.modern-team .team-card:hover .socials {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: 2px solid #fff;
}

section.modern-team .team-card:hover .socials a {
    color: #fff;
}

section.modern-team .team-card .socials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #bf311a;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

section.modern-team .socials a {
    color: white;
    transition: 0.3s;
    color: var(--text-color);
}

section.modern-team .socials a:hover {
    color: #fff;
}


/* Blog */
.main-content {
    flex: 2;
    padding-right: 30px;
}

.sidebar {
    flex: 1;
    padding: 25px;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.post {
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 1s ease-out;
    position: relative;
}

.post a {
    text-decoration: none;
    color: var(--text-color);
}

.post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-content .post-content p {
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.post-content {
    padding: 30px;
}

.post .meta {
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar-search {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    position: relative;
    box-sizing: border-box;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, var(--accent-color), var(--secondary-color)) border-box;
    border: 2px solid transparent;
    font-size: 16px;
    color: var(--secondary-color);
    border-radius: 50px;
    margin-bottom: 30px;
}

.sidebar h3 {
    color: var(--secondary-color);
    /* border-bottom: 3px solid var(--accent-color); */
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.tag ul,
.categories ul {
    list-style: none;
    padding: 0;
}

.tag ul li,
.categories ul li {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--accent-color), var(--secondary-color)) border-box;
    border: 2px solid transparent;
    /* color: var(--secondary-color); */
    border-radius: 15px;
    transition: transform 0.3s;
}

.sidebar .box {
    margin-bottom: 30px;
}
.tag ul li:hover,
.categories ul li:hover {
    transform: translateX(10px);
}

.follow-us {
    margin-top: 30px;
}

.follow-us a {
    display: block;
    margin-bottom: 15px;
    padding: 10px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--accent-color), var(--secondary-color)) border-box;
    border: 2px solid transparent;
    text-align: center;
    font-weight: bold;
}

.follow-us a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.post:nth-child(1) {
    animation-delay: 0.1s;
}

.post:nth-child(2) {
    animation-delay: 0.3s;
}

.post:nth-child(3) {
    animation-delay: 0.5s;
}


.sidebar-search form input#search {
    width: 100%;
    border: none;
}

button.search-btn {
    background: transparent;
    border: none;
    position: absolute;
    font-size: 20px;
    color: var(--text-color);
    right: 4%;
    margin: 0;
    padding: 0;
}

.blog-section{
    padding: 60px 0;
}

.sidebar-search form input#search:focus{
    border: none !important;
    outline: none;
}

/* Blog Details */

.blog-details-section {
    padding: 60px 0;
}

 .post-footer .share {
    display: flex;
    align-items: center;
    gap: 10px;
}

 .post-footer a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
        background: linear-gradient(white, white) padding-box, linear-gradient(135deg, var(--accent-color), var(--secondary-color)) border-box;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bf311a;
    text-decoration: none;
}

 .post-footer a:hover{
    color: #fff;
   background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: 2px solid #fff;
 }

.post-details blockquote {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-left: 4px solid #e31e25;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    color: #fff;
}

.post-footer {
    margin-top: 40px;
}

/* Teams Details */
section.team-section {
    padding: 60px 0;
}

.team-section,
.board-section {
  padding: 40px 20px;
}

.team-section .team-lead {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}
.team-section .image-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px 0;
    object-fit: cover;
    background: #f6f6ff;
    position: relative;
}
.team-section  .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section  .image-box .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
}
.team-section  .info-box{
    padding-left: 40px;
}

.team-section  .info-box h3 {
  margin-top: 0;
  color: #bf311a;
}
.team-section  .icon{
    width: 40px;
    height: 40px;
    border: 2px solid #bf311a;
    color: #bf311a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section .team-wrap .img-wrap {
    position: sticky;
    top: 100px;
}

.team-section .social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}
.team-section  .icon a {
  text-decoration: none;
  color: #bf311a;
}

.team-section  .icon:hover a{
color: #fff;
}
 .team-section  .icon:hover {
background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
 border-color: #fff;}

.team-section  .experience-list {
  list-style: none;
  padding: 0;
}

.team-section  .experience-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.team-section .experience-list li::before {
  content: '✔️';
  margin-right: 8px;
}

.team-section .board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-section  .card {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease;
}

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

.team-section  .card img {
  width: 100%;
  border-radius: 8px;
}

.team-section  .card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.team-section .team-wrap {
    margin-top: 60px;
}

/* Contact us */

.contact-section .contact-card {
background-color: #bf311a;
  color: #fff;
  padding: 50px;
  width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  left: -150px;
  height: 100%;
  margin: auto;
}

.contact-section .contact-card h2{
    margin-bottom: 40px;
}
.contact-section .contact-info-wrap {
    position: relative;
    display: flex;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-content: center;
    height: auto;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-section .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-section .info-item a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.contact-section .info-item span {
    margin-right: 20px;
    font-size: 20px;
    line-height: 1.4;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* White form card */
.contact-section .form-card {
  padding: 50px 40px;
  border-radius: 10px;
  margin-left: -80px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-section .form-card h2 {
  color: #0a2540;
  margin-bottom: 10px;
}

.contact-section .form-subtext {
  color: #888;
  margin-bottom: 25px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
}

.contact-section form input,
.contact-section form textarea {
  background: #f5f5f5;
  border: none;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  resize: none;
}

.contact-section form textarea {
  height: 100px;
}

.contact-section form button {
  background-color: #bf311a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid #bf311a;
}

.contact-section form button:hover {
  background-color: #fff;
  border: 1px solid #bf311a;
  color: #bf311a;
}


.contact-section {
    padding: 60px 0;
}

.map-section {
    padding-bottom: 50px;
}
.map-section .map-wrap{
    margin-top: 30px;
}
.map-section iframe {
    width: 100%;
    height: 300px;
}
.story-content.text-center h2 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#readMoreBtn {
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s 
ease;
    cursor: pointer;
    border: 1px solid #bf311a;
    display: inline-block;
    margin-bottom: 20px;
    background: #bf311a;
    color: #fff;
}

#readMoreBtn:hover {
  background-color: #fff;
    color: #bf311a;
     border: 1px solid #bf311a;
}

.key-features .card-wrapper .card:first-child .icon-circle{
    background: #60a5fa;
}
.key-features .card-wrapper .card:nth-child(2) .icon-circle{
background: #f26b3a !important;
}
.key-features .card-wrapper .card:last-child .icon-circle{
	   background: #c940f6 !important;
}



/* #introduction .story-content ul {
    padding-left: 0;
}

#introduction .story-content ul li {
    list-style: disc;
} */
.nav-sec{
	transition: all 0.3s ease;
	background-color: #fff;
}
.scrolled-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
	z-index:999;
}
.navbar {
	box-shadow: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    max-height: 45px;
}

.footer a.navbar-brand img {
    object-fit: cover;
    max-height: 100% !important;
    width: 200px;
}

.navbar-toggler {
    margin-left: auto;
}

p {
    font-size: 18px !important;
        font-family: "Raleway", sans-serif;
}
ul#menu-header-menu li a, li {
    font-size: 18px;
        font-family: "Raleway", sans-serif;
}
.col-lg-12.service-content{
    background: #ffffff;
    border-top: 4px solid #c1121f; /* red top border */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 30px;
}
.contact-info-wrap {
    background: #ffffff;
    border-top: 4px solid #c1121f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 30px;
    margin-top: 0px;
}
.service-contact {
    position: sticky;
    top: 20px;
}
.col-md-4.stick-form{
	margin-top: -15px;
}
button.theme-btn {
    padding: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    display: inline-block;
    background: #c02a39;
    width: 100%;
    color: #fff;
}
button.theme-btn:hover {
border: 1px solid #c02a39;
  color: #c02a39;
  background: transparent;
  
}


footer h6.mb-3 {
    font-size: 25px;
    color: #fff;
}
footer.footer h5, section#contact h5 {
    color: #fff;
}
ol, ul {
margin: 0px 10px !important;
}
.cta-section h2 {
    color: #fff;
}
.faq-heading {
            font-family: 'Playfair Display', serif;
        }

        .faq-sub-text {
            color: #ff6f61;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .accordion-button {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
        }

        .accordion-body {
            font-family: 'Raleway', sans-serif;
            color: #555;
        }

        .accordion .accordion-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .accordion .accordion-button {
            background-color: #c1121f;
            color: #ffffff;
            border-radius: 5px 5px 0 0;
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        }

        .accordion-button.collapsed::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(193, 18, 31, 0.5);
        }
.accordion-body p{
	margin-bottom:0px;
}
