/* 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: #1D293D;
    background-color: #ffffff;
    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;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(29, 41, 61, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(29, 41, 61, 0.1);
}

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

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: #1D293D;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

/* Legacy support for old h2 selector */
.nav-logo h2 {
    color: #1D293D;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(29, 41, 61, 0.6);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #1D293D;
    background-color: rgba(29, 41, 61, 0.05);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background-color: #0FA0F5;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-store {
    background-color: #0FA0F5 !important;
    color: white !important;
    border: none !important;
    padding: 6px 15px !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-store:hover {
    background-color: #0d8cd1;
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #1D293D;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0 0px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

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

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1D293D;
}

.hero-description {
    font-size: 1rem;
    color: #1D293D;
    opacity: 0.7;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

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

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

.btn-primary {
    background-color: #0FA0F5;
    color: white;
    box-shadow: 0 2px 8px rgba(15, 160, 245, 0.3);
}

.btn-primary:hover {
    background-color: #0d8cd1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 160, 245, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #1D293D;
    border: 1px solid rgba(29, 41, 61, 0.3);
}

.btn-secondary:hover {
    background-color: #f8fafb;
    border-color: #1D293D;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
}



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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1D293D;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #1D293D;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Areas of Work specific header styling */
.areas-of-work .section-header {
    text-align: left;
}

.areas-of-work .section-title {
    font-size: 1.5rem;
}

.areas-of-work .section-subtitle {
    margin: 0;
    max-width: none;
    font-size: 0.95rem;
}

/* Our Project Section */
.our-project {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.project-text {
    max-width: 100%;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D293D;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #1D293D;
    opacity: 0.8;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.project-features li {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #1D293D;
    opacity: 0.8;
    padding-left: 1rem;
    position: relative;
}

.project-features li::before {
    content: '•';
    color: #0FA0F5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.project-button {
    margin-top: 2rem;
}

.project-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
    border-radius: 12px;
    border: 2px dashed rgba(15, 160, 245, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    filter: blur(2px);
    opacity: 0.7;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    position: absolute;
    opacity: 0.8;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1D293D;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 160, 245, 0.2);
    position: relative;
    z-index: 3;
}

.store-icon {
    background: linear-gradient(135deg, #0FA0F5, #3BB3FF);
    animation: float 3s ease-in-out infinite;
    top: 20%;
    left: 15%;
}

.cart-icon {
    background: linear-gradient(135deg, #0d8cd1, #0FA0F5);
    animation: float 3s ease-in-out infinite 0.5s;
    top: 15%;
    right: 20%;
}

.analytics-icon {
    background: linear-gradient(135deg, #0a7bb8, #0d8cd1);
    animation: float 3s ease-in-out infinite 1s;
    bottom: 25%;
    left: 20%;
}

.mobile-store-icon {
    background: linear-gradient(135deg, #0A3D0F, #0a7bb8);
    animation: float 3s ease-in-out infinite 1.5s;
    bottom: 20%;
    right: 15%;
}

/* About Us Section */
.about-us {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-header {
    margin-bottom: 3rem;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D293D;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1D293D;
    opacity: 0.8;
    max-width: 800px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(29, 41, 61, 0.08);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D293D;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #1D293D;
    opacity: 0.8;
}

/* Areas of Work Section */
.areas-of-work {
    background-color: #ffffff;
    padding-top: 40px;
    scroll-margin-top: 80px;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(29, 41, 61, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 41, 61, 0.1);
    border-color: rgba(15, 160, 245, 0.2);
}

.area-icon {
    margin-bottom: 1.5rem;
    color: #0FA0F5;
}

.area-icon svg {
    width: 32px;
    height: 32px;
}

.area-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D293D;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.area-description {
    color: #1D293D;
    opacity: 0.7;
    line-height: 1.4;
    font-size: 0.85rem;
}

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

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D293D;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1D293D;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

/* Quick Contact Info */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0;
}

.quick-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #fafbfc;
    border-radius: 8px;
    border: 1px solid rgba(29, 41, 61, 0.08);
    min-height: 80px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 160, 245, 0.15);
    border-color: rgba(15, 160, 245, 0.2);
    background: #ffffff;
}

.quick-icon {
    width: 24px;
    height: 24px;
    color: #0FA0F5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-icon svg {
    width: 20px;
    height: 20px;
}

.quick-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.quick-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1D293D;
    opacity: 0.7;
}

.quick-value {
    font-size: 0.9rem;
    color: #1D293D;
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
}

.quick-divider {
    display: none;
}

/* Additional Contact Numbers */
.additional-contacts {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(29, 41, 61, 0.1);
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.numbers-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1D293D;
    opacity: 0.7;
}

.numbers-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.number-item {
    font-size: 0.9rem;
    color: #0FA0F5;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(15, 160, 245, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.number-item:hover {
    transform: translateY(-2px);
    background: rgba(15, 160, 245, 0.2);
    box-shadow: 0 4px 12px rgba(15, 160, 245, 0.2);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 100%;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field textarea {
    padding: 14px 16px;
    border: 1px solid rgba(29, 41, 61, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1D293D;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0FA0F5;
    box-shadow: 0 0 0 2px rgba(15, 160, 245, 0.1);
}

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

.btn-send {
    align-self: flex-start;
    padding: 12px 32px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Map Styles */
.map-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(29, 41, 61, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(29, 41, 61, 0.1);
}

.map-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1D293D;
    margin: 0 0 0.5rem 0;
}

.map-subtitle {
    font-size: 0.9rem;
    color: #1D293D;
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer {
    padding: 1rem 1.5rem;
    background: #fafbfc;
    border-top: 1px solid rgba(29, 41, 61, 0.08);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0FA0F5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.map-link:hover {
    color: #0d8cd1;
    transform: translateX(2px);
}

.map-link svg {
    width: 16px;
    height: 16px;
}


/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(29, 41, 61, 0.1);
    padding: 1.5rem 0;
}

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

.footer-left p,
.footer-right p {
    font-size: 0.85rem;
    color: #1D293D;
    opacity: 0.6;
    margin: 0;
}

.footer-right p {
    text-align: right;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Shimmer Effect */
.footer-right p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15, 160, 245, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.footer-right p:hover::before {
    left: 100%;
}

.footer-right p:hover {
    color: #0FA0F5;
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-image {
        height: 32px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 150px 0 0px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

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

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

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

    .project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .contact-quick {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-item {
        padding: 1rem 1.25rem;
        min-height: 70px;
    }

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

    .numbers-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-wrapper {
        height: 300px;
    }

    .map-header {
        padding: 1rem;
    }

    .map-footer {
        padding: 0.75rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-right p {
        text-align: center;
    }

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

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .area-card,
    .contact-form {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

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

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
