diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index e7b1d1d..9493dcc 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -4,7 +4,6 @@ box-sizing: border-box; } body { - /* font-family: "DM Sans", sans-serif !important; */ overflow-x: hidden; } p{ @@ -307,8 +306,10 @@ Responsive Codes .about-header-section, .why-et, .student-visa-section, - -.why-et{ +.blogs-section, +.why-et, +.blog-detail-section, +.faq-section{ padding: 3rem 6rem; } .services-section .row, @@ -620,6 +621,9 @@ Responsive Codes text-decoration: none; color: #FFFFFF; } +.abroad-banner-section .breadcrumb-item.active{ + color: #FFFFFF; +} .studyabroad-banner-header{ position: absolute; margin-bottom: 0; @@ -637,13 +641,13 @@ Responsive Codes } .studyabroad-banner-header h5{ color: #FFFFFF; + text-align: center; } .study-australia-desc h1, .student-visa-section h1, .why-et-header h1, - .student-visa-section h1, - +.faq-section h1, .why-et-header h1{ font-weight: 700; font-size: 40px; @@ -673,7 +677,8 @@ Responsive Codes color: #296AC7; } .universities-card img, -.scholarship-img img{ +.scholarship-img img, +.blog-detail-img img{ border-radius: 8px; } .scholarship-img{ @@ -792,6 +797,12 @@ Responsive Codes box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15); border-radius: 12px; } +.form-sec .error{ + color: red; + float: left; + font-size: 12px; + margin: 10px 0; +} .form-sec .form-control::placeholder{ font-weight: 400; font-size: 14px; @@ -895,6 +906,7 @@ Responsive Codes .et-cards{ display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; + margin-top: 4rem; } .et-card{ display: flex; @@ -915,13 +927,15 @@ Responsive Codes } .lets-chat-section{ background: #E8F2FF; - padding: 3rem 6rem; + padding: 6rem; } .lets-chat-section h1{ text-align: center; } .lets-chat-section p{ text-align: center; + padding: 0 30%; + line-height: 1.7rem; margin-bottom: 35px; } .lets-chat-section a{ @@ -933,6 +947,45 @@ Responsive Codes border-radius: 6px; padding: 10px 40px; } +.our-values-section{ + padding: 3rem 6rem; + background: url('../images/our-values-background.jpg'); + background-repeat: no-repeat; + background-size: cover; +} +.our-values-section h1{ + text-align: center; + color: #326CBF; + margin-bottom: 45px; +} +.values-left p{ + color: #000000; + margin-bottom: 35px; +} +.values-lists a{ + text-decoration: none; + cursor: pointer; + padding: 20px 20px 20px 0; + line-height: 33px; + border-bottom: 1px solid #A0A0A0; +} +.values-lists h2{ + color: #296AC7; + font-weight: 500; + font-size: 22px; +} +.values-lists a:last-child{ + border-bottom: none; +} +.values-lists{ + display: flex; + flex-direction: column; + justify-content: space-between; + height: 100%; +} +.link-active h2{ + color: #E22899 !important; +} /* about us css ends */ .visa-table ul{ @@ -957,6 +1010,190 @@ Responsive Codes border-radius: 0 0 12px 12px; border-bottom: none; } + +/* blogs page css */ +.article-card{ + display: flex; + align-items: center; + gap: 20px; + width: 100%; +} +.related-articles{ + display: flex; + flex-direction: column; + gap: 30px; + height: 100%; +} +.article-img{ + width: 500px; +} +.featured-article img, +.article-img img{ + border-radius: 12px; +} +.featured-article h3{ + font-weight: 600; + font-size: 24px; + line-height: 36px; + color: #000000; + margin-top: 25px; +} +.featured-article h6, +.article-desc h6, +.blog-detail-desc h6{ + font-weight: 500; + font-size: 14px; + line-height: 21px; + color: #676676; +} +.featured-article h2, +.blog-detail-desc h2{ + font-weight: 700; + font-size: 30px; + line-height: 45px; + color: #296AC7; +} +.featured-article p, +.article-desc p{ + font-family: 'Poppins'; + font-style: normal; + font-weight: 400; + font-size: 15px; + margin-bottom: 25px; + color: #606161; +} +.featured-article a, +.article-desc a{ + padding: 10px 20px; + color: #FFFFFF; + text-decoration: none; + background: #E22899; + border-radius: 5px; +} +.article-desc h3{ + font-weight: 600; + font-size: 18px; + line-height: 24px; + color: #000000; +} +.article-desc h2{ + font-weight: 700; + font-size: 24px; + line-height: 34px; + color: #296AC7; +} +.why-us-desc a{ + color: #FFFFFF; + background: #296AC7; + text-decoration: none; + padding: 10px 20px; + border-radius: 25px; +} + +.blog-banner{ + background: url('../images/blog-banner.jpg'); + background-size: cover; + background-repeat: no-repeat; + padding: 6rem; +} +.blog-banner-desc{ + margin-left: 10rem; +} +.blog-banner-content{ + display: flex; + gap: 20px; + align-items: center; +} +.blog-banner-content h2{ + font-weight: 500; + font-size: 48px; + line-height: 72px; + color: #FFFFFF; +} +.blog-banner-content h2 span{ + color: #FFE401; +} +.blog-banner h5{ + font-weight: 400; + font-size: 24px; + line-height: 36px; + color: #FFFFFF; +} +.blog-banner-content a{ + background: #FFFFFF; + box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25); + border-radius: 6px; + padding: 10px 5rem; + text-decoration: none; + font-weight: 600; + font-size: 16px; + line-height: 24px; + text-align: center; + color: #3492CF; +} +/* blog detail css */ +.blog-detail-img{ + margin-bottom: 15px; +} +.recent-card{ + background: #DFEBFA; + padding: 20px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15); + border-radius: 15px; + display: flex; + flex-direction: column; + gap: 20px; +} +.recent-card-img{ + width: 300px; +} +.recent-card-content{ + display: flex; + gap: 20px; + align-items: center; +} +.recent-post-desc h5{ + font-weight: 500; + font-size: 14px; + line-height: 18px; + color: #000000; +} +.recent-post-desc h2{ + font-weight: 700; + font-size: 18px; + line-height: 28px; + color: #000000; +} +.recent-card h1{ + font-weight: 600; + font-size: 24px; + line-height: 34px; + color: #000000; +} +.recent-card a{ + text-decoration: none; +} +.social-share{ + display: flex; + flex-direction: column; + gap: 20px; + position: fixed; + top: 20%; + left: 2%; +} +.faq-section .accordion-button:focus{ + box-shadow: none; +} +.faq-section .accordion-button::after{ + background-image: url('../images/fa-after.png'); + background-size: 1.5rem; + width: 1.5rem; + height: 1.5rem; +} +.faq-section .accordion-button:not(.collapsed){ + background-color: unset; + border-bottom: 1.5px solid #E0DEDE; +} /* Footer Css */ .footer{ background: #296AC7; diff --git a/public/frontend/images/attractive-man.png b/public/frontend/images/attractive-man.png new file mode 100644 index 0000000..c2f7739 Binary files /dev/null and b/public/frontend/images/attractive-man.png differ diff --git a/public/frontend/images/blank.png b/public/frontend/images/blank.png new file mode 100644 index 0000000..ace2437 Binary files /dev/null and b/public/frontend/images/blank.png differ diff --git a/public/frontend/images/blog-banner.jpg b/public/frontend/images/blog-banner.jpg new file mode 100644 index 0000000..e2ed37c Binary files /dev/null and b/public/frontend/images/blog-banner.jpg differ diff --git a/public/frontend/images/blog-passport.png b/public/frontend/images/blog-passport.png new file mode 100644 index 0000000..dad60fa Binary files /dev/null and b/public/frontend/images/blog-passport.png differ diff --git a/public/frontend/images/blogs-banner.png b/public/frontend/images/blogs-banner.png new file mode 100644 index 0000000..fd7cd10 Binary files /dev/null and b/public/frontend/images/blogs-banner.png differ diff --git a/public/frontend/images/blogs-detail.png b/public/frontend/images/blogs-detail.png new file mode 100644 index 0000000..bb93faf Binary files /dev/null and b/public/frontend/images/blogs-detail.png differ diff --git a/public/frontend/images/fa-after.png b/public/frontend/images/fa-after.png new file mode 100644 index 0000000..35f46b2 Binary files /dev/null and b/public/frontend/images/fa-after.png differ diff --git a/public/frontend/images/facebook-icon.png b/public/frontend/images/facebook-icon.png new file mode 100644 index 0000000..b710f82 Binary files /dev/null and b/public/frontend/images/facebook-icon.png differ diff --git a/public/frontend/images/faq-banner.png b/public/frontend/images/faq-banner.png new file mode 100644 index 0000000..089305a Binary files /dev/null and b/public/frontend/images/faq-banner.png differ diff --git a/public/frontend/images/faq-lists.png b/public/frontend/images/faq-lists.png new file mode 100644 index 0000000..e17fb9a Binary files /dev/null and b/public/frontend/images/faq-lists.png differ diff --git a/public/frontend/images/linkdin.png b/public/frontend/images/linkdin.png new file mode 100644 index 0000000..09022e0 Binary files /dev/null and b/public/frontend/images/linkdin.png differ diff --git a/public/frontend/images/our-values-background.jpg b/public/frontend/images/our-values-background.jpg new file mode 100644 index 0000000..235d10d Binary files /dev/null and b/public/frontend/images/our-values-background.jpg differ diff --git a/public/frontend/images/student-studying.png b/public/frontend/images/student-studying.png new file mode 100644 index 0000000..298fef0 Binary files /dev/null and b/public/frontend/images/student-studying.png differ diff --git a/public/frontend/images/sydney-opera-house.png b/public/frontend/images/sydney-opera-house.png new file mode 100644 index 0000000..5b8f06d Binary files /dev/null and b/public/frontend/images/sydney-opera-house.png differ diff --git a/public/frontend/images/twitter.png b/public/frontend/images/twitter.png new file mode 100644 index 0000000..4e3e89e Binary files /dev/null and b/public/frontend/images/twitter.png differ diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php index d81ed2e..a684365 100644 --- a/resources/views/about.blade.php +++ b/resources/views/about.blade.php @@ -76,13 +76,66 @@ +
+

We are our values

+
+
+
+

We are passionate about creating a calm, inspiring work environment that attracts very + high-performing talent. We connect that talent with our partners, providing mutual growth opportunities. +

+
+ +
+
+
+ +
+

Let's Chat

Thinking about starting a team? Need to augment your existing team? We’re here to help. We work with US based companies to help them grow!

- Consult with us + Consult with us
+@endsection +@section('script') + @endsection \ No newline at end of file diff --git a/resources/views/blog-detail.blade.php b/resources/views/blog-detail.blade.php new file mode 100644 index 0000000..ed462a2 --- /dev/null +++ b/resources/views/blog-detail.blade.php @@ -0,0 +1,82 @@ +@extends('layout.app') +@section('title') +Blogs Detail + + + + + + +@endsection +@section('content') +
+
+
+
+
+ +
+
Dec 09, 2022, 2 mins read
+

Ten Reasons that make Australia the Best Destination

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. +

+ Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. +

+ Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. +

+
+
+ +
+
+
+ slug"; + ?> + + + + + + + + + +
+@endsection \ No newline at end of file diff --git a/resources/views/blogs.blade.php b/resources/views/blogs.blade.php new file mode 100644 index 0000000..61d706f --- /dev/null +++ b/resources/views/blogs.blade.php @@ -0,0 +1,91 @@ +@extends('layout.app') +@section('title') +Blogs + + + + + + +@endsection +@section('content') +
+ +
+

Blog

+
Know what’s trending overseas
+
+
+
+

+ + Latest Articles +

+
+
+
+ +

Study in Australia

+
Dec 09, 2022, 2 mins read
+

Ten Reasons that make Australia the Best Destination

+

If you want to study in a city surrounded by lush greenery and a pleasant atmosphere..

+ Read More +
+
+
+ +
+
+
+
+
+
+

Get started today.

+ FREE CONSULTATION +
+
Get Free Consultation with Experts
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php index 614c5f4..64a467d 100644 --- a/resources/views/contact.blade.php +++ b/resources/views/contact.blade.php @@ -57,38 +57,43 @@

Send us a Message!

If you have any queries, let us know.

-
+ @csrf
- +
+
- +
+
- +
+
+
+
@@ -110,7 +115,41 @@