:root {
    --primary-dark-blue: #3b4b9b;
    --primary-light-blue: #8e9cff;
    --primary-accent: #6c80ff;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-dark: #020617;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Glassmorphism Navbar */
.site-header .navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
}

.site-header .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 75px;
    transition: height 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 65px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--primary-dark-blue);
}

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span { display: block; width: 25px; height: 3px; margin: 5px 0; background-color: var(--white); border-radius: 3px; transition: all 0.3s ease-in-out; }
.navbar.scrolled .navbar-toggler span { background-color: var(--text-dark); }


/* Hero Section & Particles */
#hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-accent));
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 20px 0 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-light-blue), var(--primary-accent));
    border: none;
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(60, 75, 155, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary-gradient:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(60, 75, 155, 0.4);
    color: white;
}

/* Services Section */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(142, 156, 255, 0.1), transparent 40%);
    transition: opacity 0.5s ease;
    opacity: 0;
    transform-origin: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-accent);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.learn-more i { transition: transform 0.3s ease; }
.learn-more:hover { color: var(--primary-accent); }
.learn-more:hover i { transform: translateX(5px); }

/* About Section */
#about .lead { color: var(--text-light); }
#about ul li { font-size: 1.1rem; }
.about-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 10px solid rgba(255,255,255,0.3);
    transform: scale(1.1);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.about-image-wrapper:hover::after {
    transform: scale(1);
    opacity: 1;
}

/* Modern Contact Form */
.form-control {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 0.25rem rgba(108, 128, 255, 0.25);
    background-color: var(--white);
}
.form-floating > .form-control:focus ~ label {
    color: var(--primary-accent);
}

/* Footer */
.site-footer {
    background-color: #161c2d;
    color: #a0aec0;
    font-size: 0.95rem;
}
.footer-logo { height: 40px; }
.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}
.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
}
.footer-links li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-accent);
    font-size: 0.8rem;
    transition: left 0.3s ease;
}
.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-links li:hover::before {
    left: 4px;
}
.footer-links a:hover {
    color: var(--white);
}
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-contact-info i {
    color: var(--primary-accent);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}
.footer-contact-info a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-info a:hover {
    color: var(--white);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: #161c2d;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.social-icons a:hover {
    background-color: var(--primary-accent);
    color: var(--white);
    transform: translateY(-3px);
}
.newsletter-form { position: relative; }
.newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.newsletter-form input::placeholder { color: #a0aec0; }
.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-light-blue), var(--primary-accent));
    color: var(--white);
    transition: background 0.3s ease;
}
.copyright-text {
    font-size: 0.9rem;
    color: #718096;
}
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--white);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 10px !important;
    animation: fadeInSlideUp 0.3s ease-out forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-light);
    color: var(--primary-dark-blue);
    padding-left: 1.75rem;
}

.navbar.scrolled .nav-link.dropdown-toggle {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link.dropdown-toggle:hover {
    color: var(--primary-dark-blue);
}

/* Page Header */
#page-header {
    padding: 120px 0 60px;
    background: url('../images/page-header-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(22, 28, 45, 0.7);
}

#page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.page-breadcrumb {
    font-size: 1.1rem;
}

.page-breadcrumb a {
    color: var(--primary-light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--white);
}


/* Solutions Card Grid */
#solutions-grid .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.solution-card .card-header {
    background: linear-gradient(90deg, #8a2be2, #4b0082);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-bottom: none;
    text-align: center;
}

.solution-card .card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.solution-card .card-body {
    padding: 1.5rem;
}

.solution-card .card-body h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card .card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    min-height: 80px;
}

.key-value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.key-value-title i {
    color: #f59e0b;
}

.key-value-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.key-value-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.5rem;
}

.key-value-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #22c55e;
}

.solution-card .card-footer {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    text-align: center;
}

.btn-primary-gradient-alt {
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(75, 0, 130, 0.2);
}

.btn-primary-gradient-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(75, 0, 130, 0.3);
    color: white;
}

#solutions-grid .solution-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

#solutions-grid .row > div:nth-child(1) .solution-card { animation-delay: 0.1s; }
#solutions-grid .row > div:nth-child(2) .solution-card { animation-delay: 0.2s; }
#solutions-grid .row > div:nth-child(3) .solution-card { animation-delay: 0.3s; }
#solutions-grid .row > div:nth-child(4) .solution-card { animation-delay: 0.4s; }
#solutions-grid .row > div:nth-child(5) .solution-card { animation-delay: 0.5s; }
#solutions-grid .row > div:nth-child(6) .solution-card { animation-delay: 0.6s; }

/* Delivered Projects Section */
#delivered-projects {
    overflow: hidden;
}

.project-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-card-img {
    position: relative;
    padding: 1.5rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.project-card-img .project-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-card-img img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.swiper-slide:nth-child(3n+1) .project-card-img { background-color: #ffe4e1; } /* Rosy */
.swiper-slide:nth-child(3n+2) .project-card-img { background-color: #e0f7fa; } /* Cyan */
.swiper-slide:nth-child(3n+3) .project-card-img { background-color: #f3e5f5; } /* Lavender */

.project-card-body {
    padding: 1.5rem;
}

.project-card-body h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    min-height: 60px;
}

.project-card-body .btn-outline-primary {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    font-weight: 500;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
}

.project-card-body .btn-outline-primary:hover {
    background-color: var(--primary-accent);
    color: var(--white);
}

.project-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.delivered-projects-slider .swiper-button-prev,
.delivered-projects-slider .swiper-button-next {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivered-projects-slider .swiper-button-prev:hover,
.delivered-projects-slider .swiper-button-next:hover {
    background-color: var(--primary-accent);
    color: var(--white);
}

.delivered-projects-slider .swiper-button-prev {
    left: -25px;
}
.delivered-projects-slider .swiper-button-next {
    right: -25px;
}

.delivered-projects-slider .swiper-button-prev::after,
.delivered-projects-slider .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.delivered-projects-slider .swiper-button-prev:hover::after,
.delivered-projects-slider .swiper-button-next:hover::after {
    color: var(--white);
}

/* Marketing Details Page */
.key-points-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.key-points-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.key-points-list .icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 1.2rem;
}

.icon-strategic { background: linear-gradient(45deg, #f87171, #ef4444); } /* Red */
.icon-multilingual { background: linear-gradient(45deg, #60a5fa, #2563eb); } /* Blue */
.icon-agile { background: linear-gradient(45deg, #facc15, #ca8a04); } /* Yellow */
.icon-transparent { background: linear-gradient(45deg, #4ade80, #16a34a); } /* Green */

.sub-service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sub-service-card img {
    max-height: 60px;
    margin-bottom: 1.5rem;
}

.sub-service-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.sub-service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

#marketing-details .sub-service-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

#marketing-details .row > div:nth-child(1) .sub-service-card { animation-delay: 0.1s; }
#marketing-details .row > div:nth-child(2) .sub-service-card { animation-delay: 0.15s; }
#marketing-details .row > div:nth-child(3) .sub-service-card { animation-delay: 0.2s; }
#marketing-details .row > div:nth-child(4) .sub-service-card { animation-delay: 0.25s; }
#marketing-details .row > div:nth-child(5) .sub-service-card { animation-delay: 0.3s; }
#marketing-details .row > div:nth-child(6) .sub-service-card { animation-delay: 0.35s; }
#marketing-details .row > div:nth-child(7) .sub-service-card { animation-delay: 0.4s; }
#marketing-details .row > div:nth-child(8) .sub-service-card { animation-delay: 0.45s; }
#marketing-details .row > div:nth-child(9) .sub-service-card { animation-delay: 0.5s; }


#project-base-details .sub-service-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

#project-base-details .row > div:nth-child(1) .sub-service-card { animation-delay: 0.1s; }
#project-base-details .row > div:nth-child(2) .sub-service-card { animation-delay: 0.2s; }
#project-base-details .row > div:nth-child(3) .sub-service-card { animation-delay: 0.3s; }

/* Call Center Details Page */
.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    height: 100%;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-img {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.feature-card-body h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.feature-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-card .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

#call-center-details .feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

#call-center-details .row > div:nth-child(1) .feature-card { animation-delay: 0.1s; }
#call-center-details .row > div:nth-child(2) .feature-card { animation-delay: 0.2s; }
#call-center-details .row > div:nth-child(3) .feature-card { animation-delay: 0.3s; }
#call-center-details .row > div:nth-child(4) .feature-card { animation-delay: 0.4s; }

/* About Us Page */
#about-us-content .section-title {
    margin-bottom: 0.5rem;
}

.title-accent {
    width: 80px;
    height: 4px;
    background-color: var(--primary-accent);
    border-radius: 2px;
    margin: 0 auto;
}

.about-nav .nav-link {
    background-color: transparent;
    border: 1px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    text-align: left;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.about-nav .nav-link:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.about-nav .nav-link.active {
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-accent));
    color: var(--white);
    box-shadow: 0 10px 20px rgba(60, 75, 155, 0.2);
    transform: scale(1.05);
}

#v-pills-tabContent {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    color: var(--text-light);
    line-height: 1.8;
}

.tab-image {
    max-width: 200px;
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.alert-info-custom {
    background-color: #e0f7fa;
    border-color: #b2ebf2;
    color: #00796b;
    padding: 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
}

#contact-page-content .form-title,
#contact-page-content .details-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

#contact-page-content .form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

#contact-page-content .form-control {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.9rem 1.1rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#contact-page-content .form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 0.25rem rgba(108, 128, 255, 0.25);
}

.contact-details-wrapper hr {
    border-top: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.contact-item .icon-bg {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
}

.contact-item .text-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item .text-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

.map-embed iframe {
    border-radius: 0.75rem;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.map-embed iframe:hover {
    filter: grayscale(0%);
}

/* Careers Page */
.job-listing {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.job-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-listing-header h3 {
    margin-bottom: 0;
}

.job-listing-meta {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.job-listing-meta span {
    margin-right: 1.5rem;
}

.job-listing-meta i {
    color: var(--primary-accent);
}

.job-listing-description {
    line-height: 1.8;
}

.application-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.application-form-wrapper h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.job-full-description {
    line-height: 1.8;
}


/* Animations */
.animate-fade-in-up { animation: fadeInUp 1s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in-up:nth-child(3) { animation-delay: 0.6s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
section.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-title { font-size: 3.8rem; }
    .navbar-collapse { background: #fff; padding: 20px; border-radius: 10px; margin-top: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .navbar.scrolled .navbar-collapse { background: #fff; }
    .nav-link, .navbar.scrolled .nav-link { color: var(--text-dark); }
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0.5rem;
        margin-top: 5px !important;
        animation: none;
    }
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
    .about-nav {
        flex-direction: row !important;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    .about-nav .nav-link {
        flex: 1 1 auto;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .delivered-projects-slider .swiper-button-prev,
    .delivered-projects-slider .swiper-button-next {
        display: none;
    }
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}