diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index b366465..84596fe 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -240,11 +240,13 @@ Responsive Codes background: #FFF1FC; } /* homepage service section css */ -.services-section{ +.services-section, +.blog-section{ padding: 3rem 6rem; } .services-section .row, -.why-us-section .row{ +.why-us-section .row, +.testimonials-section .row{ display: flex; align-items: center; } @@ -261,11 +263,13 @@ Responsive Codes .services-content p{ margin-bottom: 45px; } -.services-slick .slick-dots li.slick-active button:before{ +.services-slick .slick-dots li.slick-active button:before, +.review-cards .slick-dots li.slick-active button:before{ color: #E22899 !important; border: 2px solid #E22899; } -.services-slick .slick-dots li button:before{ +.services-slick .slick-dots li button:before, +.review-cards .slick-dots li button:before{ font-size: 12px; line-height: 16px; top: 20px; @@ -317,24 +321,195 @@ Responsive Codes .why-us-section{ padding: 3rem 6rem; background: #EBF3FF; + position: relative; +} +.why-us-section::before{ + position: absolute; + content: url('../images/australia-map.png'); + left: 3%; + top: -22%; } .why-us-lists{ display: flex; gap: 2rem; } -.why-us-desc h1{ +.why-us-desc h1, +.testimonials-desc h1, +.blog-header h1{ font-weight: 600; font-size: 44px; - line-height: 66px; + line-height: 54px; align-items: center; + margin-bottom: 1.4rem; color: #296AC7; } -.why-us-desc p{ +.why-us-img{ + padding: 5rem 5rem 5rem 0; +} +.why-us-desc p, +.testimonials-desc p{ font-weight: 400; font-size: 16px; line-height: 24px; + margin-bottom: 2.8rem; color: #1E1C1C; } +/* testimonials section css */ +.testimonials-section{ + padding: 2rem 6rem; + background: url('../images/testibg.png'); + background-repeat: no-repeat; + background-size: cover; +} +.testimonials-desc{ + margin-right: 4rem; +} +.testimonials-desc a{ + background: #D833A2; + border-radius: 25px; + padding: 10px 20px; + text-decoration: none; + color: #FFFFFF; +} + /* review card */ + .quote-icon{ + position: absolute; + background-color: #E22899; + padding: 12px; + display: inline-flex; + border-radius: 50%; + bottom: 0; + right: 0; + } + .review-profile{ + position: relative; + width: 100px; + } + .review-profile img{ + border-radius: 50%; + } + .review-cards{ + display: flex; + gap: 20px; + } + .review-card{ + min-height: 25pc; + margin: 0 10px; + padding: 20px; + gap: 20px; + display: flex; + flex-direction: column; + text-align: center; + align-items: center; + justify-content: space-between; + background: #FFFFFF; + box-shadow: 0px 1px 20px rgba(121, 120, 120, 0.06); + border-radius: 8px; + position: relative; + } + .review-title h1{ + font-weight: 600; + font-size: 32px; + line-height: 48px; + color: #1E1C1C; + } + .review-title p{ + font-weight: 600; + font-size: 22px; + line-height: 24px; + color: #1E1C1C; + } + .review-detail h4{ + font-weight: 600; + font-size: 20px; + line-height: 24px; + color: #1E1C1C; + } + .review-detail h6{ + display: inline-block; + } + .review-detail h6::after{ + content: ''; + border-bottom: 2px solid #E22899; + width: 80%; + margin: 10%; + justify-content: center; + display: block; + } + /* review card */ +/* blogs section css */ +.blog-header p{ + text-align: center; + padding: 0 30%; + line-height: 1.6rem; + margin-bottom: 2rem; +} +.blog-card{ + background: #FFFFFF; + box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05); + border-radius: 12px; + transition: .4s; +} +.blog-card:hover{ + transform: scale(1.03); +} +.blog-desc{ + padding: 20px; +} +.blog-desc h5{ + font-weight: 600; + font-size: 12px; + line-height: 1.6rem; + color: #BFBFBF; +} +.blog-desc h2{ + font-weight: 700; + font-size: 20px; + line-height: 1.8rem; + letter-spacing: 0.001em; + color: #000000; + transition: color 2s; +} +.blog-card:hover h2, +.blog-card:hover p{ + color: #326CBF; +} +.blog-desc p{ + font-weight: 400; + font-size: 15px; + line-height: 1.6rem; + color: #606161; + transition: color 2s; +} +.blog-img{ + position: relative; + width: 100%; +} +.blog-img img{ + border-radius: 12px 12px 0 0; +} +.blog-date{ + position: absolute; + right: 20px; + bottom: -35px; + display: inline-flex; + background: #326CBF; + border-radius: 50%; + padding: 20px 10px; + color: #FFF1FC; + border: 3px solid #7AA9EC; +} +.blog-date h5{ + font-weight: 700; + font-size: 15px; + line-height: 155.5%; + text-align: center; + color: #FFFFFF; + margin-bottom: 0; +} +/* blog ection css end */ + + /* Footer Css */ .footer{ background: #296AC7; @@ -370,7 +545,7 @@ Responsive Codes color: #FFFFFF; } /* subscribe css */ -.custom-search { +.final-content .custom-search { position: relative; width: 260px; } @@ -383,7 +558,7 @@ Responsive Codes box-sizing: border-box; outline: none; } -.custom-search-botton { +.final-content .custom-search-botton { position: absolute; right: 0; top: 0; diff --git a/public/frontend/icons/quote.svg b/public/frontend/icons/quote.svg new file mode 100644 index 0000000..ab4b936 --- /dev/null +++ b/public/frontend/icons/quote.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/frontend/images/australia-map.png b/public/frontend/images/australia-map.png new file mode 100644 index 0000000..5cf5f8b Binary files /dev/null and b/public/frontend/images/australia-map.png differ diff --git a/public/frontend/images/opera-house.png b/public/frontend/images/opera-house.png new file mode 100644 index 0000000..7078781 Binary files /dev/null and b/public/frontend/images/opera-house.png differ diff --git a/public/frontend/images/passport-img.png b/public/frontend/images/passport-img.png new file mode 100644 index 0000000..182f276 Binary files /dev/null and b/public/frontend/images/passport-img.png differ diff --git a/public/frontend/images/pexels-andrea-piacquadio.png b/public/frontend/images/pexels-andrea-piacquadio.png new file mode 100644 index 0000000..5782dfc Binary files /dev/null and b/public/frontend/images/pexels-andrea-piacquadio.png differ diff --git a/public/frontend/images/testibg.png b/public/frontend/images/testibg.png new file mode 100644 index 0000000..b2be1e1 Binary files /dev/null and b/public/frontend/images/testibg.png differ diff --git a/public/frontend/images/user.png b/public/frontend/images/user.png new file mode 100644 index 0000000..badd924 Binary files /dev/null and b/public/frontend/images/user.png differ diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 09012ff..5ba712d 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -118,7 +118,7 @@
- +
@@ -147,45 +147,173 @@
- +
+
+
+
+

Words from Our Happy Customers

+

We believe customer satisfaction is a great compliment so we always work hard to achieve your success.

+ View More +
+
+
+
+
+
+
+
+ +
+ +
+
+
+

The best, if not, one the best education and visa service providers for Australia along with expert, qualified and friendly staff.

+
+
+

Sujita Bhandari

+
Scholars, MIT
+
+
+
+
+
+
+ +
+ +
+
+
+

The best, if not, one the best education and visa service providers for Australia along with expert, qualified and friendly staff.

+
+
+

Sujita Bhandari

+
Scholars, MIT
+
+
+
+
+
+
+ +
+ +
+
+
+

The best, if not, one the best education and visa service providers for Australia along with expert, qualified and friendly staff.

+
+
+

Sujita Bhandari

+
Scholars, MIT
+
+
+
+
+
+
+
+
+
+
+

Recent Blogs

+

Get the updates about moving to Australia with the right guidance and information from our experts.

+
+
+ + + +
+
@endsection @section('script') @endsection \ No newline at end of file