diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index f0ec3fc..967907b 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -428,7 +428,8 @@ Responsive Codes .why-et, .blog-detail-section, .faq-section, -.student-visa-section{ +.student-visa-section, +.services-page-section{ padding: 3rem 6rem; } .services-section .row, @@ -441,7 +442,7 @@ Responsive Codes align-items: center; } .services-content{ - margin-right: 6rem; + margin-right: 2rem; } .services-content h1{ font-weight: 600; @@ -498,15 +499,23 @@ Responsive Codes box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); border-radius: 16px; } -.service-card a{ +.service-page-content{ + color: #000000; + text-align: center; + padding: 20px; +} +.service-card a, +.service-page-content span{ text-decoration: none; font-weight: 700; font-size: 16px; line-height: 24px; text-align: center; - color: #1E1C1C; } +.service-card a:hover{ + color: #E22899; +} .service-icon{ margin-bottom: 20px; } @@ -524,9 +533,10 @@ Responsive Codes top: -22%; } .why-us-lists{ - display: flex; + display: -webkit-inline-box; gap: 2rem; margin-bottom: 1rem; + padding-right: 6rem; } .why-us-desc h1, .testimonials-desc h1, @@ -549,11 +559,11 @@ Responsive Codes color: #1E1C1C; } .lists-icons{ - padding: 10px; width: 50px; height: 50px; display: flex; align-items: center; + justify-content: center; border-radius: 50%; background: #296AC7; } @@ -650,13 +660,15 @@ Responsive Codes line-height: 1.6rem; margin-bottom: 2rem; } -.blog-card{ +.blog-card, +.service-page-card{ background: #FFFFFF; box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05); border-radius: 12px; transition: .4s; } -.blog-card:hover{ +.blog-card:hover, +.service-page-card:hover{ transform: scale(1.03); } .blog-desc{ @@ -677,7 +689,9 @@ Responsive Codes transition: color 1.5s; } .blog-card:hover h2, -.blog-card:hover p{ +.blog-card:hover p, +.service-page-card:hover h2, +.service-page-card:hover p{ color: #E22899; } .blog-desc p{ @@ -1327,7 +1341,7 @@ Responsive Codes } /* blog detail css */ .blog-detail-img{ - margin-bottom: 15px; + margin: 15px 0; } .recent-card{ background: #DFEBFA; @@ -1456,6 +1470,44 @@ Responsive Codes display: flex; gap: 30px; } +.blog-info span{ + width: 6px; + height: 6px; + border-radius: 50%; + background: #676676; +} +.blog-info{ + display: flex; + align-items: center; + gap: 10px; +} +.blog-info h6{ + margin-bottom: 0; +} +.socials-icon{ + background: #EEEEEE; + border-radius: 50%; + width: 40px; + height: 40px; + text-decoration: none; + display: flex; + align-items: center; + justify-content: center; + transition: .4s; +} +.socials-icon .fa-facebook-f{ + color: #3B5998; +} +.socials-icon .fa-twitter{ + color: #1DA1F2; +} +.socials-icon .fa-linkedin-in{ + color: #0072B1; +} +.socials-icon:hover{ + background: #E22899; + transform: scale(1.03); +} .policy a{ color: #DD6227; text-decoration: none; @@ -1761,6 +1813,13 @@ Responsive Codes .et-cards{ grid-template-columns: 1fr 1fr; } + .blog-socials{ + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 10px; + margin: 10px 0; + } } /* mobile view css end */ /* ipad, tablets screen css */ diff --git a/public/frontend/icons/coin.svg b/public/frontend/icons/coin.svg new file mode 100644 index 0000000..d659363 --- /dev/null +++ b/public/frontend/icons/coin.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/frontend/icons/exclusive.svg b/public/frontend/icons/exclusive.svg new file mode 100644 index 0000000..0cea398 --- /dev/null +++ b/public/frontend/icons/exclusive.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/views/blog-detail.blade.php b/resources/views/blog-detail.blade.php index bda0181..00fc014 100644 --- a/resources/views/blog-detail.blade.php +++ b/resources/views/blog-detail.blade.php @@ -13,29 +13,33 @@
+

{{$blog->title}}

@php $date = Carbon\Carbon::createFromFormat('Y-m-d', $blog->publish_date);@endphp
-
{{$date->format('j M, Y')}}
+
+
{{$date->format('j M, Y')}}
+ +
5 min read
+
-

{{$blog->title}}

{!!$blog->description!!}
- +

Certified and Registered Counsellors

@@ -182,12 +165,11 @@
- +
-

Affordable Services for Wide Ranging Courses and Visa

-

Provide all the options available for your study or migration pathway conveniently and within reasonable amounts. -

+

Affordable Services for Wide Ranging Courses and Visa

+

Provide all the options available for your study or migration pathway conveniently and within reasonable amounts.

diff --git a/routes/web.php b/routes/web.php index 7b3a117..ba45576 100644 --- a/routes/web.php +++ b/routes/web.php @@ -286,9 +286,9 @@ Route::group(['middleware'=>['auth']],function (){ }); }); -// Route::get('/study-abroad', function () { -// return view('study-abroad'); -// }); +Route::get('/services', function () { + return view('services'); +}); // Route::get('/study-abroad-detail', function () { // return view('study-abroad-detail'); // });