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

:root {
    --primary-silver: #f8f9fa;
    --primary-silver-dark: #e7eaee;
    --secondary-navy: #1a365d;
    --secondary-charcoal: #00163b;
    --accent-gold: #0059ff;
    --accent-gold-light: #f4e4b5;
    --text-dark: #000000;
    --text-light: #324c74;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans','Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-silver);
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    color: var(--secondary-navy);
    margin-bottom: var(--space-sm);
}
h1 {
    font-size: 2.5rem;
    font-weight: 500;
}
h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: var(--space-md);
}
h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0);
    box-shadow: none;
    z-index: 1000;
    transition: 0.3s ease;
  
}
.header.scrolled {
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-silver);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.header.scrolled .logo-text h1 {
    color: var(--secondary-navy);
}
.header.scrolled .nav-link {
    color: var(--secondary-navy);
}
.header.scrolled .btn-header {
    background-color: var(--secondary-charcoal);
}
.header.scrolled .btn-header:hover {
    background-color: var(--accent-gold);
}
.header.scrolled .nav-link.active {
    color: var(--accent-gold);
} 

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 100px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo {
    width: 60px;
    height: 60px;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-silver-dark);
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0 auto;
}

.nav-link {
    color: var(--primary-silver-dark);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--accent-gold);
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-navy);
    margin: 5px 0;
    transition: 0.3s ease;
}
.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--secondary-charcoal);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}
.btn-header {
    padding: 10px 28px;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.btn-header:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-1px);
}
.centering{
    display: flex;
    justify-content: center;   
    align-items: center;       
    gap: 12px;
}
 
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.hero:before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/company.jpg') center / cover no-repeat;
    filter: blur(3px);
    transform: scale(1.1); 
    z-index: -1;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.77);
    z-index: -1;
}
.hero.curved-bottom {
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}
.cta-hero {
    position: relative;
    padding: var(--space-xl) 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-hero:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/company.jpg') center / cover no-repeat;
    filter: blur(3px);
    transform: scale(1.1);
    z-index: -2;
}

.cta-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.77);
    z-index: -1;
}

.cta-hero .cta-content {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px;
}
.hero-content h1{
    padding-top: 50px;
}
.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}
.section {
    padding: var(--space-xl) 0;
    position: relative;
    background: var(--primary-silver);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
    margin-top: var(--space-md);
}

.section-header h2 {
    display: inline-block;
    margin-bottom: 0;
}
.image-placeholder{
    height: 300px; 
    background: linear-gradient(135deg, var(--primary-silver-dark), var(--white));
    border-radius: var(--radius-lg); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 1px 1px 1px 1px rgba(0, 47, 255, 0.45);
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--accent-gold);
}
.section-header p {
    max-width: 600px;
    margin: var(--space-md) auto;
    font-size: 1.125rem;
}
.goals-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-lg) 0;
    padding: 0;
}
.goals-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
.goals-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: var(--space-lg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

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

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: var(--space-lg);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
    text-align: center;
}

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

.team-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-silver-dark), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-navy);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: var(--space-lg);
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: var(--space-lg);
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--primary-silver-dark);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-navy), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card-content h4 {
    color: var(--secondary-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.contact-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    
}

.contact-card-content a {
    color: var(--secondary-charcoal);
    text-decoration: none;
    transition: 0.2s ease;
}

.contact-card-content a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-silver-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-gold);
}

.footer {
    background: var(--secondary-charcoal);
    color: var(--white);
    padding: var(--space-xl) 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo2 {
    border-radius: 15px;
    height: 140px;
    width: 180px;
}

.footer-logo h3{
    color: var(--primary-silver-dark);
}
.footer-logo p{
    color: var(--primary-silver-dark);
}

.footer-links h3,
.footer-services h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    font-size: 0.875rem;
}
.footer-bottom p{
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bg-silver-dark {
    background-color: var(--primary-silver-dark);
}

.bg-silver {
    background-color: var(--primary-silver);
}

.content-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.text-white {
    color: var(--white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.9);
}

.hero-page {
    min-height: 400px;
    padding-top: 100px;
}

.btn-gold {
    background-color: var(--accent-gold);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary-silver-dark);
}

.faq-item h4 {
    cursor: pointer;
}

.faq-item h4 i {
    margin-right: 10px;
    color: var(--accent-gold);
}

.faq-item p {
    display: none;
    margin-top: 15px;
}

.integration-benefits {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit h3 i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.highlight-box {
    background: var(--primary-silver-dark);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    border-left: 4px solid var(--accent-gold);
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.key-points-grid .point i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.vision-mission {
    margin-top: 60px;
}

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

.vision-card, .mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vision-card h3 i, .mission-card h3 i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.cta-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: center;
}

.cta-section-center {
    max-width: 600px;
    margin: 40px auto 0;
}

.cta-buttons-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.cta-buttons-flex .btn {
    margin: 0;
}

