body {
    font-family: "Noto Sans", serif;
}

.main-header {
    position: relative;
    height: 100vh;
    color: #fff;
}

.navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    padding: 1.5rem 0;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease, padding 0.3s ease;
}

.nav-link.scrolled {
    color: rgba(0, 0, 0, 0.9);
    padding: 0.5rem 1.2rem !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
}


.navbar-brand {

    transition: transform 0.3s ease;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-text {
    color: #ffffff;
}

.brand-text-accent {
    color: #4CAF50;
}


.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #4CAF50;
    transition: all 0.3s ease;
}

.hover-underline:hover::after {
    width: 80%;
    left: 10%;
}

.carousel-item {
    height: 100vh;
    min-height: 400px;
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    filter: brightness(0.8);
}

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

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.animate-caption {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-caption-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.animate-caption-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

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

.btn-outline-light {
    border-width: 2px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    .nav-link {
        color : black
    }
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .btn-outline-light {
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 240, 255, 0.4) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.hero h1 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-top: 2rem;
    background: linear-gradient(200deg, #ff8000, #ffc87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h3 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-image {
        margin-top: 3rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.why-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Styles */
.why-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover::before {
    opacity: 1;
}

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

.icon-background {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-card:hover .icon-background {
    transform: rotate(10deg);
}

.icon-background i {
    font-size: 24px;
    color: white;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Image Container */
.why-image-container {
    position: relative;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
}

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

.stats-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-cards-grid {
        gap: 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        position: relative;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

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

    .section-description {
        font-size: 1.1rem;
    }

    .why-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .stats-card {
        flex-direction: column;
        gap: 15px;
    }
}

.stats-number,
.stats-symbol {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
    margin-bottom: 5px;
}

.why-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.image-wrapper {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.section-header,
.why-card,
.image-wrapper {
    will-change: transform, opacity;
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.partners-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.partners-carousel-container {
    position: relative;
    padding: 0 50px;
    margin-bottom: 60px;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #4CAF50;
    color: white;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease;
}

.partner-item {
    flex: 0 0 calc(20% - 40px);
    margin: 0 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 100%;
}

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

.partner-card img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

.partner-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partner-card:hover .partner-image-container {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .partner-card {
        height: 100px;
    }

    .partner-card img {
        max-width: 70%;
    }
}

@media (max-width: 576px) {
    .partner-card {
        height: 90px;
    }
}

.partners-summary {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

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

.summary-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.summary-label {
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 1200px) {
    .partner-item {
        flex: 0 0 calc(25% - 40px);
    }
}

@media (max-width: 992px) {
    .partner-item {
        flex: 0 0 calc(33.333% - 40px);
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .partner-item {
        flex: 0 0 calc(50% - 40px);
    }

    .partners-summary {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 576px) {
    .partner-item {
        flex: 0 0 calc(100% - 40px);
    }

    .partners-carousel-container {
        padding: 0 30px;
    }
}

.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4CAF50;
}

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

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #4CAF50;
    color: white;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #4CAF50;
    transform: scale(1.2);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}

.stat-symbol {
    font-size: 2rem;
    color: #4CAF50;
    margin-left: 5px;
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .testimonial-stats {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

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

    .testimonial-text {
        font-size: 1rem;
    }
}

.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

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

    100% {
        background-position: -100% 0;
    }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 45px rgba(76, 175, 80, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-info-text {
    color: #555;
}

.contact-info-text h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 25px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #aaa;
    font-weight: 300;
}

.btn-submit {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

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

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

.contact-info-card,
.contact-form {
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-info-item:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-info-item:nth-child(3) {
    animation-delay: 0.6s;
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-info-card,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.footer {
    background-color: #4c4c4c;
    color: white;
    padding: 40px 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 0 0 25%;
}

.footer-center {
    flex: 0 0 50%;
    padding: 0 20px;
}

.footer-right {
    flex: 0 0 25%;
    text-align: right;
}

.footer-logo-cnfci {
    width: 200px;
    height: auto;
}

.footer-logo-republic {
    width: 200px;
    height: auto;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .footer-right {
        text-align: center;
    }
}

.about-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.about-content {
    padding-right: 50px;
}


.about-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.5s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .feature-item {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        height: 400px;
    }
}