298298 .faq-question : hover {
299299 background-color : # 0056b3 ;
300300 }
301+
302+ .carousel {
303+ position : relative;
304+ max-width : 500px ;
305+ margin : 20px auto;
306+ overflow : hidden;
307+ border-radius : 8px ;
308+ box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.1 );
309+ }
310+
311+ .carousel-inner {
312+ display : flex;
313+ transition : transform 0.5s ease-in-out;
314+ }
315+
316+ .carousel-item {
317+ min-width : 100% ;
318+ box-sizing : border-box;
319+ }
320+
321+ .carousel-item img {
322+ width : 100% ;
323+ height : auto;
324+ }
325+
326+ .carousel-controls {
327+ position : absolute;
328+ top : 90% ;
329+ width : 100% ;
330+ display : flex;
331+ justify-content : space-between;
332+
333+ transform : translateY (-50% );
334+ }
335+
336+ .carousel-controls button {
337+ background : rgba (0 , 0 , 0 , 0.5 );
338+ border : none;
339+ color : # fff ;
340+ font-size : 18px ;
341+ padding : 10px ;
342+ cursor : pointer;
343+ }
344+
345+ .carousel-controls button : hover {
346+ background : rgba (0 , 0 , 0 , 0.8 );
347+ }
348+
301349 </ style >
302350</ head >
303351
@@ -382,6 +430,41 @@ <h1>Prices</h1>
382430 < p style ="color: #121212; padding-left: 10%; "> < b > Prices of all services are quoted on a case by case basis depending on the scale.</ b > </ p >
383431 < p style ="color: #121212; padding-left: 10%; "> < b > Minimum: < i > EUR 1,600</ i > </ b > </ p >
384432 < hr >
433+ < div class ="section ">
434+ < h2 > Certified By</ h2 >
435+ < div class ="carousel ">
436+ < div class ="carousel-inner " id ="carouselInner ">
437+ < div class ="carousel-item ">
438+ < img src ="oracle-logo.png " alt ="Client 1 Logo ">
439+ </ div >
440+ < div class ="carousel-item ">
441+ < img src ="github-logo.png " alt ="Client 2 Logo ">
442+ </ div >
443+ < div class ="carousel-item ">
444+ < img src ="microsoft-logo.png " alt ="Client 2 Logo ">
445+ </ div >
446+ < div class ="carousel-item ">
447+ < img src ="isc2-logo.png " alt ="Client 2 Logo ">
448+ </ div >
449+ </ div >
450+ < div class ="carousel-controls ">
451+ < button onclick ="moveSlide(-1) "> <</ button >
452+ < button onclick ="moveSlide(1) "> ></ button >
453+ </ div >
454+ </ div >
455+ </ div >
456+
457+ < script >
458+ let currentSlide = 0 ;
459+
460+ function moveSlide ( direction ) {
461+ const carouselInner = document . getElementById ( 'carouselInner' ) ;
462+ const items = document . querySelectorAll ( '.carousel-item' ) ;
463+ currentSlide = ( currentSlide + direction + items . length ) % items . length ;
464+ carouselInner . style . transform = `translateX(-${ currentSlide * 100 } %)` ;
465+ }
466+ </ script >
467+ < hr >
385468 < div class ="faq-container ">
386469 < div class ="faq-item ">
387470 < div class ="faq-question "> What is escrow and how does it work?</ div >
@@ -711,4 +794,4 @@ <h2><b>To get in touch</b></h2>
711794
712795
713796
714- </ html >
797+ </ html >
0 commit comments