/* IBSCODEND Website Styles */
:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --dark: #2d3748;
    --light: #f7fafc;
    --text: #4a5568;
    --heading: #1a202c;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth
}

a {
    text-decoration: none;
    transition: all .3s ease
}

img {
    max-width: 100%;
    height: auto
}

.section {
    padding: 80px 0
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 15px
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.navbar {
    padding: 15px 0;
    background: transparent;
    transition: all .3s ease
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1)
}

/* .navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--dark) !important
} */

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    transition: all .3s ease
}

/* .nav-link:hover,
.nav-link.active {
    color: var(--tertiary) !important
} */

.btn-admin {
    background: var(--gradient);
    color: #fff !important;
    border-radius: 25px;
    padding: 8px 20px !important
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4)
}

.hero-section {
    min-height: 100vh;
    background: var(--gradient);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3)
}

.hero-section .container {
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease .2s both
}

.hero-buttons {
    animation: fadeInUp 1s ease .4s both
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px
}

.stat-label {
    font-size: .9rem;
    opacity: .9
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3)
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite
}

.scroll-indicator i {
    font-size: 2rem;
    color: #fff
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    transition: all .3s ease
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: #fff
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary)
}

.service-card,
.service-detail-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    height: 100%
}

.service-card:hover,
.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.service-icon i {
    font-size: 2.5rem;
    color: #fff
}

.service-title,
.service-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px
}

.service-description,
.service-detail-description {
    color: var(--text);
    margin-bottom: 20px
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    transition: all .3s ease
}

.service-link:hover {
    color: var(--secondary)
}

.service-link i {
    margin-left: 5px;
    transition: margin .3s ease
}

.service-link:hover i {
    margin-left: 10px
}

.service-detail-card {
    border: 2px solid transparent
}

.service-detail-card:hover {
    border-color: var(--primary)
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: #fff
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.service-features li {
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: start
}

.service-features i {
    color: var(--primary);
    margin-top: 5px
}

.why-choose-section,
.process-section,
.tech-section,
.mission-vision-section,
.values-section,
.team-section,
.stats-section,
.portfolio-stats-section {
    background: var(--light)
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary)
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px
}

.feature-content p {
    color: var(--text);
    margin: 0
}

.portfolio-card,
.portfolio-card-large {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    background: #fff
}

.portfolio-card:hover,
.portfolio-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px
}

.portfolio-image img,
.portfolio-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.portfolio-card:hover .portfolio-image img,
.portfolio-card-large:hover .portfolio-image-large img {
    transform: scale(1.1)
}

.portfolio-overlay,
.portfolio-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease
}

.portfolio-card:hover .portfolio-overlay,
.portfolio-card-large:hover .portfolio-overlay-large {
    opacity: .95
}

.portfolio-link {
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease .2s
}

.portfolio-card:hover .portfolio-link {
    opacity: 1;
    transform: scale(1)
}

.portfolio-content {
    padding: 25px
}

.portfolio-category {
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    margin-top: 10px
}

.portfolio-image-large {
    height: 300px
}

.portfolio-overlay-large {
    padding: 30px
}

.portfolio-info {
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s ease .2s
}

.portfolio-card-large:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0)
}

.portfolio-category-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px
}

.portfolio-links {
    display: flex;
    gap: 10px;
    justify-content: center
}

.portfolio-btn {
    background: #fff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all .3s ease
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3)
}

.portfolio-filters {
    margin-bottom: 50px
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 25px;
    margin: 5px;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-2px)
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    background: #fff;
    height: 100%
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.blog-card:hover .blog-image img {
    transform: scale(1.1)
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600
}

.blog-content {
    padding: 25px
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: .85rem;
    color: var(--text);
    margin-bottom: 15px
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px
}

.blog-title a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.4
}

.blog-title a:hover {
    color: var(--primary)
}

.blog-excerpt {
    color: var(--text);
    margin: 15px 0
}

.blog-link {
    color: var(--primary);
    font-weight: 600
}

.blog-link:hover {
    color: var(--secondary)
}

.blog-post-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: all .3s ease
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.blog-post-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px
}

.blog-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600
}

.blog-post-content {
    padding: 20px 0
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    font-size: .85rem;
    color: var(--text);
    margin-bottom: 15px
}

.blog-post-title a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading)
}

.blog-post-title a:hover {
    color: var(--primary)
}

.blog-post-excerpt {
    color: var(--text);
    margin: 15px 0
}

.blog-detail-header {
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center
}

.blog-detail-category {
    background: #fff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px
}

.blog-detail-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap
}

.blog-detail-content {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    line-height: 1.9
}

.blog-tags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.blog-share {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap
}

.share-buttons {
    display: flex;
    gap: 10px
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease
}

.share-btn.facebook {
    background: #3b5998
}

.share-btn.twitter {
    background: #1da1f2
}

.share-btn.linkedin {
    background: #0077b5
}

.share-btn.whatsapp {
    background: #25d366
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3)
}

.author-box {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    align-items: center
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.author-social a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all .3s ease
}

.author-social a:hover {
    color: var(--secondary)
}

.related-posts {
    margin-top: 50px
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 30px
}

.related-post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s ease
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.related-post-content {
    padding: 15px
}

.related-post-content h5 a {
    color: var(--heading);
    font-size: 1.1rem
}

.related-post-content h5 a:hover {
    color: var(--primary)
}

.related-post-date {
    font-size: .85rem;
    color: var(--text);
    margin-top: 10px
}

.cta-section {
    background: var(--gradient);
    color: #fff;
    padding: 100px 0;
    position: relative
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2)
}

.cta-section .container {
    position: relative;
    z-index: 2
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 20px
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8
}

.social-links {
    display: flex;
    gap: 15px
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(177, 118, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all .3s ease
}


.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all .3s ease
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px
}

.footer-contact {
    list-style: none;
    padding: 0
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    gap: 10px
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px
}

.footer-link-small:hover {
    color: var(--primary)
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 999
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4)
}

.scroll-top-btn.show {
    display: flex
}

.page-header {
    background: var(--gradient);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8)
}

.breadcrumb-item a {
    color: #fff
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9)
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6)
}

.process-card,
.tech-card,
.mission-card,
.value-card,
.team-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all .3s ease
}

.process-card:hover,
.tech-card:hover,
.mission-card:hover,
.value-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700
}

.process-icon,
.mission-icon,
.value-icon {
    margin: 20px 0
}

.process-icon i,
.tech-icon,
.mission-icon i,
.value-icon i {
    font-size: 3rem;
    color: var(--primary)
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px
}

.stat-box {
    text-align: center;
    padding: 30px
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px
}

.stat-label {
    color: var(--text);
    font-size: 1.1rem
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: bottom .3s ease
}

.team-card:hover .team-social {
    bottom: 20px
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

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

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

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 5px
}

.team-info p {
    color: var(--text);
    margin: 0
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary)
}

.category-list {
    list-style: none;
    padding: 0
}

.category-list li {
    margin-bottom: 15px
}

.category-list a {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 5px
}

.recent-post-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.recent-post-item a {
    color: var(--heading);
    font-weight: 600;
    display: block;
    margin-bottom: 5px
}

.recent-post-item a:hover {
    color: var(--primary)
}

.recent-post-date {
    font-size: .85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.tag {
    background: var(--light);
    color: var(--text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    transition: all .3s ease
}

.tag:hover {
    background: var(--gradient);
    color: #fff
}

.newsletter-widget {
    background: var(--gradient);
    color: #fff
}

.newsletter-widget .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3)
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px
}

.contact-section {
    padding: 60px 0
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow)
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #fff
}

.contact-info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px
}

.contact-info-content p {
    color: var(--text);
    margin: 0;
    line-height: 1.8
}

.contact-social h4 {
    background-color: #4a5568;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow)
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading)
}

.form-label {
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 8px
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(102, 126, 234, 0.25)
}

.map-section {
    margin-top: 80px
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow)
}

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

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

    60% {
        transform: translateX(-50%) translateY(-5px)
    }
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px
    }

    .section-title {
        font-size: 2rem
    }

    .page-title {
        font-size: 2rem
    }

    .cta-title {
        font-size: 2rem
    }

    .blog-detail-title {
        font-size: 2rem
    }

    .author-box {
        flex-direction: column;
        text-align: center
    }
}