:root {
    /* Brand Colors */
    --primary: #E8505B;
    --primary-dark: #A23840;
    --primary-light: #F0838C;
    --secondary-dark: #263238;
    --secondary: #455A64;
    --secondary-light: #7A8A97;
    --accent-yellow: #FFC947;
    --accent-teal: #4DB6AC;
    --neutral-light: #FBFBFB;
    --neutral: #CED2D5;
    --text-primary: #263238;
    --text-on-primary: #FFFFFF;

    --accent-blue: #a23840;
    --accent-orange: #e8505b;
    --shadow-primary: 0 10px 30px rgba(232, 80, 91, 0.15);
    --shadow-secondary: 0 5px 20px rgba(0, 0, 0, 0.1);

    --prim-hue-dull: #932525;
    --prim-hue-duller: #802525;
    --prim-hue-mild: #e8505b;
    --prim-hue-accent: #e28187;
    
    --prim-dark-dull: #171e22;
    --prim-dark-mild: #455a64;
    --prim-white: #FBFBFB;
    --lite-white: #FEFEFE;

    --prim-dark-milde: #171e22;

    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Typography */
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 3.5rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
}

select,
option {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #263238;
}

input::placeholder,
textarea::placeholder {
  color: #9E9E9E;
  font-style: italic;
  font-size: 0.95rem;
  font-family: 'Source Sans Pro', sans-serif;
}



body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--neutral-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    color: var(--secondary-dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-on-primary);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    position: relative;
}

.logo {
    height: 40px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: var(--space-lg);
    position: relative;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: var(--space-xs) 0;
}

.nav-link:hover {
    color: var(--primary);
}

 .default {
    color: var(--secondary-dark);
}

.active_tab {
    color: var(--primary);
    font-weight: 600;
}

 /* .active_tab:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
} */

.nav-cta {
    background: var(--prim-dark-mild);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: white !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: var(--space-md) 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;

    }
    
    .nav-item {
        margin: var(--space-sm) 0;
    }
    
    .nav-link {
        padding: var(--space-sm) 0;
    }
    
    .nav-cta {
        margin-top: var(--space-sm);
        border-radius: 5px;
        padding: .5em 1em;
    }
}
        /* Modern Hero Section */
        .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(232,80,91,0.1) 0%, rgba(255,255,255,1) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    position: relative;
}

.hero-tagline {
    display: inline-block;
    background: rgba(232,80,91,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    background: linear-gradient(to right, var(--secondary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
    animation: float 8s ease-in-out infinite;
}

.hero-image-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 30px;
    background: var(--primary);
    opacity: 0.1;
    z-index: -1;
    animation: pulse 15s ease-in-out infinite;
}

.decoration-1 {
    top: -30px;
    left: -30px;
    transform: rotate(45deg);
}

.decoration-2 {
    bottom: -20px;
    right: -20px;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-light);
}

@keyframes float {
    0% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
    100% { transform: translateY(0px) rotateY(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
        margin-top: var(--space-xl);
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image-container {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--secondary-dark);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--secondary);
}

/* Enhanced Products Section */
.products {
    background: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.products:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://staff.karenwebs.com/assets/images/pix/abstract-bg.png') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(232,80,91,0.15);
}

.product-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-md);
    position: relative;
}

.product-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(232,80,91,0.3);
}

.product-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--secondary-dark);
    position: relative;
    padding-bottom: 10px;
}

.product-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-light);
}

.product-price {
    display: block;
    font-size: var(--text-lg);
    color: var(--primary);
    font-weight: 700;
    margin: var(--space-sm) 0;
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.product-features li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.text-center {
    text-align: center;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

/* Blog Section */

/* Base container styling */
.blog-section {
    padding: 4rem 1rem;
    background-color: #FBFBFB;
    color: #263238;
  }
  
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .blog-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .blog-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    /* margin-bottom: 0.5rem; */
  }
  
  .blog-header .blog-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    color: #455A64;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Grid layout */
  .blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  /* Blog cards */
  .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  
  .blog-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .blog-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .blog-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
  }
  
  /* Content area */
  .blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-category {
    font-size: 0.85rem;
    color: #F0838C;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0.2rem 0 0.8rem;
    color: #263238;
  }
  
  .blog-excerpt {
    font-family: 'Source Sans Pro', sans-serif;
    color: #455A64;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
  }
  
  /* CTA button */
  .blog-cta .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 2px solid #A23840;
    color: #A23840;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .blog-cta .btn:hover {
    background: #A23840;
    color: white;
  }
  
  /* View all button */
  .view-all {
    text-align: center;
    margin-top: 3rem;
  }
  
  .view-all .btn-primary {
    background: var(--prim-dark-mild);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .view-all .btn-primary:hover {
    background: #E8505B;
  }

  @media (max-width: 768px) {
    .blog-container {
      padding: 1.5rem;
    }
  
    .blog-header {
      text-align: center;
    }
  
    .blog-title {
      font-size: 1.25rem;
    }
  
    .blog-excerpt {
      font-size: 0.95rem;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .blog-container {
      padding: 1rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .blog-grid {
      gap: 1.5rem;
    }
  
    .blog-title {
      font-size: 1.1rem;
    }
  
    .blog-excerpt {
      font-size: 0.9rem;
      line-height: 1.4;
    }
  
    .blog-date {
      font-size: 0.7rem;
      padding: 0.2rem 0.4rem;
    }
  
    .blog-cta .btn {
      width: 100%;
      text-align: center;
    }
  
    .view-all .btn {
      width: 80%;
    }
  }
  


/* Article container styling */

.article-post {
    background: #ffffff;
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: #1a1a1a;
    padding: 2rem 1rem;
    line-height: 1.8;
}

.article-container {
    max-width: 880px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.article-category {
    display: inline-block;
    font-size: 0.85rem;
    color: #fff;
    background-color: #0056b3; /* Adjust to match your brand */
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 2.2rem;
    margin: 0.5rem 0;
    color: #111;
}

.article-meta {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.article-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.article-featured-image {
    max-width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    object-fit: cover;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #222;
    margin-top: 2rem;
    font-weight: 600;
}

.article-content p {
    margin: 1rem 0;
    font-size: 1.05rem;
    color: #333;
}

.article-content ul {
    margin: 1rem 0 2rem 1.5rem;
    padding-left: 1rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content blockquote {
    font-style: italic;
    background: #f0f4ff;
    padding: 1rem 1.5rem;
    border-left: 5px solid #0056b3;
    margin: 2rem 0;
    border-radius: 6px;
    color: #444;
}

/*Services*/

.kws-services-section {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .kws-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .kws-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
  }
  
  .kws-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
  }
  
  .kws-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .kws-service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .kws-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  
  .kws-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .kws-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .kws-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
  }
  
  .kws-card-content {
    padding: 1.5rem;
  }
  
  .kws-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
  }
  
  .kws-card-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
  }
  
  .kws-card-link {
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .kws-card-link:hover {
    color: var(--primary);
    text-decoration: none;
  }
  


/* Modern Testimonials Section */
.testimonials {
    background: white;
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--neutral-light);
    z-index: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: var(--space-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: rgba(232,80,91,0.1);
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232,80,91,0.15);
}

.client-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.client-logo-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-right: var(--space-sm);
    flex-shrink: 0;
    border: 2px solid var(--neutral-light);
}

.client-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.client-info {
    flex-grow: 1;
}

.client-name {
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 3px;
}

.client-position {
    font-size: 0.9rem;
    color: var(--secondary-light);
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}

.rating {
    display: flex;
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

.star {
    color: var(--accent-yellow);
    margin-right: 3px;
}

.text-center {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-sm);
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    padding: var(--space-md);
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-title {
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    color: white;
    padding: var(--space-xl) 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    position: relative;
    color: var(--neutral);
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: var(--space-xs);
}

.footer-link a {
    color: var(--neutral);
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: var(--primary-light);
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.contact-item a {
    color: var(--neutral);
}

.contact-icon {
    margin-right: var(--space-xs);
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--secondary);
    color: var(--neutral);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
        margin-top: var(--space-md);
    }
    
    .hero-image {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto var(--space-md);
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 var(--space-lg);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
}

/* Pricing Section Styles */
.pricing {
background: var(--neutral-light);
position: relative;
}

.pricing:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://staff.karenwebs.com/assets/images/pix/abstract-bg.png') center/cover no-repeat;
opacity: 0.03;
z-index: 0;
}

.section-subtitle {
text-align: center;
color: var(--secondary-light);
max-width: 700px;
margin: 0 auto var(--space-xl);
font-size: var(--text-lg);
}

.pricing-grid {
display: flex;
flex-direction: column;
gap: var(--space-xl);
position: relative;
z-index: 1;
}

.pricing-category {
margin-bottom: var(--space-lg);
}

.category-title {
text-align: center;
font-size: var(--text-2xl);
color: var(--secondary-dark);
margin-bottom: var(--space-lg);
position: relative;
}

.category-title:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--primary);
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--space-md);
}

.pricing-card {
background: white;
border-radius: 12px;
padding: var(--space-md);
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
transition: all 0.3s ease;
position: relative;
display: flex;
flex-direction: column;
}

.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(232,80,91,0.1);
}

.pricing-card.popular {
border: 2px solid var(--primary-light);
}

.popular-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
box-shadow: 0 5px 15px rgba(232,80,91,0.3);
}

.pricing-header {
margin-bottom: var(--space-md);
text-align: center;
padding-bottom: var(--space-sm);
border-bottom: 1px solid var(--neutral);
}

.plan-name {
font-size: var(--text-xl);
color: var(--secondary-dark);
margin-bottom: var(--space-xs);
}

.plan-price {
font-size: var(--text-xl);
font-weight: 700;
color: var(--secondary);
margin-bottom: var(--space-xs);
}

.plan-best-for {
font-size: 0.9rem;
color: var(--secondary-light);
font-style: italic;
}

.plan-features {
list-style: none;
margin: var(--space-md) 0;
flex-grow: 1;
}

.feature-item {
padding: 8px 0;
position: relative;
padding-left: 25px;
color: var(--secondary);
}

.feature-item:before {
content: '•';
position: absolute;
left: 0;
color: var(--primary);
font-size: 1.2rem;
line-height: 1;
}

.feature-item.highlight {
font-weight: 600;
color: var(--primary-dark);
}

.pricing-card .btn {
width: 100%;
margin-top: auto;
}

.custom-solution {
text-align: center;
margin-top: var(--space-xl);
padding: var(--space-md);
background: white;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.custom-solution p {
margin-bottom: var(--space-md);
color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.pricing-cards {
    grid-template-columns: 1fr;
}

.section-subtitle {
    font-size: var(--text-base);
}

.category-title {
    font-size: var(--text-xl);
}
}

/* Portfolio Section Styles */
.portfolio {
background: white;
position: relative;
}

.portfolio:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
background: var(--neutral-light);
z-index: 0;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: var(--space-lg);
position: relative;
z-index: 1;
}

.portfolio-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.portfolio-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(232,80,91,0.15);
}

.portfolio-image-container {
position: relative;
height: 250px;
overflow: hidden;
}

.portfolio-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
transform: scale(1.05);
}

.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(232,80,91,0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
opacity: 1;
}

.view-btn {
width: 60px;
height: 60px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: all 0.3s ease;
}

.view-btn:hover {
transform: scale(1.1);
background: var(--primary-dark);
color: white;
}

.portfolio-info {
padding: var(--space-md);
flex-grow: 1;
display: flex;
flex-direction: column;
}

.portfolio-title {
font-size: var(--text-xl);
color: var(--secondary-dark);
margin-bottom: var(--space-sm);
}

.portfolio-tags {
display: flex;
flex-wrap: wrap;
gap: var(--space-xs);
margin-bottom: var(--space-md);
}

.tag {
background: rgba(232,80,91,0.1);
color: var(--primary);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
}

.portfolio-link {
color: var(--primary);
font-weight: 600;
margin-top: auto;
transition: color 0.3s ease;
display: inline-flex;
align-items: center;
gap: 5px;
}

.portfolio-link:hover {
color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media (max-width: 768px) {
.portfolio-grid {
    grid-template-columns: 1fr;
}

.portfolio-image-container {
    height: 200px;
}
}

/* Services Section Styles */
.services {
background: var(--neutral-light);
position: relative;
}

.services:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://staff.karenwebs.com/assets/images/pix/abstract-bg.png') center/cover no-repeat;
opacity: 0.03;
z-index: 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: var(--space-lg);
position: relative;
z-index: 1;
}

.service-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(232,80,91,0.15);
}

.service-image-container {
position: relative;
height: 220px;
overflow: hidden;
}

.service-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.service-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(232,80,91,0.7), transparent 50%);
opacity: 0;
transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
opacity: 1;
}

.service-card:hover .service-image {
transform: scale(1.05);
}

.service-content {
padding: var(--space-md);
flex-grow: 1;
display: flex;
flex-direction: column;
}

.service-title {
font-size: var(--text-lg);
color: var(--secondary-dark);
margin-bottom: var(--space-xs);
}

.service-description {
color: var(--secondary);
margin-bottom: var(--space-md);
flex-grow: 1;
}

.service-link {
color: var(--primary);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
transition: color 0.3s ease;
}

.service-link:hover {
color: var(--primary-dark);
}

.service-link svg {
transition: transform 0.3s ease;
}

.service-link:hover svg {
transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media (max-width: 768px) {
.services-grid {
    grid-template-columns: 1fr;
}

.service-image-container {
    height: 200px;
}
}

    /* Service Detail Section */
    .service-detail {
    padding: var(--space-xl) 0;
    background: white;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.service-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.service-category {
    display: inline-block;
    background: rgba(232,80,91,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-title {
    font-size: 2.5rem;
    color: var(--secondary-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.service-intro {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.service-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-container:hover .service-image {
    transform: scale(1.03);
}

.service-description {
    color: var(--secondary);
    line-height: 1.8;
}

.service-description h3 {
    color: var(--secondary-dark);
    font-size: 1.5rem;
    margin: var(--space-md) 0 var(--space-sm);
}

.service-description p {
    margin-bottom: var(--space-sm);
}

.service-features {
    background: var(--neutral-light);
    padding: var(--space-xl) 0;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.features-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--secondary-dark);
    margin-bottom: var(--space-xl);
    position: relative;
}

.features-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: var(--space-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232,80,91,0.1);
}

.feature-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--secondary-dark);
    margin-bottom: var(--space-xs);
}

.feature-description {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(232,80,91,0.05) 0%, rgba(255,255,255,1) 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta-title {
    font-size: 1.75rem;
    color: var(--secondary-dark);
    margin-bottom: var(--space-md);
}

.cta-description {
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: var(--space-lg) 0;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}



        /* Law Firm Section Styles */
.kw-law-firm-section {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kw-section-title {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.kw-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #a23840;
    margin: 0.5rem auto;
    border-radius: 2px;
}

.kw-law-firm-content {
    flex: 1;
}

.kw-law-firm-image {
    flex: 1;
    position: relative;
}

.kw-main-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.kw-image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--accent-teal);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(74, 107, 223, 0.3);
}

.kw-law-firm-intro {
    margin-bottom: 2rem;
}

.kw-law-firm-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.kw-feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9ff;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #a23840;
}

.kw-feature-highlight h3 {
    margin: 0 0 0.25rem;
    color: #222;
}

.kw-feature-highlight p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.kw-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.kw-feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.kw-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-color: #a23840;
}

.kw-feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(74, 107, 223, 0.1);
    margin-bottom: 0.5rem;
}

.kw-feature-card h4 {
    margin: 0 0 0.5rem;
    color: #222;
    font-size: 1.1rem;
}

.kw-feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.kw-law-firm-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.kw-price-tag {
    display: flex;
    flex-direction: column;
}

.kw-price {
    font-size: 2rem;
    font-weight: 700;
    color: #a23840;
}

.kw-price-note {
    font-size: 0.9rem;
    color: #666;
}

.kw-cta-buttons {
    display: flex;
    gap: 1rem;
}

.kw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kw-btn-primary {
    background: #a23840;
    color: white;
    border: 2px solid #a23840;
}

.kw-btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 223, 0.3);
}

.kw-btn-secondary {
    background: white;
    color: #a23840;
    border: 2px solid #a23840;
}

.kw-btn-secondary:hover {
    background: #f5f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 223, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .kw-law-firm-section {
        flex-direction: column-reverse;
    }
    
    .kw-law-firm-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .kw-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .kw-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .kw-btn {
        justify-content: center;
        width: 100%;
    }
}

/* Photography Showcase Styles */
.kw-photography-showcase {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kw-showcase-title {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin: 2rem auto 1rem;
    position: relative;
}

.kw-showcase-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e8505b;
    margin: 0.5rem auto;
    border-radius: 2px;
}

.kw-photo-gallery-container {
    flex: 1;
    position: relative;
}

.kw-main-photo-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}

.kw-featured-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.kw-main-photo-frame:hover .kw-featured-photo {
    transform: scale(1.02);
}

.kw-photo-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.kw-thumbnail-strip {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.kw-thumbnail {
    flex: 1;
    height: 80px;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.kw-thumbnail.active {
    border: 3px solid #e8505b;
}

.kw-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230,126,34,0.3) 0%, rgba(230,126,34,0.1) 100%);
}

.kw-thumbnail:nth-child(1) {
    background: url('https://images.unsplash.com/photo-1583422409516-2896ce307e2e?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60') center/cover;
}

.kw-thumbnail:nth-child(2) {
    background: url('https://images.unsplash.com/photo-1551969014-7d2c4cddf0b6?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60') center/cover;
}

.kw-thumbnail:nth-child(3) {
    background: url('https://images.unsplash.com/photo-1555169062-013468b47731?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60') center/cover;
}

.kw-thumbnail:nth-child(4) {
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60') center/cover;
}

.kw-photography-content {
    flex: 1;
}

.kw-intro-box {
    margin-bottom: 2rem;
}

.kw-tagline {
    font-size: 1.5rem;
    color: #e8505b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kw-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.kw-features-section {
    margin: 2rem 0;
}

.kw-features-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.kw-features-header h3 {
    margin: 0;
    color: #222;
    font-size: 1.25rem;
}

.kw-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.kw-feature-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.kw-feature-item:hover {
    background: #f9f9f9;
    transform: translateY(-2px);
}

.kw-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-feature-item h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: #222;
}

.kw-feature-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.kw-cta-container {
    margin-top: 2rem;
}

.kw-visit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #e8505b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kw-visit-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.kw-social-proof {
    margin-top: 1.5rem;
}

.kw-ratings {
    color: #e8505b;
    font-size: 1rem;
}

.kw-ratings span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kw-photography-showcase {
        flex-direction: column;
    }
    
    .kw-photo-gallery-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .kw-features-grid {
        grid-template-columns: 1fr;
    }
    
    .kw-showcase-title {
        font-size: 1.75rem;
    }
    
    .kw-tagline {
        font-size: 1.25rem;
    }
}

/* About Section Styles */
.kw-about-section {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.kw-about-image {
    flex: 1;
    position: relative;
}

.kw-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.kw-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.kw-image-container:hover .kw-main-image {
    transform: scale(1.03);
}

.kw-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.kw-global-presence {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #A23840E6;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kw-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.kw-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.kw-about-content {
    flex: 1;
}

.kw-section-header {
    margin-bottom: 2rem;
}

.kw-subtitle {
    display: block;
    color: #a23840;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.kw-title {
    font-size: 2.25rem;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.kw-highlight {
    color: #a23840;
    position: relative;
}

.kw-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: rgba(74, 107, 223, 0.2);
    z-index: -1;
}

.kw-about-text {
    margin-bottom: 2rem;
}

.kw-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.kw-lead strong {
    color: #a23840;
    font-weight: 600;
}

.kw-mission-card {
    background: #f8f9ff;
    border-left: 4px solid #a23840;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.kw-mission-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: #222;
}

.kw-mission-card p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.kw-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.kw-about-item {
    display: flex;
    gap: 1rem;
}

.kw-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(74, 107, 223, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-about-item h4 {
    margin: 0 0 0.5rem;
    color: #222;
    font-size: 1.1rem;
}

.kw-about-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kw-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kw-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #a23840;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.kw-cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 107, 223, 0.3);
}

.kw-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kw-about-section {
        flex-direction: column-reverse;
    }
    
    .kw-about-image {
        margin-top: 2rem;
    }
    
    .kw-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .kw-about-section {
        padding: 0 1rem;
    }
    
    .kw-title {
        font-size: 1.75rem;
    }
    
    .kw-global-presence {
        left: 1rem;
        bottom: 1rem;
    }
    
    .kw-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Section Styles */
.kw-contact-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.kw-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kw-section-title {
    font-size: 2.25rem;
    color: #222;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.kw-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #a23840;
    border-radius: 2px;
}

.kw-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kw-contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.kw-contact-info {
    flex: 1;
}

.kw-contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.kw-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #a23840;
}

.kw-whatsapp-card:hover {
    border-color: #25D366;
}

.kw-contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(74, 107, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-whatsapp-card .kw-contact-icon {
    background: rgba(37, 211, 102, 0.1);
}

.kw-contact-details h3 {
    margin: 0 0 0.5rem;
    color: #222;
    font-size: 1.25rem;
}

.kw-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a23840;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kw-contact-link:hover {
    color: #3a5bcf;
    text-decoration: underline;
}

.kw-whatsapp-link {
    background: #25D366;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none !important;
}

.kw-whatsapp-link:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none !important;
}

.kw-contact-address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

.kw-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    text-align: center;
}

.kw-badge-image {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.kw-badge-image:hover {
    transform: scale(1.05);
}

.kw-contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 400px;
}

.kw-map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .kw-contact-container {
        flex-direction: column;
    }
    
    .kw-contact-map {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .kw-contact-section {
        padding: 0 1rem;
    }
    
    .kw-section-title {
        font-size: 1.75rem;
    }
    
    .kw-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .kw-contact-icon {
        margin: 0 auto;
    }
    
    .kw-contact-link {
        justify-content: center;
    }
}

/* Unified Card Styles */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.card-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: var(--text-lg);
    color: var(--secondary-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.card-description {
    color: var(--secondary);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* Apply to specific sections */


/* Law Firm Section Colors */
.kw-law-firm-section {
    background: white;
    box-shadow: var(--shadow-secondary);
}

.kw-feature-card:hover {
    border-color: var(--primary-dark);
}

.kw-btn-primary {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Photography Section Colors */
.kw-photography-showcase {
    background: white;
    box-shadow: var(--shadow-secondary);
}

.kw-thumbnail.active {
    border-color: var(--accent-orange);
}

.kw-visit-button {
    background: var(--accent-orange);
}

/* About Section Colors */
.kw-highlight::after {
    background: rgba(74, 107, 223, 0.2);
}

.kw-mission-card {
    border-left-color: var(--primary-dark);
}

/* Contact Section Colors */
.kw-contact-card:hover {
    border-color: var(--primary-dark);
}

.kw-whatsapp-card:hover {
    border-color: #25D366;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-image-container {
        height: 200px;
    }
    
    .card-title {
        font-size: var(--text-base);
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 1rem;
    background: #FBFBFB;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .cta-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-light);
  }
  
  .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  
  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #263238;
    margin-bottom: 0.75rem;
  }
  
  .cta-card p {
    font-size: 1rem;
    color: #455A64;
    margin-bottom: 1.5rem;
  }
  
  .btn.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #A23840;
    color: #A23840;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn.btn-outline:hover {
    background: #A23840;
    color: white;
  }
  
  @media (max-width: 600px) {
    .cta-grid {
      grid-template-columns: 1fr;
    }
  }


  /* Form Styling */
.formbox {
    background: #FBFBFB;
    padding: 4rem 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    color: #263238;
  }
  
  form ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: auto;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }
  
  form h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #A23840;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .form-intro, .privacy-note {
    font-size: 1rem;
    color: #455A64;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  form li {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #263238;
  }
  
  sup {
    color: #E8505B;
    font-size: 0.8em;
  }
  
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CED2D5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: #A23840;
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  button {
    padding: 0.75rem 2rem;
    background-color: #A23840;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-family: 'Source Sans Pro', serif;
  }
  
  button:hover {
    background-color: #E8505B;
  }
  
  a {
    color: #E8505B;
    text-decoration: none;
  }
  

  
  @media (max-width: 600px) {
    form ul {
      padding: 2rem 1.25rem;
    }
  
    form h1 {
      font-size: 1.5rem;
    }
  }
  
  .kws-hero-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
  }

  .kws-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .kws-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  .kws-hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #222;
  }

  .kws-hero-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .cta {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .cta:hover {
    background-color: var(--primary);
  }

  .kws-services-promo {
    background-color: #fff;
    padding: 3rem 1rem;
  }

  .kws-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }

  .kws-service-box {
    background: #f2f4f7;
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .kws-service-box:hover {
    transform: translateY(-5px);
  }

  .kws-service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
  }

  .kws-service-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
  }

  .cta2 {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .cta2:hover {
    color: var(--primary);
  }

  @media (max-width: 768px) {
    .kws-hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .kws-hero-content h1 {
      font-size: 1.8rem;
    }

    .kws-hero-content p {
      font-size: 1rem;
    }
  }

  .blog-pagination {
    margin: 2.5rem 0 1.5rem;
    text-align: center;
  }

  .pagination-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    border-radius: 6px;
    background: #f2f4f7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  }

  .pagination-link {
    display: block;
    padding: 0.6rem 1.2rem;
    margin: 0;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .pagination-link:hover {
    background-color: var(--primary-dark);
    color: #fff;
  }

  .pagination-link.active {
    background-color: var(--primary-dark);
    color: #fff;
    pointer-events: none;
    cursor: default;
  }

  .pagination-link.next {
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .pagination-list {
      flex-wrap: wrap;
    }

    .pagination-link {
      padding: 0.5rem 1rem;
    }
  }


  .pagination-box{
    
    box-sizing: border-box;
    width: 100%;
    margin: 2em 0em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    height: 90px;
  }

  .pagination-box ul{
    box-sizing: border-box;
    position: relative;
    list-style-type: none;
    display: flex;
    gap: .5em;
    
  }

  .pagination-box a{
    text-decoration: none;
    padding: .5em 1em;
    border: solid 1px #ddd;
    color: var(--prim-dark-mild);    
   }

   

   .pagination-box a.active{ background: var(--prim-hue-mild); color: var(--prim-white);}

   .defbox{    
    color: var(--prim-hue-dull);
    font-weight: 700;
    box-shadow: var(--box-sha-2);
    
   }

   /* Feedback message styling */
.message-feedback {
    max-width: 600px;
    margin: 80px auto;
    background-color:rgba(250, 233, 229, 0.69);
    border: 1px solid rgb(245, 220, 200);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  
  .message-feedback h1 {
    color: var(--secondary-light);
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .message-feedback span {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    display: block;
    margin-bottom: 30px;
  }
  
  .message-feedback .cta.bottom {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .message-feedback .cta.bottom:hover {
    background-color: var(--primary);
  }
  
  .whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }
  
  .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
  }
  
  .whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  }
  
  .tooltip {
    position: absolute;
    right: 70px;
    width: max-content;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .tooltip:before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
  }
  
  .whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
  }
  
  /* Pulse Animation */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  .whatsapp-btn {
    animation: pulse 2s infinite;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .whatsapp-widget {
      bottom: 20px;
      right: 20px;
    }
    
    .whatsapp-btn {
      width: 50px;
      height: 50px;
      font-size: 25px;
    }
    
    .tooltip {
      display: none;
    }
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-link:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.1);
  }

  /* Optional: Dark mode support */
  @media (prefers-color-scheme: dark) {
    .social-link {
      background-color: #222;
      color: #ccc;
    }

    .social-link:hover {
      background-color: #fff;
      color: #000;
    }
  }
  
  /* ========== MODERN RESPONSIVE STYLES ========== */
.kw-media-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.kw-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Section Header */
.kw-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.kw-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a23840;
    background: rgba(162, 56, 64, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.kw-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.kw-highlight {
    color: #a23840;
    position: relative;
}

.kw-section-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Titles */
.kw-category {
    margin-bottom: 60px;
}

.kw-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    border-left: 5px solid #a23840;
    padding-left: 20px;
}

.kw-cat-icon {
    width: 28px;
    height: 28px;
    color: #a23840;
}

/* Video Grid */
.kw-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Video Card */
.kw-video-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -12px rgba(0, 0, 0, 0.2);
}

/* Responsive iframe wrapper (16:9) */
.kw-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.kw-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.kw-video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    padding: 18px 18px 22px;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    background: #fff;
}

/* No videos message */
.kw-no-videos {
    text-align: center;
    padding: 60px 20px;
    background: #f1f5f9;
    border-radius: 24px;
    color: #475569;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .kw-media-section {
        padding: 50px 15px;
    }
    .kw-title {
        font-size: 2rem;
    }
    .kw-section-intro {
        font-size: 1rem;
    }
    .kw-category-title {
        font-size: 1.5rem;
    }
    .kw-video-grid {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .kw-video-grid {
        grid-template-columns: 1fr;
    }
}

.caption{
    /*border: solid 1px grey;*/
    text-align: left;
    font-weight: 200;
    font-style: italic;
    color: #444;
    font-size: 0.9em;
}