/* Global styles from head */
body {
    font-family: 'ABeeZee', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 0.875rem; /* 14px instead of 16px */
}

h1, h2, h3, .nav-title {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.8px;
    font-weight: 300; /* Using the lighter weight */
    text-transform: uppercase;
}

/* Adjust specific heading sizes to appear less bold */
h1 {
    font-size: 2.25rem; /* Slightly smaller */
    letter-spacing: 1.5px; /* More spacing between letters */
}

h2 {
    font-size: 1.75rem;
    letter-spacing: 1.2px;
}

h3 {
    font-size: 1.25rem;
    letter-spacing: 1px;
}
/* General section styling */
.section {
    padding: 2.5rem 0;
}
/* Card styling and hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ScrollMagic Animation Base Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

/* Parallax base styles */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Increased height for parallax range */
    z-index: -1;
    background-size: cover;
    background-position: center;
}

/* Styles from Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #172554 0%, #1e3a8a 100%); /* Original gradient */
    color: white; /* Added from head styles */
    overflow: hidden;
}
.binary-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Inline styles like object-fit, opacity, mix-blend-mode remain on the img tag for simplicity */
}
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Styles from Services Section */
.products-section {
    background-image: url('../img/data-pattern.svg'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 200px;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    /* Base background color can be added if needed, e.g., from Tailwind class */
    background-color: #1e40af; /* From bg-blue-800 approx */
}
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(191, 219, 254, 0.5); /* blue-200 with lower opacity */
    z-index: 0;
}
.products-section .container {
    position: relative;
    z-index: 1;
}

/* Styles from Case Studies Section */
#case-studies {
    position: relative;
    background-color: #f8f9fa; /* Original background color */
    background-image: url('../img/case-study-pattern.svg'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px;
    background-position: center;
}

/* Styles from Why Choose Us Section */
.why-choose-us-section {
    background-image: url('../img/why-choose-us-bg.svg'); /* Adjusted path */
    background-size: cover;
    background-position: center;
    position: relative;
     /* Base background color can be added if needed, e.g., from Tailwind class */
    background-color: #eff6ff; /* From bg-blue-50 approx */
}
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.85); /* dark blue with opacity */
    z-index: 0;
}
.why-choose-us-section .container {
    position: relative;
    z-index: 1;
}

/* Styles from Contact Section */
#contact {
    position: relative;
    background-color: #34568B; /* More muted, sophisticated blue */
    background-image: url('../img/form-pattern.svg'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 200px;
    background-position: center;
    background-blend-mode: soft-light;
    color: white; /* Text color from section class */
} 