diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 1d5c5d1..2b880f6 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -687,7 +687,18 @@ Responsive Codes background-color: #E22899; color: #FFFFFF !important; } - +.student-visa-section .nav-pills .nav-link.active .fa-solid{ + width: 28px; + height: 28px; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + background: #FFFFFF; + color: #E22899; + border-radius: 50%; + margin-right: 0; +} .student-visa-section .nav-link:hover{ text-decoration: none; color: #FFFFFF !important; @@ -714,6 +725,103 @@ Responsive Codes border-radius: 0 0 12px 12px; border-bottom: none; } +/* visa page css ends */ +/* contact us page css */ +.contact-form-section{ + padding: 6rem; +} +.contact-form{ + background: #296AC7; + box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); + border-radius: 12px; + padding: 2rem; +} +.offices-des{ + display: flex; + align-items: center; + gap: 20px; + text-decoration: none; +} +.contact-img img{ + border-radius: 20px; +} +.contact-offices{ + display: flex; + flex-direction: column; + gap: 20px; +} +.contact-offices h2{ + font-weight: 700; + font-size: 28px; + line-height: 32px; + color: #FFFFFF; + margin-bottom: 0; + margin-top: 2rem; +} +.contact-offices h5{ + font-weight: 500; + font-size: 18px; + line-height: 26px; + color: #FFFFFF; +} +.contact-left-top h1{ + font-weight: 700; + font-size: 40px; + line-height: 45px; + color: #FFFFFF; +} +.contact-left-top p{ + color: #FFFFFF; + margin-bottom: 30px; +} +.form-sec{ + padding: 2rem; + background: #F7F7F7; + box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15); + border-radius: 12px; +} +.form-sec .form-control::placeholder{ + font-weight: 400; + font-size: 14px; + line-height: 26px; + color: #7B8792; +} +.form-sec .form-control{ + background: #FFFFFF; + border: 1px solid #B1B1B1; + border-radius: 6px; + padding: 10px; +} +.form-sec .form-control:focus{ + box-shadow: unset; + border: 1px solid #B1B1B1; +} +.form-sec button{ + background: #E22899; + border-radius: 44px; + border: none; + color: #FFFFFF; + padding: 10px 30px; +} +.form-sec h1{ + text-align: center; +} +.form-sec p{ + text-align: center; + margin-bottom: 50px; +} +.form-sec label{ + margin-bottom: 8px; + font-weight: 400; + font-size: 16px; + line-height: 28px; + color: #0A2849; +} +.contact-form .row{ + display: flex; + align-items: center; +} +/* contact us page css ends */ /* Footer Css */ .footer{ background: #296AC7; diff --git a/public/frontend/icons/contact-email.png b/public/frontend/icons/contact-email.png new file mode 100644 index 0000000..994fb8a Binary files /dev/null and b/public/frontend/icons/contact-email.png differ diff --git a/public/frontend/icons/contact-location.png b/public/frontend/icons/contact-location.png new file mode 100644 index 0000000..68fb62b Binary files /dev/null and b/public/frontend/icons/contact-location.png differ diff --git a/public/frontend/icons/contact-location.svg b/public/frontend/icons/contact-location.svg new file mode 100644 index 0000000..48b1c74 --- /dev/null +++ b/public/frontend/icons/contact-location.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/frontend/icons/contact-phone.png b/public/frontend/icons/contact-phone.png new file mode 100644 index 0000000..9f5a10f Binary files /dev/null and b/public/frontend/icons/contact-phone.png differ diff --git a/public/frontend/icons/contact-phone.svg b/public/frontend/icons/contact-phone.svg new file mode 100644 index 0000000..0283762 --- /dev/null +++ b/public/frontend/icons/contact-phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/frontend/icons/favicon.ico b/public/frontend/icons/favicon.ico new file mode 100644 index 0000000..25209ec Binary files /dev/null and b/public/frontend/icons/favicon.ico differ diff --git a/public/frontend/icons/location-email.svg b/public/frontend/icons/location-email.svg new file mode 100644 index 0000000..dd362c0 --- /dev/null +++ b/public/frontend/icons/location-email.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/frontend/images/contact-banner.png b/public/frontend/images/contact-banner.png new file mode 100644 index 0000000..fd7cd10 Binary files /dev/null and b/public/frontend/images/contact-banner.png differ diff --git a/public/frontend/images/two-content.png b/public/frontend/images/two-content.png new file mode 100644 index 0000000..2c41652 Binary files /dev/null and b/public/frontend/images/two-content.png differ diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php new file mode 100644 index 0000000..a9b5060 --- /dev/null +++ b/resources/views/contact.blade.php @@ -0,0 +1,99 @@ +@extends('layout.app') +@section('title') +Contact Us + + + + + + +@endsection +@section('content') +
+ +
+

Contact Us

+
Take a Right Step Towards Better Future
+
+
+
+
+
+
+
+
+

Talk to our Expert

+

Please contact us or book an appointment with us, we will be glad to answer all your queries.

+
+
+ +
+ +
+
+
+
+

Send us a Message!

+

If you have any queries, let us know.

+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index 14b9316..6a70a56 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -6,7 +6,7 @@ @yield('title') - + diff --git a/resources/views/visa.blade.php b/resources/views/visa.blade.php index 5bbf292..5f6ab79 100644 --- a/resources/views/visa.blade.php +++ b/resources/views/visa.blade.php @@ -18,8 +18,7 @@

Student Visa

-
Visit Australia to participate in the course of study -
+
Visit Australia to participate in the course of study
diff --git a/routes/web.php b/routes/web.php index dd4aabf..2358029 100644 --- a/routes/web.php +++ b/routes/web.php @@ -264,4 +264,6 @@ Route::get('/study-abroad-detail', function () { Route::get('/visa', function () { return view('visa'); }); - +Route::get('/contact', function () { + return view('contact'); +});