* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(247 246 244);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgb(247 246 244);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 90px;
    width: auto;
    padding: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Content Container */
.page-content {
    display: none;
    margin-top: 80px;
}

.page-content.active {
    display: block;
}

/* Hero Section */
.hero {
    /* min-height: 90vh; */
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 4rem 2rem; */
    padding: 12rem 3.5rem;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    /* border-radius: 50px; */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #2563eb;
    border-radius: 5px;
    border: 2px solid white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border-radius: 5px;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
    text-align: end;
}

.hero-image img {
    max-width: 100%;
    margin-top: 31px;
    max-height: 600px;
}

.hero-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Features Section */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card a {
    text-decoration: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    /* text-align: justify; */
}

/* About Page Styles */

.about-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;

}

/* .about-image {
            height: 500px;
             background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%); 
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        } */
.about-image {
    /* height: 500px; */
    /* background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%); */
    /* border-radius: 20px; */
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    color: #181515;
    position: relative;
    overflow: hidden;
}

.stats-section {
    padding: 4rem 2rem;
    /* background: #f8f9fa; */
}

.stats-grid {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Services Page */
.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-item {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* display: grid; */
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.service-features {
    list-style: none;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 0.5rem;
}

.service-features li::marker {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Career Page */
.career-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem 0rem 2rem;
    text-align: center;
}

.career-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.career-intro p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 860px;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.career-form-container {
    max-width: 860px;
    margin: 65px auto 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: block;
    padding: 0.9rem;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.file-upload-label:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.file-upload label {
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Contact Page */
.contact-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

/*UPDATE BY SUBHAM*/
.contact-icon {
    width: 60px;
    height: 60px;
    /*background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-icon img {
    width: 26px;
    height: 27px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Success Message */
.success-message {
    display: none;
    padding: 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content,
    .about-content,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1,
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-number {
        margin: 0 auto;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}



.logo-link:hover .logo-text {
    color: #0078ff;
}

/* ===== Right Language Section ===== */
.right-lang {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

/* ===== Language Container ===== */
.language {
    position: relative;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

/* ===== Language Button ===== */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #f0f4ff;
    color: #0078ff;
}

/* ===== Dropdown Container ===== */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 100px;
    z-index: 9999;
    overflow: hidden;
    animation: dropdownFade 0.2s ease;
}

/* Dropdown Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Dropdown List ===== */
.lang-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-dropdown ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.lang-dropdown ul li a:hover {
    background: #f5f8ff;
    color: #0078ff;
}

/* ===== Show Dropdown on Hover ===== */
.language:hover .lang-dropdown {
    display: block;
}

/* ===== Icon Styles (optional if using Font Awesome or Flaticon) ===== */
.lang-btn .icon {
    font-size: 16px;
    color: #0078ff;
}

.lang-btn .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.language:hover .arrow {
    transform: rotate(180deg);
}

/* About Section Container */
.about-section {
    padding: 80px 20px;
    max-width: 1372px;
    margin: 0 auto;
}

/* Two-column Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

/* Image Styling */
.about-image img {
    width: 100%;
    height: auto;
    /* border-radius: 27px !important; */
    display: block;
    border: 1px solid #c5c5c5;
}

/* Text Column */
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Button */
.about-text .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.about-text .btn:hover {
    background-color: #0056b3;
}

.services-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 4px 20px;
    text-align: center;
}

.services-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.services-container p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    max-height: 229px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Service Benefits Overlay */
.service-benefits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.95);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    overflow-y: auto;
}

.service-card:hover .service-benefits {
    opacity: 1;
}

.service-benefits h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-benefits ul {
    text-align: left;
    padding-left: 1.2rem;
}

.service-benefits li {
    margin-bottom: 0.5rem;
}

/* Card Content */
.service-card h2 {
    font-size: 22px;
    margin: 1rem 1rem 0.5rem;
}

.service-card p {
    font-size: 1rem;
    padding: 0 1rem 1.5rem;
    color: #555;
    text-align: justify;
    margin: 0;
}


/* Button */
.services-btn {
    margin-top: 3rem;
    text-align: center;
    padding-bottom: 50px;
}

.services-btn .btn {
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.services-btn .btn:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .services-container p {
        font-size: 1rem;
    }

    .service-card h2 {
        font-size: 1.25rem;
    }
}


/* contact email */

/* .social-links {
    list-style: none;
    padding: 0;
    margin: 0;   
    gap: 15px;
    align-items: center;
} */



.right-lang {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.language {
    position: relative;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}


/* Button style */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #f0f4ff;
    color: #0078ff;
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

/* Show dropdown on hover over container */
.language:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Dropdown list */
.lang-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-dropdown ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.lang-dropdown ul li a:hover {
    background: #f5f8ff;
    color: #0078ff;
}

/* Arrow rotation */
.language:hover .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.nav-menu li a i,
.services-menu li a i,
.contact-footer li i,
.social-links li i {
    margin-right: 10px;
}



.testimonials-slider {
    text-align: center;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-slider h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333;
}

.testimonials-slider p {
    color: #666;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 102%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/*UPDATE BY SUBHAM*/
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
}

.testimonial-author h3 {
    margin: 0;
    color: #333;
    font-size: 1.1em;
}

.testimonial-author span {
    font-size: 0.9em;
    color: #777;
}

/* Navigation buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00aaff;
    color: #fff;
    border: none;
    padding: 12px;
    /* border-radius: 50%; */
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.testimonials-slider {
    max-width: 1359px;
    margin: 0 auto;
    padding: 79px 20px;
}


/* ss */

/* INDUSTRIES SECTION */
.industries-section {
    position: relative;
    background-color: #f7f9fb;
    padding: 80px 20px;
    overflow: hidden;
}

.industries-section .auto-container {
    max-width: 1330px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industries-section .pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.sec-title {
    margin-bottom: 30px;
}

.sec-title .top-title {
    display: inline-block;
    font-size: 14px;
    color: #00aaff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sec-title h2 {
    font-size: 28px;
    font-weight: 700;

    margin-top: 5px;
}

/* Tabs Layout */
.tabs-box .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.btn-column {
    flex: 1 1 30%;
    background-color: #0b1f3a;
    color: #fff;
    padding: 40px 25px;
    border-radius: 10px;
}

.tab-btn-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active-btn {
    background-color: #00aaff;
}

.tab-btn h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.tab-btn .icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Content Column */
.content-column {
    flex: 0 1 60;
    padding: 0 20px;
}

.tabs-content {
    position: relative;
}

.tab {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab.active-tab {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inner-box {
    background: #fff;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.image-box img {
    width: 100%;
    max-height: 319PX;
    display: block;
}

.content-box {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-box .text h2 {
    font-size: 20px;
    margin: 0;
    color: #222;
}

.content-box .text span {
    display: block;
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}

.content-box .line {
    flex: 1;
    height: 2px;
    background-color: #eee;
    margin: 15px 0;
    width: 100%;
}

.content-box .link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00aaff;
    color: #fff;
    width: 26px;
    height: 40px;
    /* border-radius: 50%; */
    text-decoration: none;
    transition: background 0.3s ease;
}

.content-box .link a:hover {
    background-color: #0088cc;
}

/* Responsive */
@media (max-width: 991px) {
    .tabs-box .row {
        flex-direction: column;
    }

    .btn-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .content-column {
        width: 100%;
        padding: 0;
    }
}

.bg-color-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%)
}

/* Our Team */
.profile-card {
    position: relative;
    font-family: sans-serif;
    width: 220px;
    height: 220px;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 25px;
}

.profile-card:hover {
    border-radius: 10px;
    height: 303px;
}

.profile-card .img {
    position: relative;
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 99;
}

.profile-card:hover .img {
    transform: translateY(-60px);
}

.img img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card:hover img {
    border-radius: 10px;
}

.caption {
    text-align: center;
    transform: translateY(-130px);
    opacity: 0;
    transition: .6s;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
    font-family: sans-serif;
}

.caption p {
    font-size: 15px;
    color: #0c52a1;
    font-family: sans-serif;
    margin: 2px 0 9px 0;
}

.caption .social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    /* color: #0c52a1; */
}

.teams {
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); */
}

.our-team .section-header {
    margin-bottom: 0px;
    margin-top: 10px;
}

/* -------------------------------------- */
/* RESPONSIVE: MOBILE & TABLET OPTIMIZED  */
/* -------------------------------------- */

/* Tablet View (≤ 768px) */
@media (max-width: 768px) {
    .teams {
        height: auto;
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .profile-card {
        width: 180px;
        height: 180px;
        margin: 15px;
    }

    .profile-card:hover {
        height: 261px;
    }

    .caption {
        transform: translateY(-131px);
    }

    .caption h3 {
        font-size: 18px;
    }

    .caption p {
        font-size: 10px;
    }
}

/* Mobile View (≤ 480px) */
@media (max-width: 480px) {
    .teams {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .profile-card {
        width: 150px;
        height: 150px;
        padding: 20px;
        margin: 10px 0;
    }

    .profile-card:hover {
        height: 200px;
        border-radius: 15px;
    }

    .img img {
        width: 100%;
    }

    .caption {
        transform: translateY(-50px);
    }

    .caption h3 {
        font-size: 16px;
    }

    .caption p {
        font-size: 10px;
    }

    .caption .social-links a {
        font-size: 18px;
    }
}

/* Ultra-small devices (≤ 360px) */
@media (max-width: 360px) {
    .profile-card {
        width: 130px;
        height: 130px;
    }

    .profile-card:hover {
        height: 180px;
    }

    .caption h3 {
        font-size: 14px;
    }

    .caption p {
        font-size: 10px;
    }
}



.title {
    text-align: center;
    text-transform: capitalize;
    color: #0c52a1;
    margin: 10px 0;
    position: relative;
}

.title::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: linear-gradient(to left, transparent 5%, #0c52a1);
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.member {
    flex: 1 1 250px;
    margin: 20px;
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    max-width: 350px;
    transition: all 0.3s;
    border: 1px solid #e9e9e9;
    background: white;
    border-radius: 24px;
}

.member:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
}

.member img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #0c52a1;
    border-radius: 50%;
    margin: 0 auto;
}

.member h2 {
    text-transform: uppercase;
    font-size: 24px;
    color: #0c52a1;
    margin: 12px 0 5px 0;
}

.member h4 {
    margin: 5px 0 5px 0;
}

.member p {
    font-size: 15px;
    color: #838383;
    line-height: 1.6;
    margin: 10px;
}

section.our-team {
    background: #f8f9fa;
    padding: 3rem 0rem;
}

section.job-list {
    background: #f3f3f3;
}

.job-card {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.job-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 14px 20px;
}

.job-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.vacancy-text {
    font-size: 19px;
    color: #fff;
    font-weight: 500;
    text-align: end;
    padding-right: 32px;
}

.accordion-body {
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #eee;
}

.applyBtn {
    padding: 8px 20px;
    border-radius: 6px;
}

.accordion-button::after {
    margin: -11px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.vacency {
    display: flex;
}

@media (max-width: 768px) {
    .form-container {
        margin: 0;
    }

    .contact-info {
        padding: 0;
    }
}

/* responsive css */
@media only screen and (min-width: 320px) and (max-width: 500px) {
    .nav-container {
        max-width: none;
        margin: 0 auto;
        padding: 0;
        display: flex;
        justify-content: normal;
        align-items: center;
    }

    .logo {
        width: 209px;
    }

    .logo img {
        padding: 16px;
    }

    .section-header h2 {
        font-size: 37px;
    }

    .features-grid {
        display: inherit;
    }

    .feature-card {
        margin-bottom: 31px;
    }

    .about-grid {
        display: inherit;
    }

    .services-container {
        display: inline;
    }

    .services-grid {
        padding: 12px;
        display: block;
    }

    .service-card {
        margin-bottom: 37px;
    }

    .features {
        padding: 1rem 1rem;
    }

    .services-btn {
        margin-top: 0rem;
        padding-bottom: 11px;
    }

    .about-section {
        padding: 41px 20px;
    }

    .social-links {
        display: block;
        padding-left: 2rem;
    }

    .sec-title h2 {
        font-size: 24px;
    }

    .about-content {
        padding: 1rem;
        display: inherit;
    }

    .about-image {
        min-width: 288px !important;
    }

    .member {
        padding: 20px 10px;
        max-width: 284px;
    }

    .member .social-links {
        padding: 5px 15px;
        gap: 5px;
    }

    .section-header {
        margin: 0 auto 2rem;
    }

    section.our-team {
        padding: 1px 0rem 0rem 0rem;
    }

    .stats-section {
        padding: 2rem 2rem;
    }

    .team-row {
        padding: 18px 0;
    }

    .service-item {
        padding: 2rem;
    }

    .service-content h3 {
        font-size: 20PX;
    }

    .vacency {
        display: block;
    }

    .career-intro h2 {
        font-size: 25px;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1rem;
        display: block;
        text-align: -webkit-center;
    }

    .contact-info {
        padding: 18px;
        display: inherit;
    }

    .form-container {
        margin-top: 48px;
        padding: 15px;
    }

    .nav-links {
        top: 90px;
    }

    .mobile-menu {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .language {
        display: flex;
    }

    .services-list {
        display: inline;
    }

    .about-hero h1 {
        font-size: 33px;
    }

    .vacancy-text {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        text-align: end;
        padding-right: 32px;
        display: flex;
        line-height: 31px;
    }

    .service-features li {
        padding: 0.5rem 0;
        color: #555;
        position: relative;
        padding-left: 2rem;
        text-align: left;
    }

    .service-card p {
        font-size: 1rem;
        padding: 0 1rem 0;
    }

    .right-lang {
        position: absolute;
        right: 37px;
    }

    .features {
        padding: 37px 3rem 2rem !important;
    }

    .file>label {
        padding-left: 33px !important;
        padding-right: 16px !important;
    }
}

.about-image {
    min-width: 300px;
    text-align: center;
    position: relative;
}

.about-caption {
    background: #0000008c;
    margin-top: -38px;
    z-index: 999;
    position: relative;
    color: white;
    padding: 5px;
}

/* contact drag drop */
/* .upload-box-wrapper {
    margin-bottom: 12px;
}

.upload-box {
    border: 2px dashed #bbb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.upload-box:hover {
    border-color: #888;
}

.upload-box.dragover {
    border-color: #28a745;
    background: #f3fff6;
}

.upload-box .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
}

.upload-text .icon {
    font-size: 28px;
    display: block;
}

.upload-text .message {
    font-size: 14px;
    color: #666;
} */

.drop-area {
    border: 2px dashed #999;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    margin-top: 10px;
}

.drop-area.dragover {
    background: #e3f2fd;
    border-color: #2196f3;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-item img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: cover;
}

.file-item span {
    flex-grow: 1;
}

.cancel-btn {
    background: red;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
}

label.mylabel {
    font-weight: 500;
}

/*------Sachin-----*/

.features {
    padding: 37px 6rem 2rem;
    background: #f8f9fa;
}

.simple-label {
    font-size: 14px;
    font-weight: 700;
    /* strong bold */
    color: #000;
    /* plain black */
    margin-bottom: 8px;
    display: inline-block;
}

.highlight-flash {
    background-color: #fffae6;
    transition: background-color 0.5s ease;
}

/*------Social link css-----*/



/* update 27-11-2025 */
button.file-browse-btn {
    width: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

button.file-browse-btn-contact {
    width: 91%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    border-radius: 7px;
    margin-top: 6px;
}

button.btn.file-browse-btn:hover {
    background: linear-gradient(297deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
}

button.btn.file-browse-btn-contact:hover {
    background: linear-gradient(297deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
}

label.simple-label.label-fil {
    font-size: 18px;
    margin-bottom: 2px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
}

.select2-container .select2-selection--single {
    height: 34px !important;
}

.select2-container {
    margin-bottom: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px !important;
    right: 7px !important;
}

.col-md-2.test-btnnn {
    margin-top: 0;
    margin-bottom: 10px;
}

/* update end  */









/*------Social link css-----*/

@media (max-width: 480px) {}

/* Center the container */
/* .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #eee8f8;
} */

.variants {
    display: flex;
    justify-content: center;
    align-items: center;
}

.variants>div {
    margin-right: 5px;
}

.variants>div:last-of-type {
    margin-right: 0;
}

.file {
    position: relative;
    /* display: flex; */
    align-items: center;
}

.file>input[type='file'] {
    display: none
}

.file>label {
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    outline: 0;
    user-select: none;
    border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186) !important;
    border-style: solid;
    border-radius: 4px;
    border-width: 1px;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 29%) !important;
    padding-top: 16px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.file>label:hover {
    border-color: hsl(0, 0%, 21%);
}

.file>label:active {
    background-color: hsl(0, 0%, 96%);
}

.file>label>i {
    padding-right: 5px;
}

.file--upload>label {
    color: hsl(204, 86%, 53%);
    border-color: hsl(204, 86%, 53%);
}

.file--upload>label:hover {
    border-color: hsl(204, 86%, 53%);
    background-color: hsl(204, 86%, 96%);
}

.file--upload>label:active {
    background-color: hsl(204, 86%, 91%);
}

.file--uploading>label {
    color: hsl(48, 100%, 67%);
    border-color: hsl(48, 100%, 67%);
}

.file--uploading>label>i {
    animation: pulse 5s infinite;
}

.file--uploading>label:hover {
    border-color: hsl(48, 100%, 67%);
    background-color: hsl(48, 100%, 96%);
}

.file--uploading>label:active {
    background-color: hsl(48, 100%, 91%);
}

.file--success>label {
    color: hsl(141, 71%, 48%);
    border-color: hsl(141, 71%, 48%);
}

.file--success>label:hover {
    border-color: hsl(141, 71%, 48%);
    background-color: hsl(141, 71%, 96%);
}

.file--success>label:active {
    background-color: hsl(141, 71%, 91%);
}

.file--danger>label {
    color: hsl(348, 100%, 61%);
    border-color: hsl(348, 100%, 61%);
}

.file--danger>label:hover {
    border-color: hsl(348, 100%, 61%);
    background-color: hsl(348, 100%, 96%);
}

.file--danger>label:active {
    background-color: hsl(348, 100%, 91%);
}

.file--disabled {
    cursor: not-allowed;
}

.file--disabled>label {
    border-color: #e6e7ef;
    color: #e6e7ef;
    pointer-events: none;
}



.file.file--upload {
    text-align: center;
}



button.uploadbtn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}






@keyframes pulse {
    0% {
        color: hsl(48, 100%, 67%);
    }

    50% {
        color: hsl(48, 100%, 38%);
    }

    100% {
        color: hsl(48, 100%, 67%);
    }
}


/*---social linkend link ---*/




.link-btn {
    width: 45px;
    height: 45px;
    background: #0A66C2;
    border-radius: 43%;
    align-items: center;
    color: #fff;
    font-size: 38px !important;
}

.tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
}




/*  Nav drop down lsit */


.nav-links li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    color: #333;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown>a {
    cursor: pointer;
    /* display: flex; */
    align-items: center;
}

.dropdown i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown.open .dropdown-menu {
    display: block;
}

#aboutsection,
#ourmission,
#visionsection,
#ourteamsection,
#valuessection,
#statesection {
    scroll-margin-top: 120px;
}

html {
    scroll-behavior: smooth;
}

#executive-search-leadership-hiring,
#permanent-recruitment-solutions,
#contract-temporary-staffing,
#hr-consulting-advisory,
#talent-assessment-development,
#recruitment-process-outsourcing-rpo- {
    scroll-margin-top: 120px;
}


#carrersection {
    scroll-margin-top: 200px;
    ;
}


/* Dropdown Container */
.nav-links li.dropdown {
    position: relative;
}

/* FIX: Remove the gap that causes dropdown to hide */
.nav-links li.dropdown .dropdown-menu {
    margin-top: 5px;
    /* IMPORTANT: remove the gap */
    display: none;
    /* hide by default */
}

/* Show dropdown when hovering parent OR the dropdown area */
.nav-links li.dropdown:hover .dropdown-menu,
.nav-links li.dropdown .dropdown-menu:hover {
    display: block;
}

/* Dropdown Menu Styling */
.nav-links li .dropdown-menu {
    position: absolute;
    top: 79%;
    left: -6px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 180px;
    z-index: 999;
    list-style: none;
    /* FIX: remove bullets */
    padding-left: 0;
}

/* Dropdown Items */
.nav-links li .dropdown-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

/* Hover Effect */
.nav-links li .dropdown-menu li a:hover {
    background: #f4f4f4;
    color: #000;
}

.nav-links li.dropdown>a .fa-angle-down {
    margin-left: 6px;
    /* space between text + icon */
    font-size: 12px;
    /* (optional) smaller icon like screenshot */
    vertical-align: middle;
    /* aligns icon nicely */
}


/* Parent wrapper: text + icon */
.nav-links li.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links li.dropdown .dropdown-toggle a {
    flex: 1;
    display: block;
    padding: 10px 12px;
}

/* separate icon */
.nav-links li.dropdown .dropdown-icon {
    width: 26px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    /* padding: 10px 0; */
}

/* Dropdown hidden by default */
.nav-links li .dropdown-menu {
    display: none;
    list-style: none;
}

/* When parent gets .open */
.nav-links li.dropdown.open .dropdown-menu {
    display: block;
}



/* Hide dropdown menu by default on mobile */
@media (max-width: 767px) {
    .nav-links li.dropdown .dropdown-menu {
        display: none;
    }

    /* Show dropdown only if parent has 'open' */
    .nav-links li.dropdown.open .dropdown-menu {
        display: none;
    }

    /* Optional: mobile-friendly styling */
    .nav-links li.dropdown .dropdown-menu li a {
        padding: 10px 15px;
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

}


.d-none {
    display: none !important;
}

/* All sides */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

/* 4px if root font-size 16px */
.p-2 {
    padding: 0.5rem !important;
}

/* 8px */
.p-3 {
    padding: 1rem !important;
}

/* 16px */
.p-4 {
    padding: 1.5rem !important;
}

/* 24px */
.p-5 {
    padding: 3rem !important;
}

/* 48px */

/* Padding top */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

/* Padding bottom */
.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

/* Padding left */
.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

/* Padding right */
.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

/* Padding X-axis (left + right) */
.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

/* Padding Y-axis (top + bottom) */
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}


/* All sides */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

/* 4px */
.m-2 {
    margin: 0.5rem !important;
}

/* 8px */
.m-3 {
    margin: 1rem !important;
}

/* 16px */
.m-4 {
    margin: 1.5rem !important;
}

/* 24px */
.m-5 {
    margin: 3rem !important;
}

/* 48px */

/* Margin top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Margin bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Margin left */
.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

/* Margin right */
.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

/* Margin X-axis (left + right) */
.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

/* Margin Y-axis (top + bottom) */
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}


.member .fa {
    font-size: 30px;
    width: 32px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}

.member .fa:hover {
    opacity: 0.7;
}

.member .fa-facebook {
    background: #3B5998;
    color: white;
}

.member .fa-twitter {
    background: #55ACEE;
    color: white;
}

.member .fa-google {
    background: #dd4b39;
    color: white;
}

.member .fa-linkedin {
    background: #007bb5;
    color: white;
}

.linkedin-logo {
    width: 32px;
    height: 32px;
    display: inline-block;

    background-image: url("https://cdn-icons-png.flaticon.com/128/145/145807.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* border-radius: 50%; */
    vertical-align: middle;
}

.outlook-logo {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("https://images.icon-icons.com/70/PNG/512/outlook_14099.png");
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
}


.phone-logo {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("https://cdn-icons-png.flaticon.com/128/724/724664.png");
    background-size: cover;
    background-repeat: no-repeat;
    /* filter: invert(33%) sepia(94%) saturate(747%) hue-rotate(186deg) brightness(95%) contrast(92%); */
    vertical-align: middle;
}

.social-links a {
    margin-right: 10px;
    display: inline-block;
    text-decoration: none;
}

.social-links a:last-child {
    margin-right: 0;
}

/* Read More Functionality */
.member-description {
    position: relative;
}

.member-description p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    margin-bottom: 5px;
    max-height: 3em;
    /* 2 lines * 1.5em line-height */
}

/* Hide the checkbox */
.read-more-toggle {
    display: none;
}

/* Style the label as a link */
.read-more-label {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    user-select: none;
    -webkit-line-clamp: 2;
}

.read-more-label:hover {
    text-decoration: underline;
}

/* Default state - show "Read More" */
.read-more-label::before {
    content: "Read More";
}

/* When checkbox is checked */
.read-more-toggle:checked~p {
    -webkit-line-clamp: unset;
    max-height: none;
    display: block;
}

.read-more-toggle:checked~.read-more-label::before {
    content: "Read Less";
}

/* Hide label when text is short - use a small script to add this class */
.member-description.short-text .read-more-label {
    display: none;
}









.tooltip-btn {
    position: relative;
    cursor: pointer;
}

/* tooltip box */
.tooltip-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    /* top */
    left: 50%;
    transform: translateX(-50%);

    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* tooltip arrow */
.tooltip-btn::before {
    content: "";
    position: absolute;
    bottom: 89%;
    left: 50%;
    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;

    opacity: 0;
    transition: opacity 0.2s ease;
}

/* show on hover */
.tooltip-btn:hover::after,
.tooltip-btn:hover::before {
    opacity: 1;
    filter: none;
}

/* .tooltip-btn:hover {
  filter: none;
}
 */


/* @media (max-width: 767px) {
    .nav-links li.dropdown .dropdown-menu {
        display: none !important;
    }
    .nav-links li.dropdown.open .dropdown-menu {
        display: block !important;
    }
} */




/*  Nav drop down lsit end */


/*------Sachin-----*/