:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --accent-color: #e67e22;
    --dark: #1a1a1a;
    --light: #f5f6fa;
    --eucalyptus: #2c3e50;        /* Mapped to --primary */
    --warm-stone: #e67e22;        /* Mapped to --accent */
    --creamy-ivory: #f5f6fa;      /* Mapped to --light */
    --dusty-rose: #e67e22;        /* Mapped to --accent */
    --sage-gray: #2c3e50;         /* Mapped to --primary */
    --soft-white: #f5f6fa;        /* Mapped to --light */
    --charcoal: #1a1a1a;          /* Mapped to --dark */
    --light-eucalyptus: #2c3e50;  /* Mapped to --primary */
    --deep-stone: #e67e22;        /* Mapped to --accent */
    --gradient-spa: linear-gradient(135deg, #2c3e50, #e67e22);
    --gradient-soft: linear-gradient(135deg, #f5f6fa, #e67e22);
    --shadow-soft: 0 8px 32px rgba(44, 62, 80, 0.15);   /* From --primary */
    --shadow-hover: 0 12px 48px rgba(44, 62, 80, 0.25); /* From --primary */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  /*background-color: var(--soft-white);*/
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prata", serif;
  font-weight: 400;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: var(--soft-white);
}

.about-card {
    background: var(--creamy-ivory);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-spa);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-card img{
    height: 60vh;
    width: 100%;
    object-fit: cover;
}

.stats-container {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    font-family: "Prata", serif;
}

.stat-label {
    color: var(--dark);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-spa);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--eucalyptus);
    color: var(--eucalyptus);
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--eucalyptus);
    border-color: var(--eucalyptus);
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card.featured {
    background: var(--primary-color);
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    /*color: var(--primary-color);*/
}

.feature-icon i{
    color:white;
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.whyus-image{
    height:100%;
    width:100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.contact-icon {
    aspect-ratio: 1 / 1; /* Ensures perfect circle */
    width: 3rem; /* Responsive size using rem */
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    flex-shrink: 0; /* Prevents shrinking in flex containers */
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}


.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 300px; /* Fixed height for all gallery items */
}

.gallery-item img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Remove any gaps between images */
.gl-row {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.gl-4, .gl-6 {
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
}

/* Announcement Bar */
.announcement-bar {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.announcement-bar span {
    color: var(--accent);
    font-weight: 500;
}

/* Main Navbar */
.navbar {
    background: white;
    padding: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: "Prata", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark) !important;
    padding: 10px 0;
    letter-spacing: 1px;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 25px 20px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

/* Search Box */
.search-box {
    position: relative;
    margin-right: 25px;
}

.search-box input {
    width: 220px;
    padding: 8px 40px 8px 15px;
    border: 2px solid transparent;
    border-radius: 4px;
    background: var(--light);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--primary);
    transition: color 0.3s;
}

.search-box button:hover {
    color: var(--accent);
}

/* Icons */
.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icon {
    position: relative;
    color: var(--dark);
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.nav-icon:hover {
    background: var(--light);
    color: var(--accent);
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Dropdown */
.dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 25px;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 30px;
}

/* Responsive */
@media (max-width: 1199px) {
    .announcement-bar {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .navbar-brand {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-top: 1px solid var(--light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 12px 20px !important;
    }

    .nav-link::after {
        bottom: 8px;
    }

    .search-box {
        width: 100%;
        margin: 15px 0;
    }

    .search-box input {
        width: 100%;
    }

    .nav-icons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid var(--light);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .nav-icon {
        width: 30px;
        height: 30px;
    }
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: relative;
}

.content-side {
    background: #000;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.video-side {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.accent-box {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-color);
    top: 20%;
    left: -100px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.content-inner {
    max-width: 600px;
    margin-left: auto;
    margin-right: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.tagline {
    color: var(--accent-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 60px;
}

.tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.main-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

.social-links {
    bottom: 2rem;
    left: 4rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .split-container {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }

    .video-side {
        position: relative;
        width: 100%;
        height: auto;
        opacity: 1;
    }

    .video-background {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
    }

    .video-background video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content-side {
        padding: 2rem;
    }

    .content-inner {
        margin: 0 auto;
        text-align: center;
    }

    .tagline {
        padding-left: 0;
        margin-bottom: 1rem;
    }

    .tagline::before {
        display: none;
    }

    .main-title {
        font-size: 3rem;
    }

    .social-links {
        position: relative;
        left: 0;
        bottom: 0;
        justify-content: center;
        margin-top: 3rem;
    }

    .accent-box {
        display: none;
    }
}

.logo{
    height:50px;
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
    font-family: inherit;
}

.service-img {
  max-width:60vw;
  overflow: hidden;
  border-radius: 20px;
}
.service-img img{
    height: 50vh; 
    width: 100%; 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

.service-link{
  color: var(--sage-green);  
}

@media (max-width: 768px) {
  .service-img {
    max-width: 100vw;
  }
}


.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 300px; /* Fixed height for all gallery items */
}

.gallery-item img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Remove any gaps between images */
.gl-row {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.gl-4, .gl-6 {
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
}

.alternating-testimonials {
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'), linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
    padding: 80px 0;
}

.alternating-item {
    margin-bottom: 60px;
    position: relative;
}

.alternating-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #ec4899);
    transform: translateX(-50%);
    z-index: 1;
}

.alternating-content {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.alternating-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.alternating-item:nth-child(even) .alternating-content {
    margin-left: auto;
}

.alternating-item:nth-child(odd) .alternating-content {
    margin-right: auto;
}

.alternating-content .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    border: 3px solid #e5e7eb;
}

.alternating-item:nth-child(even) .alternating-content .profile-img {
    float: right;
    margin-right: 0;
    margin-left: 25px;
}

.alternating-content .stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.alternating-content .review-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 25px;
    clear: both;
    line-height: 1.7;
}

.alternating-content .author-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.alternating-content .author-designation {
    color: #6366f1;
    font-weight: 500;
}

@media (max-width: 768px) {
    .alternating-item::before {
        display: none;
    }
    
    .alternating-item:nth-child(even) .alternating-content,
    .alternating-item:nth-child(odd) .alternating-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .alternating-item:nth-child(even) .alternating-content .profile-img {
        float: left;
        margin-right: 25px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .alternating-testimonials{
        padding: 60px 0;
    }
}

.team-card {
    padding: 30px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.team-card.active {
    background: var(--primary);
    color: white;
}

.team-card.active .member-info h4,
.team-card.active .member-info p {
    color: white;
}

.profile-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.profile-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    /*border: 8px solid white;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    background: var(--gradient-spa);
    opacity: 0.8;
    z-index: -1;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .bg-shape {
    transform: scale(1.1);
    opacity: 0.9;
}

.team-card:hover .profile-circle img {
    transform: scale(1.1);
}

.member-info h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.member-info p {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .profile-wrapper {
        width: 160px;
        height: 160px;
    }

    .profile-circle {
        width: 140px;
        height: 140px;
    }
}

.team-card .social-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.team-card .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.team-card .social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-icon {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.layout-2 .image-container {
    break-inside: avoid;
    margin-bottom: 1rem;
}

/*.layout-2 .image-container:nth-child(odd) img {*/
/*    height: 300px;*/
/*}*/

/*.layout-2 .image-container:nth-child(even) img {*/
/*    height: 200px;*/
/*}*/

.layout-2 .social-icon {
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    padding: 10px;
    border-radius: 8px;
    transform: scale(0);
}

.layout-2 .image-container:hover .social-icon {
    transform: scale(1);
}

.layout-2 .image-container:hover img {
    transform: scale(1.1);
}

/* Masonry layout for Layout 2 */
.masonry-container {
    column-count: 3;
    column-gap: 1rem;
}

@media (max-width: 992px) {
    .masonry-container {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-container {
        column-count: 1;
    }
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card.featured {
    background: var(--primary-color);
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer {
  background-color: var(--primary) !important;
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--eucalyptus);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(156, 175, 136, 0.1);
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

footer a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent) !important;
}

.text-custom{
    color: var(--accent) !important;
}

/* Remove default Bootstrap dropdown caret */
.navbar .dropdown-toggle::after {
    display: none !important;
}

.back-theme{
    background-color: var(--soft-light);
}

/* Main scroll section */
.scroll-section {
  position: relative;
  padding: 50px 0;
  min-height: 100vh;
  background-color: #ffffff;
}

/* Left column with image */
.image-column {
  position: relative;
  padding: 0 24px;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease;
}

.image-column:hover {
  opacity: 1;
}

.sticky-image {
  position: sticky;
  top: 24px;
  padding: 16px 0;
  transition: transform var(--transition-speed) ease;
}

.sticky-image img {
  
  transition: transform var(--transition-speed) ease;

}

.sticky-image img:hover {
  transform: scale(1.02);

}

/* Right column with content */
.content-column {
  padding: 0 24px;
  background: linear-gradient(to right, rgba(255,255,255,0.95), #ffffff);
  border-radius: 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.03);
}

.content-wrapper {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-wrapper h3 {
  color: var(--dark-color);
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.content-wrapper p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-wrapper .lead {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content-wrapper::-webkit-scrollbar {
  width: 6px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}


.card {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
  .image-column {
    margin-bottom: 40px;
    opacity: 1;
  }
  
  .sticky-image {
    position: relative;
    top: 0;
  }
  
  .content-wrapper {
    max-height: none;
    overflow: visible;
    padding: 16px;
  }

  .content-column {
    background: #ffffff;
    box-shadow: none;
  }
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* JavaScript helper class */
.end-scrolling {
  position: relative;
}

.service-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card-wrapper {
    width: 300px;
    flex: 0 0 auto;
}