/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-arc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: linear-gradient(90deg, #6b7280 0%, #ec4899 50%, #1e40af 100%);
    border-radius: 50px 50px 0 0;
    opacity: 0.3;
    z-index: 1;
}

.mountain-peak {
    position: absolute;
    bottom: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    z-index: 2;
}

.peak-left {
    left: 2px;
    border-bottom: 18px solid #6b7280;
}

.peak-center {
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 22px solid #ec4899;
    position: relative;
}

.peak-right {
    right: 2px;
    border-bottom: 16px solid #1e40af;
}

.human-figure {
    position: absolute;
    top: -8px;
    right: -2px;
    z-index: 3;
}

.human-figure .head {
    width: 4px;
    height: 4px;
    background: #374151;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

.human-figure .body {
    width: 2px;
    height: 6px;
    background: #374151;
    position: absolute;
    top: 4px;
    right: 1px;
}

.wavy-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 50%, #60a5fa 100%);
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.logo-text h2 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 400;
    display: block;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px; 
    transition: 0.3s, color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    background-color:#c70073;
    color: #ffff;
}

.nav-menu a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    /* background: #2563eb; */
    /* transition: width 0.3s ease; */
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* background-color: #C70073; */
    background: linear-gradient(135deg, hsl(325, 94%, 19%) 0%, #C70073 50%, #c08a8a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

.hero-geometric-shapes {
    position: absolute;
    top: -20px;
    right: -50px;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-triangle {
    top: 20px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #fbbf24;
    animation-delay: 0s;
}

.shape-diamond {
    top: 60px;
    right: 80px;
    width: 20px;
    height: 20px;
    background: #fbbf24;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-rectangle {
    top: 100px;
    right: 20px;
    width: 30px;
    height: 15px;
    background: #fbbf24;
    animation-delay: 4s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: #C70073;
    color: white;
    border: none;
}

.btn-primary:hover {
    /* background: linear-gradient(135deg, #1e40af, #2563eb); */
    background-color: rgb(250, 204, 204);
    transform: translateY(-2px);
    color: black;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color:black;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    /* background: rgba(255, 255, 255, 0.1); */
     background-color: rgb(250, 204, 204);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: black;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #fbbf24;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.shape-fill {
    fill: #ffffff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
}

.values-section h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(250, 204, 204);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: white;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.sector-section h3,
.needs-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.sector-section p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sector-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    /* text-align: center; */
    transition: all 0.3s ease;
     display: flex;
    align-items: center;
    gap: 1rem;
}

.sector-item:hover {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */

    background-color: rgb(250, 204, 204);
    color: black;
    transform: translateY(-3px);
}

.sector-item i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.sector-item:hover i {
    color: white;
}

.sector-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.needs-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.need-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.need-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.need-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.need-icon i {
    font-size: 1.5rem;
    color: white;
}

.need-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.need-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Differentiators */
.differentiators {
    margin-top: 4rem;
}

.differentiators h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.differentiator-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-3px);
}

.differentiator-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    width: 40px;
    text-align: center;
}

.differentiator-item span {
    font-weight: 500;
    color: #374151;
}

.products {
    padding: 6rem 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-header {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    color: black;
    padding: 2rem;
    text-align: center;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-icon i {
    font-size: 2.5rem;
}

.product-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.product-content {
    padding: 2rem;
}

.product-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.product-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.product-highlights h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.product-highlights ul {
    list-style: none;
    padding-left: 0;
}

.product-highlights li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.product-highlights li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Technology Section */
.technology {
    padding: 6rem 0;
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-highlight {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    color: black;
    transform: translateX(5px);
}

.tech-feature i {
    font-size: 1.5rem;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.tech-feature:hover i {
    color: white;
}

.tech-quote {
    font-size: 1.1rem;
    color: #1f2937;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.tech-circle {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.tech-node {
    position: absolute;
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #2563eb, #3b82f6); */

    background-color: rgb(250, 204, 204);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.tech-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-node:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.tech-node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.tech-node:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
.tech-node:nth-child(5) { top: 25%; left: 25%; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Leadership Section */
.leadership {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.founder-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.founder-image {
    margin-bottom: 2rem;
    text-align: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    border: 4px solid white;
}

.founder-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.founder-title {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.founder-highlights h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.founder-highlights ul {
    list-style: none;
    text-align: left;
}

.founder-highlights li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.founder-highlights li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: white;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-description {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.team-qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quality-item:hover {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    color: black;
    transform: translateY(-3px);
}

.quality-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.quality-item:hover i {
    color: white;
}

.quality-item span {
    font-weight: 500;
}

.team-quote {
    font-size: 1.3rem;
    color: #1f2937;
    font-style: italic;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.partners-content {
    margin-top: 3rem;
}

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

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    width: 100%;
    height: 100%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    /* padding: 1rem; */
}

.partner-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #1e3a8a;
    width: 30px;
    text-align: center;
}

.contact-item span {
    color: #374151;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 30px;
}

.footer-logo .logo-arc {
    height: 30px;
}

.footer-logo .mountain-peak {
    bottom: 6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.footer-logo .peak-left {
    left: 1px;
    border-bottom: 15px solid #6b7280;
}

.footer-logo .peak-center {
    border-bottom: 18px solid #ec4899;
}

.footer-logo .peak-right {
    right: 1px;
    border-bottom: 13px solid #1e40af;
}

.footer-logo .human-figure {
    top: -6px;
    right: -1px;
}

.footer-logo .human-figure .head {
    width: 3px;
    height: 3px;
}

.footer-logo .human-figure .body {
    width: 1.5px;
    height: 5px;
    top: 3px;
    right: 0.75px;
}

.footer-logo .wavy-base {
    height: 6px;
}

.footer-logo .logo-text h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.footer-logo .logo-text span {
    color: #d1d5db;
    font-size: 0.6rem;
    font-weight: 400;
    display: block;
    margin-top: 0.2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .solutions-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .team-qualities {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-card,
    .value-item,
    .product-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Chatbot Styles */
.chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
     background-color: rgb(250, 204, 204);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.chatbot-toggle i {
    color: white;
    font-size: 1.5rem;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.3s ease;
}

.chatbot-container.active {
    display: flex;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
     background-color: rgb(250, 204, 204);
    color: black;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar i {
    font-size: 1.2rem;
}

.chatbot-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.chatbot-info p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

.chatbot-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    gap: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.chatbot-message.user {
    flex-direction: row-reverse;
}

.chatbot-message.user .message-content {
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.chatbot-message.bot .message-content {
    background: #f3f4f6;
    color: #374151;
    border-radius: 18px 18px 18px 4px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user .message-avatar {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.bot .message-avatar {
    background: #6b7280;
    color: white;
}

.message-avatar i {
    font-size: 0.8rem;
}

.message-content {
    padding: 0.75rem 1rem;
    max-width: 80%;
    word-wrap: break-word;
    line-height: 1.4;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-reply {
    background: #e5e7eb;
    color: #374151;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    transform: translateY(-2px);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #c70073;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
    background-color: rgb(250, 204, 204);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    /* background: linear-gradient(135deg, #1e40af, #2563eb); */

    background-color: rgb(250, 204, 204);
    transform: scale(1.1);
}

.chatbot-input button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-radius: 18px 18px 18px 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        right: -20px;
        height: 400px;
    }
    
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-toggle i {
        font-size: 1.2rem;
    }
} 