#logo{
    height: 100px;
    width: 100px;
}
nav{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.ulnav:hover{
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 4px;
    transition: width 0.4s ease-in-out;
}
.carousel-inner img {
    max-height: 750px;
    width: auto; /* Keep aspect ratio */
    object-fit: contain; /* Show full image without cropping */
}

#section1 {
    position: relative;
}

/* Default style for larger screens */
.section1absolute {
    position: absolute;
    top: 230px;
    left: 150px;
    font-size: 60px;
}

/* For screens smaller than 1200px (Large Tablets) */
@media (max-width: 1200px) {
    .section1absolute {
        top: 180px;
        left: 120px;
        font-size: 45px;
    }
}

/* For screens smaller than 992px (Tablets) */
@media (max-width: 992px) {
    .section1absolute {
        top: 150px;
        left: 100px;
        font-size: 30px;
    }
}

/* For screens smaller than 768px (Small Tablets & Large Phones) */
@media (max-width: 768px) {
    .section1absolute {
        top: 130px;
        left: 70px;
        font-size: 25px;
    }
}

/* For screens smaller than 576px (Mobile Phones) */
@media (max-width: 576px) {
    .section1absolute {
        top: 100px;
        left: 40px;
        font-size: 19px;
    }
}

/* For very small screens (Extra Small Phones) */
@media (max-width: 400px) {
    .section1absolute {
        top: 80px;
        left: 20px;
        font-size: 15px;
    }
}


.section4btn:hover{
    color: red;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
  }
  .card img {
    max-width: 100%;
    max-height: 100%;
  }


/* .section-six {
    width: 300px;
}
.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
}
.toggle-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #f1f1f1;
} */



/* .section-six {
    width: 1000px;
   
}
.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    font-size: 20px;
    font-weight: bold;
}
.toggle-content {
    display: none;
    padding: 20px;
    border: 2px solid #ccc;
    border-top: none;
    background-color: #f1f1f1;
    font-size: 18px;
}
#toggleIcon {
    font-size: 40px;
} */

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
    transition: 0.3s;
}

.faq-item:hover {
    background: #e9ecef;
}

.toggle-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

.toggle-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
    font-size: 16px;
    color: #555;
    transition: max-height 0.3s ease-out;
}

.toggle-content.active {
    display: block;
}

/* about  */
/* .flip-container {
    perspective: 1000px;
    width:  550px;
    height: 300px;
}

.flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.front {
    background: url('flip1.png') center/cover no-repeat;
}

.back {
    background: url('flip2.jpeg') center/cover no-repeat;
    transform: rotateY(180deg);
} */

/* Flip Container - Responsive */
.flip-container {
    perspective: 1000px;
    width: 100%;
    max-width: 550px; /* Ensures it doesn't exceed 550px */
    height: auto;
}

/* Flipper - No Change */
.flipper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintains proportional height */
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Flip on Hover */
.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

/* Front & Back Styling */
.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Background Images */
.front {
    background: url('flip1.png') center/cover no-repeat;
}

.back {
    background: url('flip2.jpeg') center/cover no-repeat;
    transform: rotateY(180deg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .flip-container {
        max-width: 100%; /* Full width on smaller screens */
    }

    .flipper {
        aspect-ratio: 4 / 3; /* Adjusted height for better display */
    }
}


/* our_team  */
.section2ourteam {
    padding: 50px 20px;
    text-align: center;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.image-block {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-block:hover {
    transform: translateY(-5px);
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.social-links {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
}

.social-links a {
    text-decoration: none;
}

.social-links i {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s, color 0.3s;
}

.social-links i:hover {
    color: #000;
    transform: scale(1.2);
}

.image-label {
    font-size: 18px;
    font-weight: bold;
    color: #d9534f;
    margin-top: 15px;
}

.name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .image-block {
        width: 90%;
        max-width: 300px;
    }
}


/* contect us  */