        @font-face {
            font-family: QuickSand;
            src: url(Quicksand/Quicksand-Bold.ttf);
        }

        @font-face {
            font-family: QuickLight;
            src: url(Quicksand/Quicksand-Light.ttf);
        }

        @font-face {
            font-family: QuickMedium;
            src: url(Quicksand/Quicksand-Medium.ttf);
        }

        .carousel-inner img {
            width: 100%;
            height: 100%;
        }

        .shubham {
            background-image: url("<?php echo base_url()?>assets/images/814.jpg");
        }

        .tag-line {
            text-align: center;
            font-size: 25px;
            font-family: QuickLight;
            width: 80%;
            margin: 6vw auto;
        }

        .tag-line1 {
            text-align: center;
            font-size: 25px;
            font-family: QuickMedium;
        }

        @media only screen and (max-width: 600px) {
            .tag-line {
                font-size: 16px !important;
            }

            .tag-line1 {
                font-size: 16px !important;
            }
        }



/* card styling - start */
.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

/* Replaces `.cards-container .card` usage */
.card-wrapper {
    perspective: 2000px;
    display: inline-block;
    width: 22%;
    height: 350px;
    margin: 20px;
    vertical-align: top;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.card-wrapper:hover .card-inner {
    transform: rotateY(180deg);
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-front {
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
/* card styling - end */

/* Media query for medium screens */
@media (max-width: 768px) {
    .card-wrapper {
        width: 100%;
        height: auto;
        margin: 15px auto;
    }

    .card-inner {
        transform: none !important;
        transition: none !important;
    }

    .card {
        position: relative;
        transform: none !important;
    }

    .card-back {
        display: none;
    }

    .card-front {
        z-index: auto;
    }
}

/* Media query for small screens */
@media (max-width: 480px) {
    .card-wrapper {
        width: 100%;
        height: auto;
        margin: 15px 0;
    }
}

/* Media query for large screens (1500px and up) */
@media (min-width: 1500px) {
    .cards-container {
        max-width: 1700px;
    }

    .card-wrapper {
        width: 21.5%;
        height: 350px;
    }
}




/* Media query for large screens (1500px and up) */
@media (min-width: 1500px) {
    .cards-container {
        /* max-width: 1700px;  Increase the max-width to fit four cards comfortably */
        /* margin-bottom: 45px; */
    }

    .cards-container .card {
        /* width: 21.5%;  Ensure four cards fit in a row (100% / 4 - small margin) */ 
        /* height: 500px; Optional: Increase height if needed */
        /* height: auto; */
    }
}


/* Core Team Section */
.core-team {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Center the boss card on top */
.boss-row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 30px;
}

/* Boss and Team Cards */
.boss-card, .team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgb(59 57 57 / 20%); 
    border: solid 1px gray;
    border-radius: 12px;
    padding: 0;
    width: 32%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 300px; /* Reduced card height */
}

/* Hover effect on the card */
.boss-card:hover, .team-card:hover {
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

/* Centering image */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    margin-top: 20px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

/* Team Info Section */
.team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px; /* Reduced padding */
    text-align: center;
    height: 40%;
}

.team-info h3 {
    margin: 5px 0; /* Reduced margin for the name */
}

.team-info p {
    margin: 3px 0 0 0; /* Reduced bottom margin for designation */
}

/* Info Overlay */
.info-overlay {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 3;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto; /* Allows scrolling if needed */
    
    /* Hide scrollbar in modern browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; 
}
.info-overlay::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Show overlay on hover */
.boss-card:hover .info-overlay, .team-card:hover .info-overlay {
    display: flex;
    opacity: 1;
}

/* Social Links in Info Overlay */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    color: #ddd; /* Default color for social icons */
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

.social-icons {
    color: #0077b5;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons:hover {
    transform: scale(1.1);
    color: #0e76a8; /* LinkedIn blue on hover */
}

.team-row {
    /* display: flex; */
    
    display: none;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .team-card, .boss-card {
        width: 48%;
    }

    .team-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .team-card, .boss-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

.bottom-right-text {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 36ch; /* Adjust to wrap exactly 4 lines of content */
  text-align: left; /* or use 'right' if preferred */
  line-height: 1.5;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .bottom-right-text {
    width: 32ch;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .bottom-right-text {
    width: 28ch;
    font-size: 0.85rem;
  }
}

.anamorphic-section{
    /* margin:2%; */
}

.main-exp-text{
    font-size:8vw;
}

.main-exp-subtext{
    font-size:2vw;
}

@media (max-width: 480px) {
    .main-exp-text{
        font-size:2.5rem;
    }

    .main-exp-subtext{
        font-size:1rem;
    }

}

.google-logo-icon{
    width:10%;
}
.offering-card-link:focus {
  outline: none;
}