/* //////////////////////////////////hero section/////////////////////////////// */
.hero-title .highlight-text {
    /* Define the yellow color and the initial "underline" height */
    background-image: var(--theme-hero-title);
    /* Replace with your specific yellow hex */
    background-repeat: no-repeat;

    /* Position the background at the bottom of the text */
    /* background-size: 100% 20%; */
    background-position: 0 0;
    /* background-size: 100% 20%;
    background-position: 0 90%; */

    /* Smooth transition for the hover effect */
    transition: background-size 0.3s ease-in-out, background-position 0.3s ease-in-out;

    /* Optional: padding to make the box look cleaner */
    padding: 0 4px;
    display: inline-block;
}

/* When the H1 is hovered, expand the background of the spans */
.hero-title:hover .highlight-text {
    /* background-size: 100% 20%; */
    background-size: 100% 100%;
    background-position: 0 0;
    /* background-position: 0 90%; */

    /* Optional: Change text color to black if the yellow makes it hard to read */
    color: #000 !important;
}


/* ///////////////////////////////header/////////////////////////////// */
.header-top {
    padding: 5px 0 5px 0 !important;
    background-color: black !important;
}

@media (max-width: 768px) {
    .topheadlogo {
        display: none !important;
    }

    .mainlogosimage {
        width: 50px !important;
    }
}

@media (max-width: 768px) {
    h3.titlefontsize {
        display: none !important;
    }

    h4.titlefontsize,
    .mainlogos {
        display: block !important;
    }
}

@media (min-width: 769px) {
    h3.titlefontsize {
        display: block !important;
    }

    h4.titlefontsize {
        display: none !important;
    }
}

.header-top-contact ul {
    margin-bottom: 0px;
}

.navbar img.rounded-circle:hover {
    border-color: #f1b988;
    transition: 0.3s ease;
}

.case-img {
    width: 100%;
    /* Ensures full width */
    height: 250px;
    /* Fixed height (Adjust as needed) */
    overflow: hidden;
    /* Prevents image overflow */
    position: relative;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the area while maintaining aspect ratio */
    object-position: center;
    /* Centers the image */
}

.navbar {
    /* background: #0a5183; */
    /* background: #bb9471; */
    margin: 1px;
    /* background: #002d4c; */
    border-radius: 62px;
}

a {
    text-decoration: none;
}



/* ////////////////////////////////other////////////////////////////////// */

.form-control {
    font-weight: 700 !important;
}

.form_wrapper {
    /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5); */
    box-shadow: 0px 0px 2px 0px rgb(255 255 255);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 20px 20px 20px 20px;
    border-radius: 10px 10px 10px 10px;
}

/* ///////////////////////////////////////////event////////////////////////////////////////// */
.theme-style-bg {
    background-color: #f8f9fa;
}

/* Card Layout */
.event-card-clean {
    background: #feba0108;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.event-date {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Image Filling */
.event-img-wrap {
    height: 180px;
    /* Fixed height to keep cards aligned */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.event-fixed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes the image fill without stretching */
}

/* Text Overflow Handling (2 Lines) */
.event-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Shows exactly 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 2.8em;
    transition: max-height 0.4s ease;
}

.event-title.expanded {
    display: block;
    -webkit-line-clamp: initial;
    max-height: 1000px;
}

/* Read More Button */
.read-more-btn {
    display: none;
    /* JS will show this if title is too long */
    background: none;
    border: none;
    color: #f1b988;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 5px;
}

/* /////////////////////////////////////////other2//////////////////////////////////////////// */
/* Container Spacing */
.py-90 {
    padding: 90px 0 !important;
}

/* Card Styling */
.service-item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    /* Light gray border from image */
    border-radius: 12px !important;
    /* Rounded corners */
    padding: 30px !important;
    height: 100% !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* Align text to the left */
}

/* Hover Effect: Subtle shadow like the image */
.service-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--theme-color-hover) !important;
    /* Optional: border turns yellow on hover */
}

/* Icon Container */
.service-icon {
    width: 60px !important;
    height: 60px !important;
    /* background: #fff9d6 !important; */
    /* Light yellow circular background */
    border-radius: 12px !important;
    /* Matches card rounding */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
}

.service-icon img {
    width: 35px !important;
    height: 35px !important;
    /* If using SVGs, this ensures they match the yellow theme */
    filter: invert(64%) sepia(95%) saturate(450%) hue-rotate(3deg) brightness(103%) contrast(105%) !important;
}

/* Title Styling */
.service-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0d1b2a !important;
    /* Dark navy/black */
    margin-bottom: 15px !important;
}

.service-title a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Text Styling */
.service-text {
    font-size: 16px !important;
    color: #4a4a4a !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Hide the background shape if it interferes with the clean look */
.service-shape {
    display: none !important;
}

/* //////////////////////////footer//////////////////////////////// */
/* Footer Container */
.footer-area.theme-style {
    background-color: #ffffff;
    /* White background like image */
    color: #000000;
    font-family: 'Inter', sans-serif;
    /* Clean sans-serif */
}

/* Brand Section */
.footer-brand-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.footer-brand-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Large Social Icons */
.footer-social-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-social-large a {
    color: #000;
    transition: transform 0.3s ease;
}

.footer-social-large a:hover {
    transform: translateY(-5px);
}

/* Divider Line */
.footer-divider {
    border-top: 1px solid #eee;
    margin: 0;
}

/* Widget Styles */
.widget-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
}

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

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

.footer-links li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-links li a:hover {
    color: #000;
    text-decoration: underline;
}

/* Specific Social Icons in List */
.social-small i {
    width: 20px;
    margin-right: 8px;
}

/* Logo box */
.footer-logo-box img {
    max-width: 180px;
}

/* whatsapp_icon */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

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

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

#whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 1000;
    animation: floatAnimation 2s infinite ease-in-out;
}

#whatsapp-float:hover {
    background-color: #1EBEA5;
}

#scroll-top.active {
    right: 20px;
    bottom: 141px;
}

/* 1. Base State: Small for Mobile (Default) */
/* .indanilogo {
    width: 92px; 
    transition: width 0.3s ease;
}
@media (min-width: 992px) {
    .indanilogo {
        width: 150px;
    }
}

.navbar.fixed-top .indanilogo {
    width: 92px !important;
} */

/* Desktop Logo Resize on Scroll */
@media (min-width: 992px) {
    /* Smooth transition for the logo */
    .mainlogosimage {
        transition: width 0.3s ease-in-out;
    }

    /* When the navbar becomes fixed/sticky */
    .main-navigation.sticky-active .mainlogosimage {
        width: 90px !important;
    }
}

/* Mobile View: Ensure no disruption */
@media (max-width: 991px) {
    .mainlogosimage {
        width: 120px; /* Or whatever size looks best on mobile */
    }
}