/* Hero Section Boduppal */
.location-hero-boduppal {
    background: linear-gradient(rgba(102, 0, 211, 0.65), rgba(239, 74, 68, 0.65)),
        url('images/boduppal-office.jpg') center/cover no-repeat;
    min-height: 100vh;
    padding: 120px 20px;
}

/* Highlight Badge */
.hero-badge-boduppal {
    background: #ef4a44;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.hero-badge-boduppal i {
    margin-right: 6px;
}

/* Title */
.hero-title-boduppal {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    color: #fff;
}

/* Subtitle */
.hero-subtitle-boduppal {
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    /* margin-left: auto;
    margin-right: auto; */
}

.banner-thumb.bg img {

    max-width: 100%;
    height: 400px;
    object-fit: contain;

}

/* Buttons */
.btn-location-boduppal {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #ef4a44, #ff6b6b);
    padding: 8px 45px;
    border-radius: 4px;
    text-decoration: none;
    margin: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-location-boduppal i {
    margin-right: 8px;
}

.btn-location-boduppal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* Alternate Button */
.btn-location-boduppal.btn-alt {
    background: linear-gradient(45deg, #6600d3, #8a2be2);
}

.btn-location-boduppal.btn-alt:hover {
    background: linear-gradient(45deg, #4a00a8, #6600d3);
    color: #fff;
}

/* Outline Button */
.btn-location-boduppal.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}

.btn-location-boduppal.btn-outline:hover {
    background: #fff;
    color: #6600d3;
}



.leader-profile {
    /* background: #f9f9f9; */
    background: linear-gradient(45deg, #4a00a8, #6600d3);
}

.leader-profile h5 {
    font-size: 14px;
}

.glassy-card {
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.profile-card {
    background: #fff;
}

.profile-img {
    max-height: 300px;
    object-fit: cover;
    border: 4px solid rgba(239, 74, 68, 0.4);
    border-radius: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
    /*align-items: center;*/
    /*justify-content: center;*/
}

.social-icons a {
    height: 40px;
    width: 40px;
    display: inline-block;
    margin: 0 5px;
    font-size: 15px;
    color: #6600d3;
    background: rgba(239, 74, 68, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #ef4a44, #6600d3);
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, #ef4a44, #6600d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f766e);
    /* font-family: 'Segoe UI', sans-serif; */
    color: #fff;
}


.service-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 100px;
}



.service-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: #fff;
}

.service-text h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    color: #f1f5f9;
}

.service-text p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.3;
}

.client-logos {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    background: #f9f9f9;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
    gap: 20px;
}

/* .logo-track img {
    margin: 0 20px;
    height: 60px;
    width: auto;
    padding: 10px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    background: #fff;

} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-nav button {
    background: #6600d3;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 30px;
    transition: background 0.3s, transform 0.2s;
}

.gallery-nav button:hover {
    background: #ef4a44;
    transform: scale(1.05);
    color: #fff;
}

.gallery-nav button.active {
    background: #ef4a44;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
    border: 3px solid transparent;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: #ef4a44;
}

.modal-content {
    background: transparent;
    border: none;
}

.btn-close-white {
    filter: invert(1);
}

:root {
    --nayana-primary: #ef4a44;
    --nayana-secondary: #6600d3;
}



.nayana-contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: #151d35;
    color: #fff;
}

.nayana-contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
}

.nayana-contact-info h4 {
    background: linear-gradient(45deg, var(--nayana-primary), var(--nayana-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 20px;
}

.nayana-info-item {
    display: flex;
    margin-bottom: 20px;

}

.nayana-info-item strong {
    color: #fff;
}

.nayana-info-item a {
    color: #fff;
}

.nayana-info-item i {
    font-size: 1.5rem;
    color: var(--nayana-primary);
    margin-right: 15px;
}

.nayana-contact-form {
    background: rgb(0 0 128 / 74%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
}

.nayana-contact-form h4 {
    /* background: linear-gradient(45deg, var(--nayana-primary), var(--nayana-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.nayana-form-group {
    position: relative;
    margin-bottom: 20px;
}

.nayana-form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--nayana-primary);
    font-size: 1.2rem;
}

.nayana-form-control {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 45px;
    color: #fff;
    border-radius: 8px;
    height: 35px;
}

.nayana-form-control::placeholder {
    color: #ccc;
}

.nayana-form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    border: none;
    color: #fff;
}

.nayana-form-textarea {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 45px;
    color: #fff;
    border-radius: 8px;
    resize: none;
}

.nayana-form-textarea::placeholder {
    color: #ccc;
}

.nayana-form-textarea:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    border: none;
    color: #fff;
}

.nayana-btn-primary {
    background: linear-gradient(45deg, var(--nayana-primary), var(--nayana-secondary));
    border: none;
    transition: background 0.3s;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
}

.nayana-btn-primary:hover {
    background: linear-gradient(45deg, var(--nayana-secondary), var(--nayana-primary));
}

@media only screen and (max-width: 768px) {
    .hero-title-boduppal {
        font-size: 2rem;


    }

    .hero-subtitle-boduppal {
        font-size: 16px;
        line-height: 1.4;

    }
}

.map-sec {

    border: 5px solid #fff;
    border-radius: 8px;
}

.map-sec h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding: 20px;
}

.map-sec iframe {
    height: 300px;
    width: 100%;
    border-radius: 8px;
}


.text-gradient {
    background: linear-gradient(45deg, #6600d3, #000080, #ef4a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.expertise-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.expertise-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.expertise-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expertise-card:hover .expertise-img img {
    transform: scale(1.1);
}

.expertise-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 0, 211, 0.6), rgba(239, 74, 68, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover .overlay {
    opacity: 1;
}

.expertise-content {
    background: #fff;
}

.expertise-content h5 {
    color: #000080;
}

.expertise-content p {
    font-size: 0.95rem;
    color: #555;
}

.nayana-contact-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 5px solid var(--nayana-primary);
    height: 420px;
    object-position: top;

}


.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-title {
    color: #6600d3;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: #fff;
    color: #000080;
    font-weight: 600;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question.active {
    background: #6600d3;
    color: #fff;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fdfdfd;
}

.faq-answer p {
    margin: 10px 0;
}