/* Main Styles for Ivadika Square Website */

:root {
    --primary-color: #164b60;
    --secondary-color: #4fc0d0;
    --accent-color: #f1ae3c;
    --dark-color: #1b262c;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-contact span {
    margin-right: 20px;
}

.social-icons a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Navbar */
/* Navbar */
.navbar {
    background-color: var(--white-color); /* or #fff */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    font-family: 'Segoe UI', sans-serif;
    z-index: 1000;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Navbar links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar-nav .nav-link {
    color: var(--dark-color); /* or #222 */
    font-weight: 500;
    padding: 10px 15px;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover/active state */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color); /* e.g., #f7941e */
}

/* .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
} */

/* Dropdown menu */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    background-color: var(--white-color);
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-gray); /* or #f8f8f8 */
    color: var(--primary-color);
}

/* Call-to-action (CTA) item */
.cta-item {
    margin-left: auto; /* pushes it to right */
}

@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }

    .cta-item {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('attached_assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
    color: var(--white-color);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Hero Section Styling */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-counter {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

.counter-item {
    text-align: center;
}

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

.counter-text {
    font-size: 1rem;
    font-weight: 500;
}

/* SCO Section */
.sco-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-header.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.sco-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.sco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sco-image {
    height: 250px;
    overflow: hidden;
}

.sco-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.sco-content {
    padding: 25px;
}

.sco-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sco-specs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.sco-spec {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.sco-spec i {
    margin-right: 5px;
    color: var(--primary-color);
}

.sco-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Food & Entertainment Section */
.food-entertainment-section {
    padding: 80px 0;
}

.tab-section .nav-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-section .nav-tabs .nav-item {
    margin: 0 5px;
}

.tab-section .nav-tabs .nav-link {
    background-color: var(--light-gray);
    color: var(--dark-color);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
}

.tab-section .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.place-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

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

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.place-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.place-image .overlay-icon {
    color: var(--white-color);
    font-size: 2rem;
}

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

.place-card:hover .place-image .overlay {
    opacity: 1;
}

.place-content {
    padding: 20px;
}

.place-type {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.place-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.place-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.place-feature {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.place-feature i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--light-gray);
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: var(--white-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-gray);
    padding-top: 80px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-logo img {
    width: 150px; /* Adjust the width */
    height: auto; /* Maintain aspect ratio */
}


.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

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

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

.footer-links a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-text {
    line-height: 1.5;
}

.contact-text a {
    color: var(--light-gray);
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    border: none;
    padding: 10px 15px;
    color: var(--white-color);
}

.newsletter-submit {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background-color: var(--secondary-color);
}

.bottom-footer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.bottom-footer p {
    margin-bottom: 0;
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.floating-cta a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-call {
    background-color: var(--primary-color);
}

.cta-whatsapp {
    background-color: #25D366;
}

.cta-enquiry {
    background-color: var(--secondary-color);
}

.floating-cta a:hover {
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: var(--white-color);
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.breadcrumb-item, .breadcrumb-item.active {
    color: var(--white-color);
}

.breadcrumb-item a {
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-info-section {
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.contact-info-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-form-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* About Page Styles */
.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.vision-card, .mission-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.vision-points .point, .mission-points .point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vision-points .point i, .mission-points .point i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.team-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

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

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

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--secondary-color);
}

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

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-content .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-content .description {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Gallery Page Styles */
.gallery-filter {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-filter .filter-item {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.gallery-filter .filter-item:hover,
.gallery-filter .filter-item.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay a {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Blog Page Styles */
.blog-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-categories {
    margin-bottom: 30px;
}

.blog-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories li {
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--light-gray);
    padding-bottom: 10px;
}

.blog-categories li:last-child {
    border-bottom: none;
}

.blog-categories a {
    display: flex;
    justify-content: space-between;
}

.blog-categories .count {
    background-color: var(--light-gray);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.recent-posts .post {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts .post:last-child {
    margin-bottom: 0;
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.post-info .date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    padding-right: 50px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: var(--secondary-color);
}

.tag-cloud a {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 50px;
    margin: 0 5px 10px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 15px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link:hover:after,
    .navbar-nav .nav-link.active:after {
        display: none;
    }
    
    .cta-item {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .tab-section .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-section .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
}