summaryrefslogtreecommitdiff
path: root/_site/assets/css/main.css
blob: 7d4962e3fec0b01f6a330c1e4a3200332d7ad6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
body,html {
    padding: 0;
    margin: 0;
    background-color: #eee;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

#Main {
    max-width: 1000px;
    width: 100%;
    background-color: white;
    margin: 0 auto;
}

.navBar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navBar li {
    margin: 0;
    padding: 0;
}

img.logo {
    width: 178px;
    height: 60px;
}

.navBar ul li {
    display: inline-block;
}


.navBar ul li a {
    text-decoration: none;
    padding: 10px 15px;
    color: gray;
}

.navBar ul li a:hover {
    text-decoration: underline;
}

#heroImage {
    background-image: url('/assets/images/code-ga774fc2f1_1920.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: white;
    text-align: center;
    
}

#heroImage h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

#heroImage p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#heroImage a {
    color: white;
    padding: 10px 15px;
    border: 1px solid;
    background-color: rgba(16, 16, 232, 0.722);
    display: inline-block;
    border-radius: 4px;
}

#mainContent {
    margin: 10px 20px;
}

#mainContent h2 {
    text-align: center;
}

#blog ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

#blog ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 320px;
}

#blog img {
    width: 100%;
    height: auto;
    border-radius: 1em;
}

#our-work ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

#our-work ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 320px;
}

#our-work ul li img {
    width: 100%;
    height: auto;
    border-radius: 1em;
}

/* Blog post container links */
#blog ul li a {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
    background-color: #fff;
}

/* Hover effect for card lift */
#blog ul li a:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Blog post title */
#blog ul li h3 {
    font-size: 1.25em;
    margin: 10px 15px 5px 15px;
    color: #333;
    /* transition: color 0.2s ease; */
}

/* Blog post date */
.post-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
  }

/* Change title color on hover for visual feedback */
#blog ul li a:hover h3 {
    color: #0d47a1; /* deep brand blue, adjust as needed */
}

/* Blog description */
#blog ul li p {
    font-size: 0.95em;
    margin: 0 15px 15px 15px;
    color: #666;
    line-height: 1.4;
}

#solutions p { text-align: center; }

/* Blog Article Page */

#Blog {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

#Blog .featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px;
}

/* Article title */
#Blog h1 {
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Article text */
#Blog p {
    line-height: 1.7;
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

footer {
    width: 100%;
    background-color: #fff;
    text-align: center;
    color: #9f9f9f;
}

footer a {
    color: #444;
    text-decoration: none;
}

footer a:hover {
    color: #666;
    text-decoration: underline;
}

/* Mobile Styles */

.hamburger {
    display: none; /* hidden by default */
    font-size: 30px;
    cursor: pointer;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .navBar ul {
        display: none; /* hide nav links initially on mobile */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .navBar ul.show {
        display: flex; /* show when toggled */
    }

    .navBar ul li {
        display: block;
    }
}

@media (max-width: 600px) {
    #heroImage {
        padding: 50px 10px;
    }
    .navBar ul {
        flex-direction: column;
    }
    .navBar ul li {
        display: block;
        text-align: center;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #Blog {
        margin: 20px auto;
        padding: 0 10px;
    }

    #Blog h1 {
        font-size: 1.5em;
    }

    #Blog p {
        font-size: 1em;
    }
}