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

/* GLOBAL TYPOGRAPHY */
:root {
    --deep-navy: #0A1F44;
    --teal-blue: #2A9D8F;
    --soft-cream: #FAF9F7;
    --charcoal-gray: #2D3748;
    --slate-gray: #4A5568;
    --soft-gold: #D4AF37;
    --white: #FFFFFF;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

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

}

body {
    font-family: var(--font-secondary);
    color: var(--charcoal-gray);
    line-height: 1.5;
    background-color: var(--soft-cream);
    -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;
    padding: 0 120px;
    position: relative;
    z-index: 1;
}

.section {
    background-image: url(../images/background-images/background-image3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% center;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 170px;
    height: 60px;
    aspect-ratio: 2/1;
    object-fit: cover;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

.nav-link.active::after {
    width: 60%;
    background-color: var(--soft-gold);
    left: 30%;
}

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

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

.nav-item.dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

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

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

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

.dropdown-item:hover {
    background-color: var(--soft-gold);
    color: var(--white);
    transform: translateX(5px);
}

/* Contact button */
.contact-btn {
    padding: 8px 16px;
    background: var(--deep-navy);
    border: 2px solid var(--deep-navy);
    border-radius: 6px;
    color: var(--soft-cream);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 30px;
}

.contact-btn:hover {
    background: var(--teal-blue);
    border-color: var(--teal-blue);
    color: var(--white);
}

/* Language Switcher Styles */
.language-dropdown {
    /* position: relative;
    display: inline-block; */
    margin-left: auto;
}

.dropdown-toggle {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 12px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.dropdown-toggle img {
    width: 20px;
    height: auto;
    border-radius: 3px;
}

.dropdown-toggle:hover {
    background-color: #f0f0f0;
}

.dropdown-toggle .arrow {
    font-size: 0.7em;
    transform: translateY(1px);
}

.dropdown-options {
    display: none;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 89px;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.active .dropdown-options {
    display: block;
}

.dropdown-options .lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
}

.dropdown-options .lang-btn img {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

.dropdown-options .lang-btn:hover {
    background-color: var(--soft-gold);
}

/* Mobile menu toggle (hamburger) */
.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(--deep-navy);
    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(--white);
    border-top: 1px solid var(--border-gray);
    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-gray);
}

.mobile-nav-item a {
    text-decoration: none;
}

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

.mobile-nav-link:hover {
    background-color: var(--soft-gold);
    color: var(--white);
}

.mobile-nav-button-link:hover {
    background-color: var(--deep-navy);
    color: var(--white);
}

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

.mobile-dropdown-toggle:hover {
    background-color: var(--soft-gold);
    color: var(--white);
}

.mobile-dropdown-content {
    background-color: var(--light-gray);
    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(--deep-navy);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-gray);
}

.mobile-dropdown-item:hover {
    background-color: var(--soft-gold);
    color: var(--white);
    transform: translateX(5px);
}



/* Hero Section */
.hero-section {
    background-image: url("../images/background-images/hero_section_background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 77vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 31, 68, 0.3), rgba(42, 157, 143, 0));
    z-index: 1;
}

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

/* Service Tags */
.hero-content .service-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 2rem;
}

.hero-content .service-tag {
    background-color: rgba(241, 239, 239, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 13px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;

}

.hero-content .service-tag:hover {
    background-color: rgba(238, 247, 246, 0.3);
    border-color: var(--teal-blue);
    color: var(--white);
    box-shadow: 0 8px 25px #f2d8588c;
    transform: translateY(-2px);
}

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

.hero-content p {
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Button styles */
.contact-button {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: start;
}

.contact-button a {
    text-decoration: none;
}

.discover-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* The animated border */
.discover-link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border: 1.5px solid rgba(255, 254, 225, 0.7);
    background-color: #dac92d1f;
    box-sizing: border-box;
    transition: width 0.4s ease-in-out;

}

.discover-link .arrow {
    position: absolute;
    top: 46%;
    left: 27.5px;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s ease-in-out;
}

.discover-link .text {
    margin-left: 40px;
    transition: transform 0.4s ease-in-out;
}

.discover-link:hover::before {
    width: 100%;
}

.discover-link:hover .text {
    transform: translateX(10px);
}

/* Stats Section */
.stats-section {
    padding: 10px 0;
    align-self: stretch;
    background: var(--Soft-Gold, #D4AF37);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
}

.stat-item {
    color: var(--Deep-Navy-Blue, #0A1F44);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-weight: bold;
    display: block;
    font-size: 16px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-image: url(../images/background-images/background-image2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0%;
}

.main-heading {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 57px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--Teal-Blue, linear-gradient(90deg, #2A9D89 10%, #031e19 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-image {
    width: 100%;
    min-height: 570px;
    background-image: url('/static/images/who-we-are-img.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(138, 107, 4, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.right-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.features-card {
    background: transparent;
    width: 100%;
    min-height: 170px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 12px;
    text-align: left;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.card-description {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    width: 100%;
    min-height: 170px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 12px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
}

.card-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-description .card-content {
    text-align: center;
}


.main-heading2 {
    display: flex;
    justify-content: start;
    padding: 20px 0;
    font-size: 57px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--Teal-Blue, linear-gradient(90deg, #dfc9b6 -30%, #fff 80%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Core Values Section */
.values-section {
    background: url(../images/background-images/navybackground.webp);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.value-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.value-bg-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.value-content {
     
    text-align: center;  
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    max-height: 75px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.value-card:hover .value-content {
    max-height: 250px;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.value-card:hover .value-description {
    opacity: 1;
    transform: translateY(0);
    
}

.value-card:nth-child(1) .value-content,
.value-card:nth-child(5) .value-content {
    background-color: #FAF9F7;
}

.value-card:nth-child(2) .value-content,
.value-card:nth-child(6) .value-content {
    background-color: #2A9D8F;
}

.value-card:nth-child(3) .value-content,
.value-card:nth-child(4) .value-content {
    background-color: #d4a303;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.value-description {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.value-card:hover .value-description {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slider-controls {
    display: none;
    justify-content: flex-end;
    margin-bottom: 20px;
    gap: 10px;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.team-section .slider-arrow {
    background-color: rgb(38 167 172 / 49%);
    border: 1px solid rgba(140, 240, 215, 0.7);
    color: var(--teal-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section .slider-arrow:hover {
    background-color: rgba(6, 104, 107, 0.108);
    transform: scale(1.1);
}


.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Audience Section */
.audience-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 60px 0;
}

.audience-card {
    max-width: 410px;
    flex: 1 1 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    text-align: center;
}

.audience-card img.audience-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 16px;
    color: var(--slate-gray);
    line-height: 1.5;
}

/* Hover effect: non-active cards mimic active style */
.audience-card:hover {
    background: #004C4C;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.audience-card:hover h3,
.audience-card:hover p {
    color: #ffffff;
}

/* Arrow button */
.audience-arrow {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px 10px 24px;
    border: 2px solid #004C4C;
    border-radius: 50px;
    background: transparent;
    color: #004C4C;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn span.arrow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D4A017;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: #004C4C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.12);
}

.arrow-btn:hover span.arrow-icon {
    background: #ffffff;
    color: #004C4C;
    transform: rotate(-20deg) translateX(2px);
}

.client-item {
    color: var(--deep-navy);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.client-label {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: capitalize;
}

/* Our Team section */
.team-section {
    padding: 100px 0;
}

.section-title {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    background: var(--Teal-Blue, linear-gradient(90deg, #2A9D89 -30%, #031e19 80%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2 {
    font-size: 57px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    justify-items: center;
}

.team-member {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 400px;
}

.team-member:nth-last-child(-n+2) {
    grid-column: span 1;
    justify-self: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.member-image:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.member-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Button styles */

.view-profile-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;

}

.view-profile-btn a {
    text-decoration: none;
}

.team-discover-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
    margin-top: auto;
}

/* The animated border */
.team-discover-link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border: 1.5px solid rgba(140, 240, 215, 0.7);
    background-color: #23bcbe1f;
    box-sizing: border-box;
    transition: width 0.4s ease-in-out;
}

/* Arrow inside the box */
.team-discover-link .arrow {
    position: absolute;
    top: 46%;
    left: 27.5px;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s ease-in-out;
}

.team-discover-link .text {
    margin-left: 40px;
    transition: transform 0.4s ease-in-out;
}

.team-discover-link:hover::before {
    width: 100%;
}

.team-discover-link:hover .text {
    transform: translateX(10px);
}

.team-member {
    height: 100%;
}

.member-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.view-profile-btn {
    margin-top: auto;
    /* Pushes the button to the bottom of the stretched box */
}

/* Why Choose Us Section */
.why-choose-us {
    background: url(../images/background-images/navybackground.webp);
    padding: 100px 0px;
}

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

.intro-box {
    grid-area: intro;
    align-self: center;
}

.feature-card1 {
    grid-area: card1;
}

.feature-card2 {
    grid-area: card2;
}

.feature-card3 {
    grid-area: card3;
}

.feature-card4 {
    grid-area: card4;
}

.feature-card5 {
    grid-area: card5;
}

.feature-card6 {
    grid-area: card6;
}

.headline-container h1 {
    font-family: var(--font-primary);
    color: var(--soft-cream);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;

}

.headline-container .subtitle {
    display: block;
    font-size: 28px;
    font-weight: 400;
    margin-top: 8px;
    letter-spacing: 0;
}

.feature-card1,
.feature-card2,
.feature-card3,
.feature-card4,
.feature-card5,
.feature-card6 {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    height: 100%;
    background-color: #1a294d;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.feature-card__image {
    width: 100%;
    height: 100%;
    background-position: center top 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.4s ease-out;
}

.feature-card1:hover,
.feature-card2:hover,
.feature-card3:hover,
.feature-card4:hover,
.feature-card5:hover,
.feature-card6:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
}


.feature-card1 .feature-card__overlay,
.feature-card2 .feature-card__overlay,
.feature-card4 .feature-card__overlay,
.feature-card5 .feature-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card3 .feature-card__overlay,
.feature-card6 .feature-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 24px;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card1:hover .feature-card__overlay,
.feature-card2:hover .feature-card__overlay,
.feature-card3:hover .feature-card__overlay,
.feature-card4:hover .feature-card__overlay,
.feature-card5:hover .feature-card__overlay,
.feature-card6:hover .feature-card__overlay {
    height: 100%;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
}

.feature-card1:hover .feature-card__category,
.feature-card2:hover .feature-card__category,
.feature-card3:hover .feature-card__category,
.feature-card4:hover .feature-card__category,
.feature-card5:hover .feature-card__category,
.feature-card6:hover .feature-card__category {
    color: #333;
}

.feature-card__category {
    font-weight: 500;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 4px 0 12px 0;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.feature-card__description {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
}

.feature-card__content--hidden {
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, max-height 0.4s ease, transform 0.3s ease;
}

/* --- Hidden Content Styles for ALL 8 Cards --- */
.feature-card1:hover .feature-card__content--hidden,
.feature-card2:hover .feature-card__content--hidden,
.feature-card3:hover .feature-card__content--hidden,
.feature-card4:hover .feature-card__content--hidden,
.feature-card5:hover .feature-card__content--hidden,
.feature-card6:hover .feature-card__content--hidden {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Our Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.process-card {
    width: 289px;
    padding: 20px 10px;
    border-radius: 21px;
    background: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.process-number {
    width: 60px;
    height: 60px;
    background: #409388;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    background: #0c3939;
    transform: scale(1.1);
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.process-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Ongoing Support Card */
.ongoing-support-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    background: linear-gradient(135deg, #0f6f6f, #39a493);
    color: white;
}

.ongoing-support-card .process-number {
    background: rgba(255, 255, 255, 0.2);
}

.ongoing-support-card:hover .process-number {
    background: rgba(255, 255, 255, 0.3);
}

.ongoing-support-card .process-title,
.ongoing-support-card .process-description {
    color: white;
}

/* Call to action Section */
.call_to_action_section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.background_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.main_content_wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.text_content_area {
    color: var(--deep-navy);
}

.primary_heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 24px;
    letter-spacing: -0.02em;
}

.call_to_action_section .view-profile-btn {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: start;
}

.visual_content_area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    width: 500px;
    height: 500px;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 8s infinite alternate;
    animation-play-state: paused;
}

.slider-slide.active .slider-image {
    animation-play-state: running;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) rotate(0deg) translateX(0);
    }

    100% {
        transform: scale(1.15) rotate(1deg) translateX(-10px);
    }
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(4, 132, 119, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ffffff;
    width: 30px;
    border-radius: 10px;
}

/* Footer */
.footer {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-rows: auto;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}

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

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

.company-info a {
    color: var(--charcoal-gray);
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: var(--teal-blue);
}

.contact-info- a {
    color: var(--charcoal-gray);
    transition: color 0.3s ease;
}

.contact-info- a:hover {
    color: var(--teal-blue);
}


.footer-icon {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.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: 185px;
    aspect-ratio: 141/70;
}


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

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

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

.footer-section ul li a {
    color: var(--charcoal-gray);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-style: normal;
    line-height: normal;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--teal-blue);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1rem 1rem;
    text-align: center;
    font-size: 14px;
    color: #666;
}

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

.copyright {
    margin: 0;
    opacity: 0.8;
}

.footer-content h4 {
    color: var(--charcoal-gray);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

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

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

.linklike {
    text-decoration: none;
    cursor: pointer;
}

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

.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 #ffffff;
    border-radius: 40px;
    font-size: 15px;
    box-sizing: border-box;
}

.newsletter-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 12px rgba(150, 214, 207, 0.6);
}

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

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

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

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

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2A9D8F;
    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 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

@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;
    }
}

/* Mobile (till 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-template-columns: 1fr;
    }

    .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;
    }

    .newsletter-form {
        width: 100%;
        max-width: 300px;
    }

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .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;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 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;
    }
}

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

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

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #cfb043;
    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;
}

.scroll-to-top:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

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

/* Breadcrumb */
.title-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: #0dcfd2;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #058d90;
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* =============================================
   1. Cookie Banner (Bottom Pop-up)
   =============================================
*/
#cookie-banner {
    position: fixed;
    inset: auto 20px 20px 20px;
    background: var(--deep-navy);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    border-radius: 8px;
    max-width: 520px;
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
}

#cookie-banner p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: var(--soft-cream);
}

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

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

#cookie-banner .actions button {
    padding: 10px 20px;
    border: 1px solid var(--slate-gray);
    background-color: transparent;
    color: var(--white);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    font-family: var(--font-secondary);
    transition: all 0.2s ease-in-out;
}

#cookie-banner .actions button#cb-accept {
    background-color: var(--teal-blue);
    border-color: var(--teal-blue);
    color: var(--white);
}

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

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

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

#cookie-modal form {
    margin: 0;
    background: var(--soft-cream);
    color: var(--charcoal-gray);
    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(--deep-navy);
}

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

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

#cookie-modal label:hover {
    background-color: #f8f9fa;
}

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

#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(--slate-gray);
    color: var(--slate-gray);
}

#cookie-modal .actions button#cp-save:hover {
    background-color: var(--slate-gray);
    color: var(--white);
}

#cookie-modal .actions button#cp-accept-all {
    background-color: var(--teal-blue);
    color: var(--white);
    border-color: var(--teal-blue);
}

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

#cookie-modal .intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: -15px 0 25px 0;
}

#cookie-modal .intro-text a {
    color: var(--teal-blue);
    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(--charcoal-gray);
    margin-left: 12px;
}

#cookie-modal .cookie-description {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-gray);
    line-height: 1.5;
    margin-left: 36px;
}

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

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

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

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

    .hero-content .service-tags {
        justify-content: center;
    }

    .nav-right {
        gap: 10px;
    }

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

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

@media (max-width: 1100px) {

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

    .nav-right .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;
    }

    .stats-wrapper {
        flex-wrap: wrap;
        gap: 50px 60px;
        padding: 20px 0;
    }

    .stat-item {
        font-size: 15px;
        font-weight: 600;
    }

    .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;
    }

}

@media (max-width: 576px) {
    .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;
    }
    
.headline-container h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;

}
}

@media (max-width: 768px) {

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

    .navbar {
        padding: 10px 20px;
    }

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

    .stats-wrapper {
        gap: 40px;
        flex-wrap: wrap;
        padding: 20px 0;
    }

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

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

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

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

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

    .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: 60px 15px;
    }

    .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-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
    }

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

    .footer-section {
        width: 100%;
    }

    .company-section>div,
    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .logo img {
        width: 130px;
    }

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

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

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

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

    .stats-wrapper {
        flex-direction: column;
        gap: 25px;
    }

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

}