
.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #BC2649
}


.btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid black;
  color: black;
}

.btn-outline:hover {
  background:black;
  color: white;
}

.btn-filled {
  background: black;
  color: white;
  border: 1px solid black;
}

.btn-filled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}

/* Hamburger Menu Styles */

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: rgb(19, 13, 13);
  transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Responsive Navbar Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    
  }

 

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-buttons {
    display: none;
  }

  /* Optional: Show nav buttons in mobile menu */
  .nav-links.active .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    height: 40px;
  }
}


  /* Hero Section */
.hero-about {
    position: relative;
    padding: 100px 10% 100px;
    text-align: center;
    margin-bottom: 400px; /* Make space for the image below the text */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-about-subtitle {
    color: #000;
    text-align: center;
    font-family: Manrope;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 25px;
}

.hero-about-title {
    color: var(--black, #000);
    text-align: center;
    font-family: Soligant;
    font-size: 90.804px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%; /* 81.724px */
    margin-bottom: 20px;
}

.hero-about-description {
    max-width: 860px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: black;
}

.tagline {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: black;
}

/* Decorative Element */
.decorative-element {
    margin: 60px auto;
    width: 150px;
    height: 60px;
    position: relative;
    z-index: 3; /* Ensure it's above the hero image */
}

.decorative-element img {
    position: relative;
    top: -55px;
    width: 200px;
}

/* Hero Image */
.hero-image-wrapper {
    position: absolute;
    width: 100%;
    height: 500px;
    left: 0;
    bottom: -400px; /* Position it below the content */
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* Focus on the upper portion of the houseboat */
    border-radius: 5px 5px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section Responsive Styles */
/* Large desktop and laptops */
@media (max-width: 1200px) {
    .hero-about {
        margin-bottom: 350px; /* Adjust image space for smaller screens */
    }
    
    .hero-about-title {
        font-size: 70px;
    }
    
    .hero-about-description,
    .tagline {
        max-width: 720px;
    }
    
    .hero-image-wrapper {
        height: 450px;
        bottom: -430px;
    }
}

/* Medium devices - small desktops */
@media (max-width: 1024px) {
    .hero-about {
        padding: 120px 8% 80px;
        margin-bottom: 330px;
    }
    
    .hero-about-title {
        font-size: 64px;
    }
    
    .hero-about-description,
    .tagline {
      
        font-size: 17px;
    }
    .decorative-element img {
    top: -40px;
}
    
    .hero-image-wrapper {
        height: 420px;
        bottom: -350px;
    }
}

/* Small devices - tablets */
@media (max-width: 768px) {
    .hero-about {
        padding: 35px 6% 60px;
        margin-bottom: 280px;
    }
    
    .hero-about-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .hero-about-title {
        font-size: 50px;
        margin-bottom: 25px;
    }
    
    .hero-about-description,
    .tagline {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-about-description {
        margin-bottom: 30px;
    }
    
    .decorative-element {
        margin: 50px auto;
        width: 120px;
        height: 50px;
    }
    
    .decorative-element img {
        width: 160px;
        top: -40px;
    }
    
    .hero-image-wrapper {
        height: 350px;
        bottom: -310px;
    }
}


/* Simple hero about section animations */

/* Initial hidden states */
.hero-about-subtitle,
.hero-about-title,
.hero-about-description,
.tagline,
.decorative-element,
.hero-image-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.hero-about-subtitle { animation-delay: 0.2s; }
.hero-about-title { animation-delay: 0.4s; }
.hero-about-description { animation-delay: 0.6s; }
.tagline { animation-delay: 0.8s; }
.decorative-element { animation-delay: 1s; }
.hero-image-wrapper { animation-delay: 1.2s; }

/* Simple fade up animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple hover effects */
.hero-about-subtitle:hover {
    color: #BC2649;
    transform: translateY(-2px) scale(1.05);
    transition: all 0.3s ease;
}

.hero-about-title:hover {
    transform: translateY(-3px) scale(1.03);
    color: #BC2649;
    transition: all 0.3s ease;
}

.hero-about-description:hover,
.tagline:hover {
    color: #333;
    transform: translateY(-1px) scale(1.02);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.decorative-element:hover {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}



/* Extra small devices - large phones */
/* @media (max-width: 576px) {
    .hero-about {
        padding: 90px 5% 50px;
        margin-bottom: 240px;
    }
    
    .hero-about-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hero-about-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .decorative-element {
        margin: 40px auto;
    }
    
    .hero-image-wrapper {
        height: 300px;
        bottom: -280px;
    }
} */

/* Very small devices - small phones */
@media (max-width: 475px) {
    .hero-about {
        padding: 100px 4% 40px;
        margin-bottom: 110px;
    }
    
    .hero-about-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-about-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-about-description,
    .tagline {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 10px;
        text-align: justify;
    }
    
    .hero-about-description {
        margin-bottom: 25px;
    }
    
    .decorative-element {
        margin: 35px auto;
        width: 100px;
        height: 40px;
    }
    
    .decorative-element img {
        width: 130px;
        top: -30px;
    }
    
    .hero-image-wrapper {
        height: 250px;
        bottom: -150px;
    }
}

/* Extremely small devices */
/* @media (max-width: 375px) {
    .hero-about {
        padding: 70px 3% 30px;
        margin-bottom: 200px;
    }
    
    .hero-about-subtitle {
        font-size: 16px;
    }
    
    .hero-about-title {
        font-size: 32px;
    }
    
    .hero-about-description,
    .tagline {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .decorative-element {
        margin: 30px auto;
    }
    
    .decorative-element img {
        width: 120px;
        top: -25px;
    }
    
    .hero-image-wrapper {
        height: 220px;
        bottom: -200px;
    }
} */

    /* Styles for the Meet the Visionary section */
.about-visionary-section {
    padding: 80px 40px;
    padding-bottom: 0px;
    background-color: #faf6f6;
    overflow: hidden;
}

.about-visionary-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    padding: 0 50px;
}

.about-visionary-content {
    flex: 1;
    padding-right: 40px;
}

.about-visionary-header {
    margin-bottom: 30px;
    position: relative;
}

.about-visionary-label {
    color: #000;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 130%; /* 18.2px */
letter-spacing: 2.8px;
margin-bottom: 20px;
opacity: 0.75;  
    /* border-bottom: 1px solid #4a90e2; */
}

.about-visionary-name {
    color: var(--primary-rose, #BC2649);
    font-family: Soligant;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 67.2px */
    margin-bottom: 10px;
}

.about-visionary-titles {
    color: #000;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
    margin-bottom: 10px;
    opacity: 0.75;
}

.about-visionary-subtitle {
    color: #000;

font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 38.4px */
margin-bottom: 10px;
opacity: 0.75;
}

.about-visionary-text{
    padding-bottom: 40px;
}

.about-visionary-bio {
    color: #444;
    max-width: 539px;
}

.about-visionary-paragraph {
    color: #000;

    margin-bottom: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    opacity: 0.75;
}

.about-visionary-paragraph:last-child {
    margin-bottom: 0;
}

.about-visionary-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-visionary-image {
    max-width: 80%;
    height: auto;
    border-radius: 2px;

}

.about-visionary-image-mobile{
    display: none;
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
     .about-visionary-container {
        flex-direction: column;
    }


    .about-visionary-content {
        padding-right: 0;
        margin-top: 40px;
        width: 100%;
    }
    
    .about-visionary-image-container {
     display: none;
}

.about-visionary-image-mobile {
    display: block;
    max-width: 500px;
    margin: 20px auto 25px auto; /* Space above and below */
}


@media (max-width: 768px) {
.about-visionary-text{
    justify-items: center;
}

    .about-visionary-section {
        padding: 60px 0;
    }
    
    .about-visionary-name {
        font-size: 40px;
    }
    
    .about-visionary-subtitle {
        font-size: 24px;
    }
    .about-visionary-image{
        max-width: 55%;
    }
}

@media (max-width: 576px) {
.about-visionary-container {
    padding: 0 20px;
}

    .about-visionary-section {
        padding: 40px 0;
    }
    
    .about-visionary-name {
        font-size: 36px;
    }
    
    .about-visionary-subtitle {
        font-size: 22px;
    }
    
    .about-visionary-label {
        font-size: 14px;
    }
    
    .about-visionary-titles {
        font-size: 14px;
    }
    
    .about-visionary-paragraph {
        font-size: 15px;
    }
        .about-visionary-image{
        max-width: 100%;
    }
}
}



/* Animation and UX improvements for Visionary Section */

/* Scroll-triggered animations */
.about-visionary-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

/* Header animations with staggered effect */
.about-visionary-label {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

.about-visionary-name {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    transition: color 0.3s ease;
}

.about-visionary-name:hover {
    color: #d41f42;
    text-shadow: 0 2px 10px rgba(188, 38, 73, 0.2);
    cursor: default;
}

.about-visionary-titles {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

/* Subtitle with underline animation */
.about-visionary-subtitle {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 1s;
    position: relative;
    display: inline-block;
}

.about-visionary-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #bc2649, #e06683);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.about-visionary-subtitle:hover::after {
    width: 100%;
}

/* Paragraph animations */
.about-visionary-paragraph {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.about-visionary-paragraph:nth-child(1) {
    animation-delay: 1.2s;
}

.about-visionary-paragraph:nth-child(2) {
    animation-delay: 1.4s;
}

.about-visionary-paragraph:hover {
    transform: translateX(10px);
    color: #333;
    opacity: 1;
}

.about-visionary-paragraph::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #BC2649, #d41f42);
    transition: width 0.4s ease;
}

.about-visionary-paragraph:hover::before {
    width: 4px;
}

/* Image animations and effects */
.about-visionary-image-container {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.about-visionary-image {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(0.2) brightness(1);
    position: relative;
    overflow: hidden;
}

.about-visionary-image:hover {
    transform: scale(1.02);
    filter: grayscale(0) brightness(1.05);
    box-shadow: 0 15px 35px rgba(188, 38, 73, 0.15);
    border-radius: 8px;
}

.about-visionary-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(188, 38, 73, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.about-visionary-image-container:hover::before {
    opacity: 1;
}

/* Mobile image animations */
.about-visionary-image-mobile {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

/* Additional keyframes */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Interactive content container */
.about-visionary-content {
    transition: transform 0.3s ease;
}

.about-visionary-content:hover {
    transform: translateY(-2px);
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .about-visionary-paragraph:hover {
        transform: translateX(5px);
    }
    
    .about-visionary-image:hover {
        transform: scale(1.01);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}










/* Expertise-section */


.about-expertise-section {
    background-color: #001a2c;
    color: #ffffff;
    padding: 80px 0;
}

.about-expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
}

.about-expertise-left {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
}

.about-expertise-right {
    flex: 1;
}

.about-expertise-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-expertise-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.about-expertise-logo {
    margin-top: auto;
    max-width: 160px;
}

.about-logo-image {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
}

.about-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-expertise-item:last-child {
    margin-bottom: 0;
}

.about-expertise-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background:linear-gradient(#BC2649,#E06683);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.about-icon-image {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.about-expertise-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}
.about-expertise-logo-mobile{
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-expertise-container {
        flex-direction: column;
    }
    
    .about-expertise-left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-expertise-logo {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-expertise-section {
        padding: 60px 0;
    }
    
    .about-expertise-title {
        font-size: 32px;
    }
    
    .about-expertise-item {
        margin-bottom: 25px;
    }
    
    .about-expertise-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .about-icon-image {
        width: 24px;
        height: 24px;
    }
    
    .about-expertise-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-expertise-section {
        padding: 50px 0;
    }
    
    .about-expertise-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-expertise-description {
        font-size: 15px;
    }
    
    .about-expertise-item {
        margin-bottom: 20px;
    }
    
    .about-expertise-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-right: 15px;
    }
    
    .about-icon-image {
        width: 22px;
        height: 22px;
    }
    
    .about-expertise-text {
        font-size: 15px;
    }
    
}




 /* CEO Message Section Styles */
        .about-ceo-section {
            padding: 60px 40px;
            padding-bottom: 0px;
            background-color: #f9f9f9;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: 0.2s;
        }

        .about-ceo-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: row-reverse; /* Image on left, content on right */
            padding: 0 50px;
        }

        .about-ceo-content {
            flex: 1;
            padding-left: 40px;
        }

        .about-ceo-header {
            margin-bottom: 30px;
            position: relative;
        }

        .about-ceo-label {
            color: #000;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%;
            letter-spacing: 2.8px;
            margin-bottom: 20px;
            opacity: 0.75;
            opacity: 0;
            transform: translateX(20px);
            animation: slideInRight 0.6s ease-out forwards;
            animation-delay: 0.4s;
        }

        .about-ceo-name {
            color: var(--primary-rose, #BC2649);
            font-family: Soligant, serif;
            font-size: 56px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: 0.6s;
            transition: color 0.3s ease;
        }

        .about-ceo-name:hover {
            color: #d41f42;
            text-shadow: 0 2px 10px rgba(188, 38, 73, 0.2);
            cursor: default;
        }

        .about-ceo-titles {
            color: #000;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            margin-bottom: 10px;
            opacity: 0.75;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.6s ease-out forwards;
            animation-delay: 0.8s;
        }

        .about-ceo-subtitle {
            color: #000;
            font-size: 25px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            margin-bottom: 5px;
            opacity: 0.75;
            opacity: 0;
            transform: translateY(15px);
            animation: fadeInUp 0.6s ease-out forwards;
            animation-delay: 1s;
            position: relative;
            display: inline-block;
        }

        .about-ceo-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #bc2649, #e06683);
            transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
        }

        .about-ceo-subtitle:hover::after {
            width: 100%;
        }

        .about-ceo-text {
            padding-bottom: 20px;
            position: relative;
        }

        /* Quote Symbol */
        .quote-symbol {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
            margin-left: 0;
            opacity: 0;
            transform: scale(0.8);
            animation: scaleIn 0.6s ease-out forwards;
            animation-delay: 1.2s;
            display: block;
        }

        .about-ceo-bio {
            color: #444;
            max-width: 539px;
            position: relative;
        }

        .about-ceo-paragraph {
            color: #000;
            margin-bottom: 10px;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            opacity: 0.75;
            opacity: 0;
            transform: translateY(15px);
            animation: fadeInUp 0.6s ease-out forwards;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .about-ceo-paragraph:nth-child(2) {
            animation-delay: 1.4s;
        }

        .about-ceo-paragraph:nth-child(3) {
            animation-delay: 1.6s;
        }

        .about-ceo-paragraph:nth-child(4) {
            animation-delay: 1.8s;
        }

        .about-ceo-paragraph:nth-child(5) {
            animation-delay: 2.0s;
        }

        .about-ceo-paragraph:hover {
            transform: translateX(-10px);
            color: #333;
            opacity: 1;
        }

        .about-ceo-paragraph::before {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #BC2649, #d41f42);
            transition: width 0.4s ease;
        }

        .about-ceo-paragraph:hover::before {
            width: 4px;
        }

        .about-ceo-paragraph:last-child {
            margin-bottom: 0;
        }

        /* Message Signature */
        .message-signature {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 2px solid #e0e0e0;
            text-align: left;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
            animation-delay: 2.2s;
        }

        .signature-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-rose, #BC2649);
            font-style: italic;
            margin-bottom: 5px;
        }

        .signature-role {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }

        .about-ceo-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.8s ease-out forwards;
            animation-delay: 0.8s;
            position: relative;
        }

        .about-ceo-image {
            max-width: 80%;
            height: auto;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: grayscale(0.2) brightness(1);
        }


      

        .about-ceo-image-mobile {
            display: none;
            margin: 20px 0;
            width: 100%;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
            animation-delay: 0.6s;
        }

        .about-ceo-content {
            transition: transform 0.3s ease;
        }

        .about-ceo-content:hover {
            transform: translateY(-2px);
        }

        /* Keyframes */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-ceo-container {
                flex-direction: column;
            }

            .about-ceo-content {
                padding-left: 0;
                margin-top: 40px;
                width: 100%;
            }
            
            .about-ceo-image-container {
                display: none;
            }

            .about-ceo-image-mobile {
                display: block;
                max-width: 500px;
                margin: 20px auto 25px auto;
            }
        }

        @media (max-width: 768px) {
            .about-ceo-text {
                justify-items: center;
            }

            .about-ceo-section {
                padding: 45px 0;
            }
            
            .about-ceo-name {
                font-size: 40px;
            }
            
            .about-ceo-subtitle {
                font-size: 24px;
            }
            
            .about-ceo-image {
                max-width: 55%;
            }

            .about-ceo-paragraph:hover {
                transform: translateX(-5px);
            }
            
            .about-ceo-image:hover {
                transform: scale(1.01);
            }

            .quote-symbol {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 576px) {
            .about-ceo-container {
                padding: 0 20px;
            }

            .about-ceo-section {
                padding: 35px 0;
            }
            
            .about-ceo-name {
                font-size: 36px;
            }
            
            .about-ceo-subtitle {
                font-size: 22px;
            }
            
            .about-ceo-label {
                font-size: 14px;
            }
            
            .about-ceo-titles {
                font-size: 14px;
            }
            
            .about-ceo-paragraph {
                font-size: 15px;
            }
            
            .about-ceo-image {
                max-width: 100%;
            }

            .quote-symbol {
                width: 45px;
                height: 45px;
            }
        }









    /* Vision Mission Section */
        .vision-mission-section {
            background: linear-gradient(135deg, #fdf7f9 0%, #fff5f7 100%);
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .vision-mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(188, 38, 73, 0.08), transparent);
            transition: left 0.8s ease;
        }

        .vision-mission-section:hover::before {
            left: 100%;
        }

        .vision-mission-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .section-title {
            color: #000;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%;
            letter-spacing: 2.8px;
            opacity: 0.75;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #bc2649, #e06683);
            transition: all 0.6s ease;
            transform: translateX(-50%);
        }

        .vision-mission-section:hover .section-title::after {
            width: 120px;
        }

        .section-subtitle {
            font-size: 36px;
            font-weight: 500;
            color: #000;
            margin-bottom: 10px;
            line-height: 1.2;
            background: linear-gradient(135deg, #333, #666, #333);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
        }

        .vision-mission-section:hover .section-subtitle {
            background: linear-gradient(135deg, #bc2649, #e06683, #bc2649);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 2s ease-in-out infinite;
        }

        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .vision-card, .mission-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(188, 38, 73, 0.1);
            animation: fadeInUp 0.8s ease both;
        }

        .vision-card {
            animation-delay: 0.4s;
        }

        .mission-card {
            animation-delay: 0.6s;
        }

        .vision-card::before, .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #bc2649, #e06683);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .vision-card:hover::before, .mission-card:hover::before {
            transform: scaleX(1);
        }

        .vision-card:hover, .mission-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(188, 38, 73, 0.15);
            background: rgba(255, 255, 255, 0.95);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #bc2649, #e06683);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .card-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e06683, #bc2649);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .vision-card:hover .card-icon::before,
        .mission-card:hover .card-icon::before {
            opacity: 1;
        }

        .card-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
            z-index: 2;
            position: relative;
            transition: transform 0.4s ease;
        }

        .vision-card:hover .card-icon svg,
        .mission-card:hover .card-icon svg {
            transform: scale(1.1) rotate(5deg);
        }

        .card-title {
            font-size: 24px;
            font-weight: 600;
            color: #000;
            margin-bottom: 20px;
            position: relative;
        }

        .card-description {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            transition: color 0.4s ease;
        }

        .vision-card:hover .card-description,
        .mission-card:hover .card-description {
            color: #222;
        }

        /* Background decorative elements */
        .vision-mission-section {
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(188, 38, 73, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(224, 102, 131, 0.05) 0%, transparent 50%);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .vision-card:hover .card-icon,
        .mission-card:hover .card-icon {
            animation: float 2s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .vision-mission-section {
                padding: 40px 15px;
            }

            .vision-mission-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-subtitle {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .vision-card, .mission-card {
                padding: 30px 20px;
            }

            .card-title {
                font-size: 22px;
            }

            .card-description {
                font-size: 15px;
            }

            .section-title {
                font-size: 12px;
            }

            .vision-mission-section::before {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .vision-mission-section {
                padding: 30px 10px;
            }

            .section-subtitle {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .vision-card, .mission-card {
                padding: 25px 15px;
            }

            .card-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .card-icon svg {
                width: 35px;
                height: 35px;
            }

            .card-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .card-description {
                font-size: 14px;
            }

            .vision-card:hover, .mission-card:hover {
                transform: translateY(-4px);
            }
        }

        /* Scroll trigger animation */
        .vision-mission-section.in-view {
            animation: fadeInUp 1s ease both;
        }






       




       
    