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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #262626;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.875rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.logo img {
    width: 255px;
    height: auto;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ff6b35;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text h1 {
    font-size: 1.125rem;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #262626;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6b35;
}

.cta-button {
    display: none;
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
    }
}

button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a24;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.btn-outline {
    border: 2px solid #262626;
    background-color: transparent;
    color: #262626;
}

.btn-outline:hover {
    background-color: #262626;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #262626;
}

.hero-content .highlight {
    color: #ff6b35;
    display: block;
    margin-top: 0.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: #888;
    margin: 2rem auto;
    max-width: 40rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero-features {
        flex-direction: row;
        justify-content: center;
    }
}

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

.feature-item .label {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.feature-item .desc {
    font-size: 0.875rem;
    color: #888;
}

.hero-divider {
    display: none;
}

@media (min-width: 640px) {
    .hero-divider {
        display: block;
        width: 1px;
        background-color: #e0e0e0;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-cta button {
    padding: 1.5rem 2rem;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-check {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.875rem;
    color: #888;
}

.about-visual {
   
    border-radius: 0.5rem;
    padding:0;
   
}

.about-visual-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.about-visual-icon {
    width: 6rem;
    height: 6rem;
    background-color: #ff6b35;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

/* Intelligence Section */
.intelligence {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #888;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.intelligence-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.intelligence-item.reverse {
    direction: rtl;
}

.intelligence-item.reverse > * {
    direction: ltr;
}

@media (min-width: 768px) {
    .intelligence-item,
    .intelligence-item.reverse {
        grid-template-columns: 1fr 1fr;
    }
}

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

.intelligence-content h3 {
    margin-bottom: 1rem;
}

.intelligence-content p {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    gap: 1rem;
}

.service-icon {
    color: #ff6b35;
    flex-shrink: 0;
}

.service-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.service-content p {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

/* Methodology Section */
.methodology {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.methodology-image {
    margin: 4rem 0;
    text-align: center;
}

.methodology-image img {
    max-width: 32rem;
    height: auto;
}

.methodology-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.step-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.75rem;
}

.step-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-card p {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

.integration-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 2rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.integration-item h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.integration-item p {
    font-size: 0.875rem;
    color: #888;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card-icon {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #888;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-container {
    max-width: 40rem;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #262626;
    font-size: 0.875rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

.checkbox-group a {
    color: #ff6b35;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #262626;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.text-muted {
    color: #888;
}

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

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}
