/* The main business card container */
.cardSection .card_business-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 100%;
    max-width: 550px;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a subtle hover effect to the card */
.cardSection .card_business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Header section with name and title */
.cardSection .card_header {
    margin-bottom: 15px;
}

.cardSection .card_header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.cardSection .card_header h2 {
    margin: 0px 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Divider for visual separation */
.cardSection .card_divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 10px auto;
    width: 80px;
}

/* Company info section */
.cardSection .card_company-info {
    margin-bottom: 15px;
}

.cardSection .card_company-info h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.cardSection .card_company-info p {
    margin: 8px 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
}

/* Contact info section */
.cardSection .card_contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.cardSection .card_contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.cardSection .card_contact-info li i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
    margin-right: 12px;
}

.cardSection .card_contact-info li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cardSection .card_contact-info li a:hover {
    color: #ffffff;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .cardSection .card_business-card {
        padding: 30px;
    }
    .cardSection .card_header h1 {
        font-size: 1.8rem;
    }
    .cardSection .card_header h2 {
        font-size: 1rem;
    }
     .cardSection .card_company-info h3 {
        font-size: 1.3rem;
    }
    .cardSection .card_company-info p,
    .card_contact-info li {
        font-size: 0.9rem;
    }
  .themeSliderSection{
      padding: 6rem 5rem !important;
  }
}









 /* --- Styles for the slider's container section --- */
        .themeSliderSection {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 3rem; /* Added more horizontal padding for arrows */
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }

        /* --- Main Container --- */
        .themeSliderSection .themeSlider {
            position: relative; /* Needed for positioning the arrow buttons */
            width: 90%;
            max-width: 300px; /* Adjusted for a taller, narrower look */
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Added for component isolation */
            box-sizing: border-box; 
        }

        /* --- Carousel Scene (for 3D perspective) --- */
        .themeSliderSection .themeSlider .carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16; /* Changed to a vertical aspect ratio */
            perspective: 1200px; /* This creates the 3D space */
            transform-style: preserve-3d;
        }

        /* --- Individual Carousel Items --- */
        .themeSliderSection .themeSlider .carousel-item {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease;
            opacity: 0; /* Items are hidden by default */
        }

        .themeSliderSection .themeSlider .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-user-drag: none; /* Prevents image dragging */
        }

        /* --- Item States --- */
        /* Active (center) item */
        .themeSliderSection .themeSlider .carousel-item.active {
            transform: translateZ(0) rotateY(0);
            opacity: 1;
            z-index: 3;
        }

        /* Previous item */
        .themeSliderSection .themeSlider .carousel-item.prev {
            transform: translateX(-50%) translateZ(-250px) rotateY(30deg); /* Adjusted transform for narrower layout */
            opacity: 1;
            z-index: 2;
        }

        /* Next item */
        .themeSliderSection .themeSlider .carousel-item.next {
            transform: translateX(50%) translateZ(-250px) rotateY(-30deg); /* Adjusted transform for narrower layout */
            opacity: 1;
            z-index: 2;
        }

        /* Items further away */
        .themeSliderSection .themeSlider .carousel-item.prev-2 {
            transform: translateX(-75%) translateZ(-400px) rotateY(40deg); /* Adjusted transform */
            opacity: 0.3;
            z-index: 1;
        }

        .themeSliderSection .themeSlider .carousel-item.next-2 {
            transform: translateX(75%) translateZ(-400px) rotateY(-40deg); /* Adjusted transform */
            opacity: 0.3;
            z-index: 1;
        }

        /* --- Navigation Arrow Buttons --- */
        .themeSliderSection .themeSlider .arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .themeSliderSection .themeSlider .arrow-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        
        .themeSliderSection .themeSlider .arrow-btn.left {
            left: -22px; /* Position half outside */
        }

        .themeSliderSection .themeSlider .arrow-btn.right {
            right: -22px; /* Position half outside */
        }
        
        .themeSliderSection .themeSlider .arrow-btn svg {
            width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2.5;
        }

.img-modal {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.9);
}

.img-modal img {
    margin: auto;
    display: block;
  width: 100%;
}

.img-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: black;
  	border-radius:50%;
  	border: 2px solid white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
      padding: 0px 14px;
  padding-bottom: 2px;
}
.img-modal .close-btn:hover {
    color: #bbb;
}