:root {
    --primary: #1a3a5f;
    --secondary: #2c5c8a;
    --accent: #e63946;
    --light: #e8f5ff;
    --dark: #212529;
    --success: #2a9d8f;
    --warning: #e9c46a;
    --info: #4cc9f0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    font-size: 14px;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
ul{
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}
.footer p {
    margin-top: 5px;
    margin-bottom: 5px;
}
.bg-light {
    background-color: #e2ebf3 !important;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar a {
    font-size: 12px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--warning);
}

.social-icons a {
    margin-left: 12px;
    font-size: 1rem;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0261d1;
}

/* Dropdown icon styles */
.navbar-nav .dropdown-toggle::after {
    content: "\f078";
    /* FontAwesome chevron down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 4px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown hover styles */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0px 0;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: white;
}

/* Mobile dropdown icon adjustment */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-toggle::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 90vh;
    position: relative;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 50%);
    background: rgba(230, 229, 248, 0.6);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.carousel-caption h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    color: #1a3a5f;
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    color: #333;
    line-height: 1.6;
}

.carousel-caption .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    background: #1a3a5f;
    border: none;
}

.carousel-caption .btn:hover {
    background: #2c5c8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    backdrop-filter: blur(5px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .carousel-caption {
        max-width: 600px;
        padding: 20px 15px;
    }

    .carousel-caption h2 {
        font-size: 22px;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption {
        max-width: 500px;
        padding: 15px 10px;
    }

    .carousel-caption h2 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption {
        max-width: 90%;
        padding: 10px 8px;
    }

    .carousel-caption h2 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Portfolio Section Styles */
.portfolio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.9) 0%, rgba(44, 92, 138, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.portfolio-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.portfolio-link {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: var(--accent);
    transform: scale(1.1);
}

.portfolio-info {
    padding: 25px 20px;
    text-align: center;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-info .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .portfolio-img {
        height: 220px;
    }

    .portfolio-info {
        padding: 20px 15px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-img {
        height: 200px;
    }

    .portfolio-content h3 {
        font-size: 1.2rem;
    }

    .portfolio-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .portfolio-img {
        height: 180px;
    }

    .portfolio-info {
        padding: 15px 12px;
    }
}

/* Team Member Styles */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Testimonial Styles */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 58, 95, 0.3), transparent);
}

.section-title h2 {
    color: #1a3a5f;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a3a5f, #2c5c8a);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.1);
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid #1a3a5f;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .client-img img {
    transform: scale(1.1);
}

.client-details {
    flex-grow: 1;
}

.client-details h5 {
    color: #1a3a5f;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-details p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .testimonial-card {
        padding: 30px 25px 25px;
    }

    .client-info {
        gap: 12px;
    }

    .client-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 25px 20px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 12px;
    }

    .quote-icon {
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 20px 15px 15px;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .client-details {
        width: 100%;
    }
}

/* Events Section Styles */
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    z-index: 2;
}

.date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.9) 0%, rgba(44, 92, 138, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.event-card:hover .event-content {
    transform: translateY(0);
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.event-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.event-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.event-info {
    padding: 20px 15px;
}

.event-category {
    display: inline-block;
    background: rgba(26, 58, 95, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.event-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
}

.event-meta i {
    color: var(--accent);
    width: 16px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .event-img {
        height: 200px;
    }

    .event-info {
        padding: 15px 12px;
    }

    .event-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .event-img {
        height: 180px;
    }

    .event-content h3 {
        font-size: 1.1rem;
    }

    .event-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .col-md-6 {
        margin-bottom: 20px;
    }

    .event-img {
        height: 200px;
    }
}

/* Premium Button Style 1 - Gradient with Animation */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(26, 58, 95, 0.3);
}

.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 58, 95, 0.4);
    color: white;
}

.btn-premium:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(26, 58, 95, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.btn-premium:hover .btn-shine {
    left: 100%;
}

/********* Client Carousel Styles *********/
.section-padding {
    padding: 5rem 0;
}

.section-title h2 {
    color: #1a3a5f;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a3a5f, #2c5c8a);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.client-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 40px;
    position: relative;
}

.client-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.client-logo {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    color: #1a3a5f;
}

.carousel-nav:hover:not(:disabled) {
    background: #1a3a5f;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .client-logo {
        flex: 0 0 160px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 140px;
        height: 80px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
    }

    .client-carousel-wrapper {
        padding: 10px 35px;
    }
}

@media (max-width: 576px) {
    .client-carousel-wrapper {
        padding: 10px 30px;
    }

    .client-logo {
        flex: 0 0 120px;
        height: 70px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
    }
}

/* Scroll to Top Button Styles */
#scroll_top {
    display: inline-block;
    background-color: #F6552C;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#scroll_top::after {
    content: "\f077";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-size: 14px;
    line-height: 42px;
    color: #fff;
}


#scroll_top:hover {
    cursor: pointer;
    background-color: #333;
}

#scroll_top:active {
    background-color: #555;
}

#scroll_top.show {
    opacity: 1;
    visibility: visible;
}

/* About Us Page Styles */
.section-padding {
    padding: 80px 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    position: relative;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 40px;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--accent);
    font-size: 20px;
}

.structure-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.structure-card:hover {
    transform: translateY(-5px);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.logistic-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
    transition: transform 0.3s ease;
}

.logistic-item:hover {
    transform: translateY(-5px);
}

.logistic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/*********** Profile of Head Styles ***********/
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 30px;
    color: white;
    text-align: center;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-body {
    padding: 40px 30px;
}

.profile-contact {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.history-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 25px;
    background: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.career-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateX(10px);
}

.career-period {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.career-period i {
    margin-right: 10px;
    color: var(--accent);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.expertise-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 35px;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent);
    font-size: 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icons a i {
    position: relative;
    z-index: 2;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 58, 95, 0.2);
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover i {
    color: white;
    transform: scale(1.1);
}

.bg-light-accent {
    background-color: rgba(212, 175, 55, 0.05);
}

@media screen and (max-width: 768px) {
    .history-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }

    .left {
        text-align: left;
    }
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    background: var(--light);
    padding: 8px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.achievement-badge i {
    color: var(--accent);
    margin-right: 8px;
}

.quote-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.quote-author {
    font-weight: 600;
    font-size: 1.1rem;
}

/*********** Team Members Styles ***********/
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Card Styles */
/* Team Card Styles */
.team-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    height: 180px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.board-member .card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.team-member .card-header {
    background: linear-gradient(135deg, var(--accent), #e6c158);
}

.finance-team .card-header {
    background: linear-gradient(135deg, var(--success), #34ce57);
}

.audit-team .card-header {
    background: linear-gradient(135deg, var(--info), #39c0d3);
}

.tax-team .card-header {
    background: linear-gradient(135deg, var(--warning), #ffce3a);
}

.consulting-team .card-header {
    background: linear-gradient(135deg, var(--danger), #e4606d);
}

/* Subtle pattern background */
.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

/* ===== MEMBER IMAGE ===== */
.member-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid white;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: white;
    z-index: 10;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-body {
    padding: 90px 25px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.member-position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-department {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #666;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: rgba(26, 58, 95, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--dark);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.department-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 2px solid var(--light);
    border-radius: 30px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.bg-light-accent {
    background-color: rgba(212, 175, 55, 0.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .card-body {
        padding: 70px 20px 20px;
    }

    .member-img {
        width: 100px;
        height: 100px;
        bottom: -50px;
    }

    .member-name {
        font-size: 1.2rem;
    }
}

/*********Clients Styles ******/
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Table Styles */
.premium-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.table-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.table-header h3 {
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.premium-table thead {
    background: rgba(26, 58, 95, 0.03);
}

.premium-table th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid rgba(26, 58, 95, 0.1);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-table th:first-child {
    border-radius: 15px 0 0 0;
}

.premium-table th:last-child {
    border-radius: 0 15px 0 0;
}

.premium-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-table tbody tr:last-child {
    border-bottom: none;
}

.premium-table tbody tr:hover {
    background: rgba(26, 58, 95, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.premium-table td {
    padding: 25px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

.serial-cell {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    width: 80px;
}

.name-cell {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.industry-cell {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.services-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(26, 58, 95, 0.2);
    transition: all 0.3s ease;
}

.service-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(26, 58, 95, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-table tbody tr {
    animation: fadeInUp 0.5s ease forwards;
}

.premium-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
}

.premium-table tbody tr:nth-child(2) {
    animation-delay: 0.2s;
}

.premium-table tbody tr:nth-child(3) {
    animation-delay: 0.3s;
}

.premium-table tbody tr:nth-child(4) {
    animation-delay: 0.4s;
}

.premium-table tbody tr:nth-child(5) {
    animation-delay: 0.5s;
}

.premium-table tbody tr:nth-child(6) {
    animation-delay: 0.6s;
}

.premium-table tbody tr:nth-child(7) {
    animation-delay: 0.7s;
}

.premium-table tbody tr:nth-child(8) {
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-table-container {
        overflow-x: auto;
    }

    .premium-table {
        min-width: 800px;
    }

    .table-header {
        padding: 20px;
    }

    .premium-table th,
    .premium-table td {
        padding: 20px 15px;
    }
}

/*******Contact Us Styles*******/
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}


.card-phone .contact-icon {
    background: linear-gradient(135deg, var(--success), #34ce57);
}

.card-email .contact-icon {
    background: linear-gradient(135deg, var(--info), #39c0d3);
}

.card-location .contact-icon {
    background: linear-gradient(135deg, var(--warning), #ffce3a);
}

.card-hours .contact-icon {
    background: linear-gradient(135deg, var(--purple), #8c68cd);
}

.contact-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.form-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.form-header h3 {
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.form-body {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 95, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

/* Office Locations */
.office-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.office-header {
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.office-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.office-1 .office-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.office-2 .office-header {
    background: linear-gradient(135deg, var(--info), #39c0d3);
}

.office-3 .office-header {
    background: linear-gradient(135deg, var(--purple), #8c68cd);
}

.office-header h4 {
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.office-body {
    padding: 25px;
}

.office-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.office-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
}

.office-1 .office-icon {
    background: var(--primary);
}

.office-2 .office-icon {
    background: var(--info);
}

.office-3 .office-icon {
    background: var(--purple);
}

.office-details h5 {
    margin: 0 0 5px;
    color: var(--primary);
    font-weight: 600;
}

.office-details p {
    margin: 0;
    color: #666;
}


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card,
.office-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card:nth-child(4) {
    animation-delay: 0.4s;
}

.office-card:nth-child(1) {
    animation-delay: 0.2s;
}

.office-card:nth-child(2) {
    animation-delay: 0.3s;
}

.office-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {

    .contact-card,
    .office-card {
        margin-bottom: 25px;
    }

    .form-body {
        padding: 30px 20px;
    }

    .form-header {
        padding: 20px;
    }

    .faq-section {
        padding: 30px 20px;
    }
}

/******* Login Page Styles ****/

.login-card {
    margin: 25px auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    max-width: 500px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login-form-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.input-with-icon .form-control {
    padding-left: 50px;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
    color: #666;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.google:hover {
    border-color: #db4437;
    color: #db4437;
}

.social-btn.facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.social-btn.linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.social-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.register-link {
    text-align: center;
    color: #666;
}

.register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: var(--secondary);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation: float 18s infinite ease-in-out;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20%;
    animation: float 12s infinite ease-in-out;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .login-card {
        flex-direction: column;
        min-height: auto;
    }

    .login-left,
    .login-right {
        padding: 40px 30px;
    }

    .login-left {
        text-align: center;
    }
}

@media (max-width: 576px) {

    .login-left,
    .login-right {
        padding: 30px 20px;
    }

    .social-login {
        flex-direction: column;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .welcome-text {
        font-size: 1.8rem;
    }

    .form-title {
        font-size: 1.6rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary);
    color: white;
    padding-top: 70px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: white;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #111113;
    border-radius: 50%;
    color: #eaf4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #1f2124;
    position: relative;
    overflow: hidden;
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #161618;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #16181a;
    position: relative;
    overflow: hidden;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #17191a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #181a1b;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a5f, #2c5c8a);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icons a i {
    position: relative;
    z-index: 2;
    font-size: 10px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.social-icons a:hover {
    border-color: #15181b;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 58, 95, 0.15);
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover i {
    color: white;
    transform: scale(1.1);
}

/* Individual Platform Colors on Hover */
.social-icons a:nth-child(1):hover::before {
    /* Facebook */
    background: linear-gradient(135deg, #1877f2, #0d5fbb);
}

.social-icons a:nth-child(2):hover::before {
    /* Twitter */
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-icons a:nth-child(3):hover::before {
    /* LinkedIn */
    background: linear-gradient(135deg, #0077b5, #005582);
}

.social-icons a:nth-child(4):hover::before {
    /* Instagram */
    background: linear-gradient(135deg, #e4405f, #c13584);
}

/* Active State */
.social-icons a:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 58, 95, 0.2);
}

/* Focus State for Accessibility */
.social-icons a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons a i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .social-icons {
        gap: 10px;
        justify-content: center;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .social-icons a i {
        font-size: 15px;
    }
}

/* Loading State (Optional) */
.social-icons a.loading {
    pointer-events: none;
    opacity: 0.7;
}

.social-icons a.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}
