@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Montserrat:wght@600&display=swap');

/* GLOBAL TYPOGRAPHY */

:root {
    /* Primary Colors */
    --color-primary: #00235B;
    --color-accent: #eba51a;
    --color-accent-hover: #cc9e09db;

    /* Text Colors */
    --text-on-dark: #FFFFFF;
    --text-on-light: #1D2939;

    /* Background Colors */
    --background-main: #FFFFFF;
    --background-secondary: #F8F9FA;

    /* UI Colors */
    --border-color: #E9ECEF;

    /* === Fonts === */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --dark-navy: #0A1F44;
    --font-sans: Inter, sans-serif;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-500: #ef4444;
    --green-500: #22c55e;
    --white: #ffffff;
}


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

}

body {
    font-family: var(--font-secondary);
    color: var(--text-on-light);
    line-height: 1.5;
    background-color: var(--background-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

.container {
    width: min(100%, 1440px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin: 0 auto;
    padding: 0 120px;
    position: relative;
    background-color: #fdfcfa;

}

/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--font-primary);
}


.logo img {
    padding-top: 5px;
    height: 100px;
    object-fit: cover;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 33%;
}

.nav-link.active {
    color: var(--color-accent);
}

.nav-link.active::after {
    width: 50%;
    left: 30%;
    background-color: var(--color-accent);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    cursor: pointer;
    transform: rotate(180deg);
}

.nav-item.dropdown>.nav-link {
    gap: 0.3rem;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background-color: var(--background-main);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--color-accent-hover);
    color: var(--text-on-dark);
    transform: translateX(5px);
}

.dropdown-menu.mega-menu {
    z-index: 2000;
    display: flex;
    flex-direction: row;
    width: 275px;
    padding: 1rem;
    overflow: visible;
}

.mega-menu-column:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.mega-menu .dropdown-item {
    border-bottom: none;
    padding: 0.75rem 1rem;
}

.dropdown-header {
    padding: 0.75rem 1rem 0.5rem 1rem;
    font-size: 0.9em;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu .dropdown-item.main-link {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.05em;
}

.mega-menu .dropdown-item.sub-link {
    padding-left: 2rem;
    font-size: 0.95em;
    color: #444;
}

.mega-menu .dropdown-item:hover {
    transform: translateX(0);
    background-color: var(--color-accent-hover);
    color: var(--text-on-dark);
}

.mega-menu .dropdown-item.main-link:hover {
    background-color: transparent;
    color: var(--color-accent);
    cursor: pointer;
}

.mega-menu .dropdown-item.sub-link:hover,
.mega-menu .mega-menu-column:last-child .dropdown-item:hover {
    transform: translateX(5px);
}

/* Contact button */
.contact-btn {
    padding: 8px 16px;
    border: none;
    outline: none;
    color: var(--text-on-dark);
    cursor: pointer;
    position: relative;
    z-index: 0;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
    text-decoration: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: color 0.3s ease-in-out;
}

.contact-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    left: 0;
    top: 0;
}

.contact-btn:hover:before {
    opacity: 1;
}

.contact-btn:hover {
    color: var(--color-accent);
}


/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-main);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.show {
    display: block;
}

.mobile-nav-link,
.mobile-dropdown-toggle,
.mobile-dropdown-item,
.mobile-nav-button-link {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.mobile-nav-item,
.mobile-nav-button {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link,
.mobile-nav-button-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-dropdown-toggle:hover {
    background-color: var(--color-accent-hover);
    color: var(--text-on-dark);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-dropdown-content {
    background-color: var(--background-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-content.show {
    max-height: 400px;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-item:hover {
    background-color: var(--color-accent-hover);
    color: var(--text-on-dark);
    transform: translateX(5px);
}


/* Hero Section */

.hero-section {
    min-height: 75vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgb(0 0 0 / 48%), rgb(0 0 0 / 35%)), url(/static/images/background-images/mars-earth.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 150px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a66c24a, #14336a21);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;

}


.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: start;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.discover-link .arrow {
    line-height: 1;
    transition: transform 0.3s ease
}

.discover-link .text {
    margin-left: 10px;
    margin-top: 3px;
}


.discover-link:hover {
    background: rgba(255, 255, 255, 0.799);
    color: #000;
}


.hero-buttons .discover-link:first-child:hover .arrow {
    transform: translateX(3px);
}

/* =============================================
   Stats Section
   =============================================
*/
.stats-section {
    background-color: var(--background-main);
    padding: 15px 0;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 135px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    flex: 1 1 180px;
    min-width: 160px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent-hover);
    opacity: 0.9;
    margin-top: 8px;
}



/* =============================================
   Feature Slider Section
   =============================================
*/

/* --- Section Layout --- */
.feature-slider-section {
    padding: 60px 0;
    background-color: var(--background-secondary);
}

.section-title {
    text-align: center;
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

.slide-text {
    text-align: left;
}

.slide-image {
    display: flex;
    justify-content: center;
}

.slide-image img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.slide-text:not(.is-checklist) .slide-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-on-light);
    line-height: 1.6;
}

.slide-text.is-checklist .slide-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--text-on-light);
    line-height: 1.6;
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.25rem;
}

.slide-text.is-checklist .slide-description:last-child {
    margin-bottom: 0;
}

.slide-text.is-checklist .slide-description::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
}

slide-text.is-checklist .slide-description strong {
    font-weight: 600;
    color: var(--color-primary);
}

.slide-title,
.slide-description,
.slide-image img {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.slide-image img {
    transform: scale(0.95);
}

.slide-title,
.slide-description {
    transform: translateY(20px);
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-description,
.swiper-slide-active .slide-image img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.swiper-slide-active .slide-image img {
    transition-delay: 0.1s;
}

.swiper-slide-active .slide-title {
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-text:not(.is-checklist) .slide-description {
    transition-delay: 0.3s;
}

.swiper-slide-active .slide-text.is-checklist .slide-description:nth-child(1) {
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-text.is-checklist .slide-description:nth-child(2) {
    transition-delay: 0.3s;
}

.swiper-slide-active .slide-text.is-checklist .slide-description:nth-child(3) {
    transition-delay: 0.4s;
}


.feature-slider .swiper-button-next,
.feature-slider .swiper-button-prev {
    color: var(--color-primary);
    bottom: 15%;
    top: auto;
    transform: none;
    --swiper-navigation-size: 1.25rem;
}

.feature-slider .swiper-button-next:hover,
.feature-slider .swiper-button-prev:hover {
    color: var(--color-accent);
}

.feature-slider .swiper-button-prev {
    left: auto;
    right: calc((100% - 1200px) / 3 + 80px);
}

.feature-slider .swiper-button-next {
    left: auto;
    right: calc((100% - 1200px) / 3 + 0px);
}

.feature-slider .swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto;
}

.feature-slider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: background-color 0.2s ease;
}

.feature-slider .swiper-pagination-bullet-active {
    background: var(--color-accent);
}


@media (max-width: 1240px) {
    .feature-slider .swiper-button-prev {
        left: auto;
        right: 60px;
    }

    .feature-slider .swiper-button-next {
        left: auto;
        right: 20px;
    }
}

/* =============================================
   Case Studies Section
   =============================================
*/
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.case-studies-section {
    padding: 30px 0;
}

.case-studies-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-left: 40px;
}

.case-studies-grid::-webkit-scrollbar {
    display: none;
}

.case-study-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 20px -3px rgb(0 0 0 / 0.12), 0 6px 8px -4px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
    max-width: 500px;
    min-width: 400px;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card-image:hover {
    transform: scale(1.05);
}

.card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 30px 1.5rem;
    margin-top: auto;
    z-index: 5;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    z-index: 100;
}

.card-tag {
    color: #495057;
    font-size: 11px;
    font-weight: 500;
    background-color: #f1f3f5;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    border: 1px solid transparent;
    text-decoration: none;
}


.card-tag:hover {
    border-color: #e7d1a6;
    color: #6e5013;
    cursor: pointer;
}

.card-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.card-title:hover {
    color: var(--color-accent);
}

.customer-value1 {
    position: absolute;
    top: 260px;
    z-index: 15;
    color: #01478d;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

.customer-value1::before {
    content: '◆';
    font-size: 0.65rem;
    margin-right: 8px;
    position: relative;
    top: -1px;
}


.view-all-link {
    font-weight: 600;
    color: #111827;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.view-all-link:hover {
    color: var(--color-accent-hover);
    text-decoration: none;
}

.case-studies-slider-wrapper {
    position: relative;
}

.slider-nav-container {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 24px;
    padding-right: 50px;
}

.swiper-button-next1,
.swiper-button-prev1 {
    position: relative;
    z-index: 1;

    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    cursor: pointer;

    color: #4c4fa1;
    font-size: 24px;
    font-weight: bold;

    transition: color 0.2s ease-in-out;
}


.swiper-button-next1.swiper-button-disabled,
.swiper-button-prev1.swiper-button-disabled {
    color: #c8c9e1;
    cursor: not-allowed;
    pointer-events: none;
}

.swiper-button-next1::before,
.swiper-button-prev1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3fd;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease-in-out;
}

.swiper-button-next1:not(.swiper-button-disabled):hover::before,
.swiper-button-prev1:not(.swiper-button-disabled):hover::before {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next1:not(.swiper-button-disabled):hover,
.swiper-button-prev1:not(.swiper-button-disabled):hover {
    color: #0A1F44;
}




/* =============================================
   Services Section
   ============================================= */
.services-section {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    padding: 60px 0;
}

.services-header {
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* === Services Grid === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    gap: 15px;
}

.services-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.services-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(70%);
}

.services-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);

    transform: translateY(0);
}


.card-content h3 {
    font-size: 24px;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
}



.card-content .arrow {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.service-grid article.services-card a {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
    color: inherit;
}

/* === Hover Effects === */
.services-card:hover img {
    filter: grayscale(0%) brightness(100%);
}

.services-card:hover .arrow {
    transform: translateX(8px);
}

.services-card:hover h3 {
    color: var(--color-accent);
}

/* =============================================
   TEAM SECTION STYLES
   ============================================= */

.team-section {
    padding: 60px 0;
    background-color: var(--background-main, #FFFFFF);
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}


.team-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-on-light-secondary, #555);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-socials a svg {
    width: 20px;
    height: 20px;
    color: #0a66c2;
}

.team-socials a:hover svg {
    color: var(--color-accent);
}

/* --- Team Filter Buttons --- */
.team-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-secondary, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: var(--background-secondary, #F8F9FA);
    color: var(--text-on-light-secondary, #555);
    border: 1px solid var(--border-color, #E9ECEF);
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: var(--border-color, #E9ECEF);
    color: var(--text-on-light, #1D2939);
}

.filter-btn.active {
    background-color: var(--color-primary, #00235B);
    color: var(--text-on-dark, #FFFFFF);
    border-color: var(--color-primary, #00235B);
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.team-card {
    text-align: center;
    display: block;
}

.team-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
    border: 1px solid var(--border-color, #E9ECEF);
}

.team-name {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light, #1D2939);
    margin: 0 0 4px 0;
}

.team-title {
    font-family: var(--font-secondary, 'Inter', sans-serif);
    font-size: 1.2rem;
    color: #024bad;
    font-weight: 500;
    margin: 0 0 12px 0;
}


.team-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.team-socials a {
    color: var(--text-on-light-secondary, #555);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.team-socials a:hover {
    color: var(--color-primary, #00235B);
}

.team-card-network {
    grid-column: 1 / -1;
    display: none;
    display: flex;
    align-items: center;
    gap: 30px;

    background-color: #eef4fd;
    border: 1px solid var(--border-color, #E9ECEF);
    border-radius: 8px;
    padding: 30px 40px;
    text-align: left;
}

.network-card-icon-wrapper {
    flex-shrink: 0;
}

.network-card-icon-wrapper svg {
    width: 60px;
    height: 60px;
    color: var(--color-primary, #00235B);
}

.network-card-text-wrapper {
    flex-grow: 1;
}

.network-card-title {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light, #1D2939);
    margin: 0 0 8px 0;
}

.network-card-bio {
    font-family: var(--font-secondary, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: var(--text-on-light-secondary, #555);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-network {
        grid-column: 1 / -1;
    }
}

/* =============================================
            Testimonials Section
============================================= */

.testimonials {
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

/* --- Section Header --- */
.section-header-wrapper {
    margin-bottom: 8px;

}

.testimonials .section-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.testimonials .section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
}

.testimonial-slider.swiper {
    position: relative;
}

.testimonial-slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}


/* --- Testimonial Card (Slide) --- */
.testimonial-card.swiper-slide {
    box-sizing: border-box;
    background: var(--rt-color-white, #fff);
    text-align: left;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--color-primary);
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .testimonial-card.swiper-slide {
        display: grid;
        gap: 40px;
        padding: 40px;
        align-items: start;
    }
    
}

.testimonial-card__logo {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-top: 10px;
}

.testimonial-card__body {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

.testimonial-rating {
    display: flex;
    justify-content: end;
    gap: 4px;
    color: var(--rt-color-warning, #f0ad4e);
}

.icon-star {
    width: 20px;
    height: 20px;
}

.testimonial-quote {
    margin: 10px 0 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-quote p {
    margin: 0 0 1em 0;
}

.testimonial-quote p:last-child {
    margin-bottom: 0;
}

.testimonial-quote strong {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Card Footer --- */
.testimonial-card__footer {
    display: flex;
    gap: 24px;
}

.testimonial-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: text-decoration 0.2s;
}

.testimonial-link:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* --- Swiper Controls --- */

/* --- Swiper Controls --- */

/* Pagination Dots */
.testimonial-pagination.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 10px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ccc;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary); /* Changed to primary to match */
    width: 12px; /* Elongate active dot */
    border-radius: 3px;
}

/* Hide Navigation Arrows for cleaner look in small widget */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    display: none; 
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .testimonials {
        right: 15px;
        left: 15px; /* Full width minus margins */
        bottom: 15px;
        width: auto;
    }
}


/* =============================================
   Technology Stack Section
   =============================================
*/
.tech-stack {
    background-color: var(--background-main);
    padding: 60px 0;
    color: var(--color-primary);
    line-height: 1.6;
}

.tech-stack h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary);
}

/* --- Wrapper for All Categories --- */
.tech-stack-wrapper {
    background-color: #eaf3fddb;
}

@media (min-width: 768px) {
    .tech-stack-wrapper {
        padding: 40px;
    }
}

.tech-category {
    margin-bottom: 30px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-on-light);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}


.tech-subgroup {
    flex: 1;
    padding-bottom: 20px;
}

.tech-subgroup-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 16px;
}

.tech-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
}

.tech-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tech-logo-bg);
    padding: 10px;
    height: 70px;
    border: 1px solid var(--tech-border);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.tech-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.tech-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.see-all-button-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.see-all-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-primary);
    border: 1px solid rgba(0, 8, 62, 0.7);
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-all-btn:hover {
    color: var(--text-on-dark);
    background-color: var(--color-primary);
}


/*
  =================================
  FEATURED INSIGHTS STYLES
  =================================
*/
.insights-section {
    background-image: url(/static/images/background-images/service-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}


.insights-section .section-title {
    color: var(--text-on-dark);
    margin-bottom: 40px;
}

/* --- Grid Layout --- */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* --- Card Styling --- */
.insight-card {
    display: flex;
    flex-direction: column;
    background: var(--background-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--text-on-light);
    overflow: hidden;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-accent-hover);
}

.insight-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.insight-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.insight-card-category {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.insight-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card-footer {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.insight-card-footer::after {
    content: ' \2192';
    display: inline-block;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-card-footer {
    color: var(--color-accent);
}

.insight-card:hover .insight-card-footer::after {
    transform: translateX(5px);
}

.insights-footer {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 12px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid var(--background-secondary);
    color: var(--text-on-dark);
    background-color: transparent;
}

.btn-outline:hover {
    color: var(--text-on-dark);
}

.btn-outline::after {
    content: ' \2192';
    display: inline-block;
    transition: transform 0.3s ease;
    padding-left: 10px;

}

.btn-outline:hover::after {
    transform: translateX(5px);
}

/* --- Responsive Breakpoints --- */
@media (min-width: 768px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*
 =================================
 CONTACT & CTA SECTION STYLES
 =================================
*/
.cta-section {
    font-family: var(--font-secondary);
    color: var(--text-on-light);
    background-color: var(--background-secondary);
    padding: 80px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--background-main);
    box-shadow: 0 10px 30px rgba(0, 35, 91, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cta-form-wrapper {
    padding: 30px 24px;
    border-bottom: 1px solid var(--border-color);
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px 0;
}

.cta-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.form-group {
    margin: 20px 0;
}

.iti {
    width: 100%;
}

#phone {
    width: 100%;
    padding-left: 52px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form input[type="tel"],
.cta-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-on-light);
    background-color: var(--background-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.cta-form input[type="text"]::placeholder,
.cta-form input[type="email"]::placeholder,
.cta-form input[type="tel"]::placeholder,
.cta-form textarea::placeholder {
    color: #6C757D;
}

.cta-form input[type="text"]:focus,
.cta-form input[type="email"]:focus,
.cta-form input[type="tel"]:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 35, 91, 0.1);
}

.cta-form textarea {
    resize: vertical;
    min-height: 100px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

.file-upload-label {
    display: block;
    text-align: center;
    padding: 20px;
    border: 2px dashed var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--color-primary);
    background-color: var(--background-secondary);
}

.file-upload-label span {
    font-size: 0.95rem;
    color: #495057;
}

.file-upload-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.file-upload-browse {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}


.send-btn {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: var(--text-on-dark);
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    user-select: none;
    text-decoration: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: color 0.3s ease-in-out;
}

.send-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.send-btn:hover:before {
    opacity: 1;
}

.send-btn:hover {
    color: var(--color-accent);
}

.cta-links-wrapper {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-secondary);
    padding: 40px 30px 40px 40px;
    position: relative;
    border-radius: 0;
    border: none;
}

.cta-links-wrapper::before {
    content: '';
    z-index: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px dashed var(--color-accent);
    border-radius: 5px;
    pointer-events: none;
}

.contact__info {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-main);
    padding: 50px 40px;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}


.contact__info-heading {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact__info-steps {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    border-left: 2px solid var(--color-primary);
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    margin-left: 18px;
}

.contact__info-block {
    position: relative;
    padding-left: 55px;
    list-style: none;
}

.contact__info-block:last-child::after {
    display: none;
}

.contact__info-step {
    position: absolute;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background-color: var(--background-main);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    left: -19px;
    top: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
}

.contact__info-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-on-light);
}

.iti__country-list {
    max-height: 130px;

}

@media (max-width: 600px) {
    .contact__info {
        padding: 40px 20px 40px 30px;
    }

    .contact__info-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact__info-steps {
        margin-left: 18px;
    }

    .contact__info-block {
        padding-left: 50px;
    }

    .contact__info-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .cta-card {
        flex-direction: column;
        gap: 20px;
    }

    .cta-form-wrapper,
    .contact__info {
        flex: none;
        width: 100%;
    }
}



@media (min-width: 768px) {
    .cta-form-wrapper {
        padding: 40px;
    }

    .cta-links-wrapper {
        padding: 40px;
    }

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

}

@media (min-width: 1024px) {
    .cta-card {
        grid-template-columns: 3fr 2fr;
    }

    .cta-form-wrapper {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .cta-form-wrapper,
    .cta-links-wrapper {
        padding: 50px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 60px 0px;
    }

    .cta-card {
        margin: 10px 0;
        gap: 0;
    }

    .cta-form-wrapper,
    .cta-links-wrapper {
        padding: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .send-btn {
        width: 100%;
    }

}

/* =============================================
   Footer Section
   =============================================
*/

.footer {
    width: 100%;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    color: var(--text-on-dark);
    background-color: var(--color-primary);
}

.footer-content {
    display: grid;
    grid-template-rows: auto;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-self: start;
    font-weight: bold;
    aspect-ratio: 141 / 70;
    grid-column: 1;
}

.footer-logo img.logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.company-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    grid-column: 2;
}

.company-section>div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.company-info,
.contact-info- {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-info a,
.contact-info- a {
    color: var(--text-on-dark);
    transition: color 0.3s ease;
    text-decoration: none;
}

.company-info a:hover,
.contact-info- a:hover {
    color: #e8de16;
    text-decoration: underline;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    align-self: center;
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

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

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

.footer-section ul li a {
    color: var(--text-on-dark);
    font-family: var(--font-secondary);
    text-decoration: none;
    font-style: normal;
    line-height: normal;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 18px;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #e8de16;
}

.services-footer {
    grid-column: 3;
}

.links-section {
    grid-column: 4;
}

.newsletter-section {
    grid-column: 5;
}

.newsletter-form {
    width: 380px;
    margin-bottom: 15px;
}

.newsletter-wrapper {
    position: relative;
    width: 100%;
    height: 72px;
}

.newsletter-input {
    width: 100%;
    height: 100%;
    padding: 0 60px 0 16px;
    border: 1px solid var(--color-accent);
    font-size: 15px;
    box-sizing: border-box;
    background-color: var(--background-main);
    color: var(--text-on-light);
}

.newsletter-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;

    background: #cc9e09;
    color: var(--text-on-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.newsletter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--background-main), 0 0 0 5px var(--color-accent);
}

.newsletter-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-links1 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgb(251 164 38 / 51%);
    padding-top: 30px;
}

.social-links1 a {
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* --- Base Overrides for "Filled" Look --- */
.social-links1 a {
    border: none;       /* Remove the thin outline */
    color: white;       /* Make icons white by default */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* Optional: Adds depth like a button */
}

/* --- LinkedIn (Always Blue) --- */
.social-links1 a:has(.fa-linkedin-in) {
    background: #0077b5;
}

/* --- Upwork (Always Green) --- */
.social-links1 a:has(.fa-upwork) {
    background: #14a800;
}

/* --- X / Twitter (Always Black) --- */
.social-links1 a:has(.fa-x-twitter) {
    background: #000000;
    /* Optional: Slight border in case your website background is also black */
    border: 1px solid rgba(255,255,255,0.1); 
}

/* --- HOVER EFFECT: Only Move Up --- */
.social-links1 a:hover {
    transform: translateY(-5px) !important; /* Moves the icon up */
    filter: brightness(1.1); /* Optional: Makes it slightly brighter to show interaction */
    
    /* Ensure we don't accidentally change colors on hover based on old rules */
    color: white; 
}


.form-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-top: 15px;
    max-width: 380px;
}

.form-disclaimer a {
    color: #f2d858;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-disclaimer a:hover {
    color: #c0b600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--background-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 20px;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 30px;
    color: var(--text-on-dark);
}

.footer-disclaimer {
    font-size: 15px;
    margin-bottom: 5px;
}

.copyright {
    padding-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--text-on-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #e8de16;
    text-decoration: underline;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 20px;
        padding: 20px 40px;
    }

    .footer-content>* {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .company-section,
    .services-footer,
    .links-section,
    .newsletter-section {
        margin-top: 0;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-logo img.logo-img {
        width: 150px;
        height: 150px;
    }

    .company-section {
        grid-column: 2;
        grid-row: 1;
    }

    .services-footer {
        grid-column: 1;
        grid-row: 2;
    }

    .links-section {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    background-color: transparent;
}



.scroll-icon {
    width: 60px;
    height: 60px;
}



/* =============================================
   1. Cookie Banner (Centered Modal Style)
   =============================================
*/
#cookie-banner {
    position: fixed;
    inset: auto 20px 20px 20px;
    display: flex;
    justify-content: center;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
}

#cookie-banner[hidden] {
    display: none;
}

.cookie-banner-content {
    background: var(--background-main);
    color: var(--text-on-light);
    padding: 30px;
    border-radius: 8px;
    max-width: 1040px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

#cookie-banner p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-on-light);
    flex: 1 1 400px;
}

#cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

#cookie-banner a:hover {
    color: var(--color-accent);
}

#cookie-banner .actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-shrink: 0;
}

#cookie-banner .actions button {
    padding: 10px 20px;
    border: 2px solid transparent;
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
}

#cookie-banner .actions button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

#cookie-banner .actions button#cb-preferences {
    background-color: var(--background-main);
    border-color: var(--border-color);
    color: var(--text-on-light);
}

#cookie-banner .actions button#cb-preferences:hover {
    background-color: var(--background-secondary);
    border-color: #adb5bd;
    opacity: 1;
}

#cookie-banner .actions button#cb-reject,
#cookie-banner .actions button#cb-accept {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--text-on-dark);
}

#cookie-banner .actions button#cb-reject {
    background-color: #6c757d;
    border-color: #6c757d;
}

#cookie-banner .actions button#cb-reject:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

@media (max-width: 768px) {
    #cookie-banner {
        inset: auto 0 0 0;
        padding: 0;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        width: 100%;
        padding: 24px;
    }

    #cookie-banner p {
        flex: auto;
        font-size: 14px;
    }

    #cookie-banner .actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    #cookie-banner .actions button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        display: block;
    }
}

/* =============================================
   2. Cookie Modal (Preferences Overlay)
   =============================================
*/
#cookie-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 41, 57, 0.7);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

#cookie-modal[hidden] {
    display: none;
}

#cookie-modal form {
    margin: 0;
    background: var(--background-main);
    color: var(--text-on-light);
    padding: 30px;
    max-width: 520px;
    width: 92%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

#cookie-modal h2 {
    margin: 0 0 25px 0;
    font-size: 1.6rem;
    font-family: var(--font-primary);
    color: var(--color-primary);
}

#cookie-modal fieldset {
    border: none;
    padding: 0;
    margin: 0 0 25px 0;
}

#cookie-modal label {
    display: block;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

#cookie-modal label:hover {
    background-color: var(--background-secondary);
}

#cookie-modal input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.2);
    accent-color: var(--color-primary);
}

#cookie-modal .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#cookie-modal .actions button {
    flex: 1 1 auto;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-secondary);
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

#cookie-modal .actions button#cp-save {
    background-color: transparent;
    border-color: var(--text-on-light);
    color: var(--text-on-light);
}

#cookie-modal .actions button#cp-save:hover {
    background-color: var(--text-on-light);
    color: var(--text-on-dark);
}

#cookie-modal .actions button#cp-accept-all {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    border-color: var(--color-primary);
}

#cookie-modal .actions button#cp-accept-all:hover {
    opacity: 0.9;
}

#cookie-modal .intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: -15px 0 25px 0;
}

#cookie-modal .intro-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

#cookie-modal label>div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

#cookie-modal .cookie-label-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-left: 12px;
}

#cookie-modal .cookie-description {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-left: 36px;
}

#cookie-modal label:has(input:disabled) {
    background-color: var(--background-secondary);
    opacity: 0.8;
    cursor: not-allowed;
}

#cookie-modal label:has(input:disabled):hover {
    background-color: var(--background-secondary);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-btn {
        margin-left: 0px;
    }
}

@media (max-width: 1180px) {
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 1100px) {

    .nav-link {
        font-weight: 500;
        font-size: 14px;
        gap: 3px;
    }

    .contact-btn {
        margin-left: 8px;
        font-weight: 500;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }

    .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-btn {
        font-weight: 600;
        font-size: 14px;
    }

    .main-heading,
    .main-heading2,
    .team-section .section-title h2 {
        font-size: 36px;
        text-align: center;
        justify-content: center;
    }

    .why-choose-us-section {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "intro intro"
            "card1 card4"
            "card2 card4"
            "card3 card6"
            "card5 card5";
        gap: 20px;
    }

    .main_content_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .primary_heading {
        font-size: 2.5rem;
    }

    .contact-button,
    .view-profile-btn,
    .service-contact-info {
        justify-content: center;
    }

    .call_to_action_section .view-profile-btn {
        justify-content: center;
    }



    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 30px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;

        scrollbar-width: none;
        -ms-overflow-style: none;
        scrollbar-width: thin;
        scrollbar-color: var(--deep-navy) rgba(0, 0, 0, 0.1);
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }

    .slider-controls {
        display: flex;
        justify-content: flex-end;
    }

    .values-grid {
        display: flex;
        overflow-x: auto;
        gap: 25px;
        padding-bottom: 20px;
        scrollbar-width: thin;
        scrollbar-color: var(--soft-gold) rgba(0, 0, 0, 0.1);
    }

    .values-grid::-webkit-scrollbar {
        height: 8px;
    }

    .values-grid::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .values-grid::-webkit-scrollbar-thumb {
        background-color: var(--soft-gold);
        border-radius: 10px;
    }

    .values-grid .value-card {
        flex: 0 0 320px;
        width: 320px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        font-weight: 6500;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #FFFFFF;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    }

    .hero-content p {
        font-size: 1rem;
        font-weight: 400;
        max-width: 100%;
        padding-bottom: 15px;
        line-height: 1.2;
    }


}

/* =============================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ============================================= */

@media (max-width: 1240px) {
    .feature-slider .swiper-button-prev {
        left: auto;
        right: 60px;
    }

    .feature-slider .swiper-button-next {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-btn {
        margin-left: 0px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 20px;
        padding: 20px 40px;
    }

    .footer-content>* {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .company-section,
    .services-footer,
    .links-section,
    .newsletter-section {
        margin-top: 0;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-logo img.logo-img {
        width: 150px;
        height: 150px;
    }

    .company-section {
        grid-column: 2;
        grid-row: 1;
    }

    .services-footer {
        grid-column: 1;
        grid-row: 2;
    }

    .links-section {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 1180px) {
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        font-weight: 500;
        font-size: 14px;
        gap: 3px;
    }

    .contact-btn {
        margin-left: 8px;
        font-weight: 500;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-network {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-card {
        grid-template-columns: 3fr 2fr;
    }

    .cta-form-wrapper {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .cta-form-wrapper,
    .cta-links-wrapper {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }

    .nav-menu {
        display: none;
    }

    .hero-section{
        padding-top: 100px;
        padding-bottom: 100px;
        background-attachment: scroll;
        min-height: auto;
    }
    .contact-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-btn {
        font-weight: 600;
        font-size: 14px;
    }

    .main-heading,
    .main-heading2,
    .team-section .section-title h2 {
        font-size: 36px;
        text-align: center;
        justify-content: center;
    }

    .why-choose-us-section {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "intro intro" "card1 card4" "card2 card4" "card3 card6" "card5 card5";
        gap: 20px;
    }

    .main_content_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .primary_heading {
        font-size: 2.5rem;
    }

    .contact-button,
    .view-profile-btn,
    .service-contact-info {
        justify-content: center;
    }

    .call_to_action_section .view-profile-btn {
        justify-content: center;
    }

    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 30px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--deep-navy) rgba(0, 0, 0, 0.1);
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }

    .slider-controls {
        display: flex;
        justify-content: flex-end;
    }

    .values-grid {
        display: flex;
        overflow-x: auto;
        gap: 25px;
        padding-bottom: 20px;
        scrollbar-width: thin;
        scrollbar-color: var(--soft-gold) rgba(0, 0, 0, 0.1);
    }

    .values-grid::-webkit-scrollbar {
        height: 8px;
    }

    .values-grid::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .values-grid::-webkit-scrollbar-thumb {
        background-color: var(--soft-gold);
        border-radius: 10px;
    }

    .values-grid .value-card {
        flex: 0 0 320px;
        width: 320px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        font-weight: 6500;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #FFFFFF;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    }

    .hero-content p {
        font-size: 1rem;
        font-weight: 400;
        max-width: 100%;
        padding-bottom: 15px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .team-title {
        font-size: 16px;
    }

    .cta-card {
        margin: 20px 0;
    }
}

@media (max-width: 900px) {
    .cta-card {
        flex-direction: column;
        gap: 40px;
    }

    .cta-form-wrapper,
    .contact__info {
        flex: none;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .stats-section {
        padding: 20px 20px;
    }

    .stats-wrapper {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .testimonial-card.swiper-slide {
        display: grid;
        gap: 40px;
        padding: 40px;
        align-items: start;
    }

    .tech-stack-wrapper {
        padding: 40px;
    }

    .cta-form-wrapper {
        padding: 40px;
    }

    .cta-links-wrapper {
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-text {
        text-align: center;
        order: 2;
        margin-top: 20px;
    }

    .slide-image {
        order: 1;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description,
    .slide-text.is-checklist .slide-description {
        font-size: 1rem;
        text-align: left;
    }

    .slide-text.is-checklist {
        display: inline-block;
        text-align: left;
    }

    .feature-slider .swiper-button-next,
    .feature-slider .swiper-button-prev {
        bottom: 5px;
        top: auto;
    }

    .feature-slider .swiper-button-prev {
        left: auto;
        right: 60px;
    }

    .feature-slider .swiper-button-next {
        left: auto;
        right: 20px;
    }

    .feature-slider .swiper-pagination {
        margin-top: 45px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .team-filters {
        flex-wrap: wrap;
    }

    .team-card-network {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 20px;
    }

    .network-card-title {
        font-size: 1.15rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-banner .actions {
        width: 100%;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .form-group {
        margin: 5px 0;
    }

    .call_to_action_section,
    .about-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        text-align: center;
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-section {
        padding: 40px 0;
    }

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

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        display: none;
    }

    .why-choose-us-section {
        grid-template-columns: 1fr;
        grid-template-areas: "intro" "card4" "card1" "card3" "card2" "card6" "card5";
    }

    .main-heading,
    .team-section .section-title h2 {
        font-size: 36px;
        text-align: center;
        justify-content: center;
    }

    .team-section {
        padding: 40px 15px;
    }

    .service-grid article .card-content{
        position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(0);
    }
    .slider-container {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .company-image {
        width: 100%;
        min-height: 400px;
        padding: 10px;
    }

    .company-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .feature-card1,
    .feature-card2,
    .feature-card3,
    .feature-card4,
    .feature-card5,
    .feature-card6 {
        min-height: 450px;
    }

    .headline-container {
        text-align: center;
    }

    .footer {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img.logo-img {
        width: 150px;
        height: 150px;
    }

    .company-section,
    .services-footer,
    .links-section,
    .newsletter-section {
        margin-top: 20px;
        text-align: center;
        grid-column: unset;
    }

    .company-section {
        margin-top: 60px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 30px;
    }

    .social-link img {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        font-size: 12px;
        margin-top: 20px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul li a {
        font-size: 14px;
        font-weight: 500;
    }

    .company-section>div {
        justify-content: center;
    }
    .testimonial-card.swiper-slide.hide-on-mobile {
        display: none !important;
    }
    .testimonial-pagination.swiper-pagination{
        margin-bottom: 0;
    }
}

@media (max-width: 720px) {
    #navbar.header {
        padding: 0 30px;
    }
}

@media (max-width: 600px) {

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-network {
        grid-column: 1;
    }

    .contact__info {
        padding: 40px 20px 40px 30px;
    }

    .contact__info-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact__info-steps {
        margin-left: 18px;
    }

    .contact__info-block {
        padding-left: 50px;
    }

    .contact__info-text {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 60px 0px;
    }

    .cta-form-wrapper,
    .cta-links-wrapper {
        padding: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .team-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 0 40px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: hidden;
        gap: 20px;
        padding-bottom: 0;
    }

    .values-grid .value-card {
        flex: auto;
        width: auto;
    }

    .hero-content a.service-tag {
        font-size: 11px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons a {
        font-size: 13px;
        padding: 10px
    }

    .headline-container h1 {
        font-size: 35px;
        font-weight: 600;
        line-height: 1.3;
    }

    .testimonial-slider .swiper-button-next, .testimonial-slider .swiper-button-prev {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .navbar {
        padding: 0 15px;
        height: 70px;
    }

    .logo img {
        height: 50px;
        padding-top: 0;
    }

    .nav-menu,
    .navbar>.contact-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-link,
    .mobile-dropdown-toggle,
    .mobile-nav-button-link {
        padding: 12px 15px;
        font-size: 15px;
    }

    .mobile-dropdown-item {
        padding: 10px 25px;
        font-size: 14px;
    }

    .mobile-menu {
        top: 70px;
        width: 100%;
    }

    .cta-section h2 {
        text-align: center;
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .cta-form textarea {
        min-height: auto;
    }

    .form-grid {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 0 20px;
    }

    .stats-wrapper {
        justify-content: space-around;
        gap: 10px 20px;
    }

    .stat-item {
        flex-basis: 40%;
        min-width: 140px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 45px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: block;
    }

    .hero-buttons a {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .primary_heading {
        font-size: 2rem;
    }

    .feature-slider .swiper-button-prev,
    .feature-slider .swiper-button-next {
        display: none;
    }

    .slide-description {
        text-align: center;
        font-size: 14px;
    }

    .services-header p {
        font-size: 14px;
    }

    .feature-card__description {
        font-size: 13px;
        line-height: 1.3;
    }

    .section-header {
        flex-direction: column;
    }

    .section-title {
        margin-bottom: 20px;
        font-size: 35px;
    }

    .case-studies-grid {
        padding-left: 10px;
        gap: 10px;
    }

    .case-study-card {
        max-width: 370px;
    }

    .case-study-card .case-study-title {
        font-size: 1.2rem;
    }

    .card-tags {
        margin-bottom: 5px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 17px;
    }

    .insights-section .section-title {
        margin-bottom: 20px
    }

    ;

    .insights-grid {
        gap: 10px;
        padding-left: 10px;
    }

    .insight-card-title {
        font-size: 1.1rem;
    }

    .team-name {
        font-size: 17px;
    }

    .team-title {
        font-size: 14px;
    }

    .hero-content p {
        padding-bottom: 0;
    }

    .slide-image img {
        width: 100%;
        height: auto;
    }

    .slide-content {
        gap: 15px;
    }

    .service-grid {
        gap: 5px;
    }

    .services-card {
        height: auto;
    }
}