diff --git a/css/footer.css b/css/footer.css new file mode 100644 index 00000000..ed0f72a6 --- /dev/null +++ b/css/footer.css @@ -0,0 +1,55 @@ +/* Footer Styles */ +.footer-dark { + background-color: #1a2238; + color: #fff; +} + +.footer-heading { + font-size: 1.25rem; + font-weight: bold; + margin-bottom: 1.5rem; + color: #ffc107; +} + +.footer-link { + color: #c6cbe9; + text-decoration: none; + display: block; + margin-bottom: 0.5rem; + transition: color 0.3s ease; +} + +.footer-link:hover { + color: yellow; +} + +.footer-contact-info li { + color: #c6cbe9; + margin-bottom: 1rem; +} + +.footer-contact-info li i { + color: #ffc107; +} + +.social-icons-footer a { + display: inline-block; + color: #fff; + background-color: #ffc107; + width: 40px; + height: 40px; + line-height: 40px; + text-align: center; + border-radius: 50%; + margin-right: 10px; + transition: background-color 0.3s ease, transform 0.3s ease; +} + +.social-icons-footer a:hover { + background-color: #e0a800; + transform: translateY(-3px) scale(1.1); +} + +hr { + border-color: rgba(255, 255, 255, 0.1); +} diff --git a/css/style.css b/css/style.css index 3bdc7a2d..fee122f5 100644 --- a/css/style.css +++ b/css/style.css @@ -1,33 +1,38 @@ -body { - font-family: 'Roboto', sans-serif; +html, body { + height: 100%; margin: 0; padding: 0; - overflow-x: hidden; + font-family: 'Roboto', sans-serif; + overflow-x: hidden; /* Prevents horizontal scrolling */ } -* { - box-sizing: border-box; +body { + display: flex; + flex-direction: column; + min-height: 100vh; /* Ensures the body always fills the viewport height */ } -body, html { - overflow-x: hidden; - overflow-y: auto; - height: auto !important; + +.main-content { + flex-grow: 1; /* This pushes the footer down by taking up all available space */ } +* { + box-sizing: border-box; +} .custom-bg { background-color: #3D52A0; padding: 10px 0; } + .navbar { position: sticky; top: 0; z-index: 999; - background: color #7091e6; /* optional */ + background-color: #7091e6; + box-shadow: 0 2px 4px rgba(0,0,0,0.1); } - - .navbar-brand { font-size: 24px; color: white; @@ -38,22 +43,27 @@ body, html { transition: all 0.3s ease; } -.nav-link:hover { +.nav-link:hover, +.dropdown-item:hover { color: #C6CBE9 !important; + background-color: #2f3f83 !important; transform: translateY(-2px); } .dropdown-menu { background-color: #3D52A0; border: none; + animation: fadeIn 0.3s ease-in-out; } .dropdown-item { color: white; + padding: 10px 15px; } -.dropdown-item:hover { - background-color: #2f3f83; +@keyframes fadeIn { + from { opacity: 0; transform: translateY(10px); } + to { opacity: 1; transform: translateY(0); } } .whatsapp-btn { @@ -65,11 +75,13 @@ body, html { font-size: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.3); } + .insta-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; border: none; } + .insta-icon:hover { opacity: 0.8; } @@ -86,15 +98,21 @@ body, html { .slider-container { position: relative; width: 100%; - height: 100vh; - overflow: hidden; - margin-top: 0; + padding-top: 100px; + padding-right: 60px; + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: flex-end; } .slider { + position: absolute; width: 100%; height: 100%; - position: relative; + top: 0; + left: 0; + z-index: 1; } .slide { @@ -102,6 +120,8 @@ body, html { height: 100%; object-fit: cover; position: absolute; + top: 0; + left: 0; opacity: 0; transition: opacity 1s ease-in-out; } @@ -111,50 +131,41 @@ body, html { } .form-overlay { - position: absolute; - top: 58%; - right: 8%; - transform: translateY(-50%); - padding: 40px 30px; + position: relative; + z-index: 2; + padding: 30px 25px; border-radius: 12px; max-width: 420px; + width: 100%; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1); color: #fff; - z-index: 10; } - - /* ✅ GLASSMORPHISM EFFECT - Updated */ -background: rgba(255, 255, 255, 0.1); /* Slightly more transparent */ -border-radius: 16px; -backdrop-filter: blur(12px); --webkit-backdrop-filter: blur(12px); -border: 1px solid rgba(255, 255, 255, 0.2); -box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); -color: #ffffff; -padding: 20px; - - - - .form-box h2 { margin-bottom: 20px; } +.form-box label { + color: black; + font-weight: 500; + margin-bottom: 5px; +} + .form-box input, .form-box select, .form-box button { padding: 12px; border-radius: 6px; border: 1px solid #ccc; + color: black; } .form-box button { - background-color: #007bff; + background-color: #6f7d8c; border: none; color: white; cursor: pointer; @@ -166,40 +177,215 @@ padding: 20px; } @media (max-width: 768px) { - .form-overlay { - position: static; - transform: none; - width: 90%; - margin: 20px auto; + .slider-container { + flex-direction: column; + padding-top: 0; + padding-right: 0; + height: auto; } .slider { - height: 500px; + position: relative; + height: 300px; + min-height: auto; } -} -@media (max-width: 768px) { + + .slide { + height: 300px; + min-height: auto; + } + .form-overlay { - position: static; - transform: none; - max-width: 100%; - margin: 20px auto; + position: relative; + margin: 40px auto 20px; + max-width: 95%; + width: 100%; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1); padding: 20px; - } - - .hero { - flex-direction: column; - align-items: center; + z-index: 2; } .form-box input, .form-box select { width: 100%; } + + .dropdown-menu { + position: absolute; + width: 100%; + border-radius: 0; + } +} + +.error-message { + font-size: 0.75rem; + color: red; + line-height: 1.2; + margin-top: 4px; + display: block; } +input:invalid + .error-message, +select:invalid + .error-message { + display: block; +} +/* Footer Styles */ +.footer-dark { + background-color: #3D52A0; + color: #fff; +} + +.footer-heading { + font-size: 1.25rem; + font-weight: bold; + margin-bottom: 1.5rem; + color: white; +} + +.footer-link { + color: #c6cbe9; + text-decoration: none; + display: block; + margin-bottom: 0.5rem; + transition: color 0.3s ease; +} + +.footer-link:hover { + color: darkblue; +} + +.footer-contact-info li { + color: #c6cbe9; + margin-bottom: 1rem; +} + +.footer-contact-info li i { + color: white; +} + +.social-icons-footer a { + display: inline-block; + color: #fff; + background-color:; + width: 40px; + height: 40px; + line-height: 40px; + text-align: center; + border-radius: 50%; + margin-right: 10px; + transition: background-color 0.3s ease, transform 0.3s ease; +} + +.social-icons-footer a:hover { + background-color: darkblue; + transform: translateY(-3px) scale(1.1); +} + +hr { + border-color: rgba(255, 255, 255, 0.1); +} + + +.dark-blue-text { + color: #1a3c61; +} + +.light-blue-text { + color: #5c97d0; +} + + +.section-title { + font-size: 2.5rem; + font-weight: 700; + text-align: center; + padding-bottom: 50px; +} + +/* Styles for the "Why Choose Leverage Edu?" section */ +.feature-item { + background-color: transparent; + border: none; + padding: 20px; +} + +.feature-item h4 { + font-size: 1.25rem; + color: #1a3c61; +} + +.feature-item:hover { + cursor: pointer; + transition: 1s ease; +} + +/* Container for images in "Why Choose Leverage Edu?" */ +.icon-circle { + width: 60px; + height: 60px; + background-color: #e6f0fa; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #5c97d0; + font-size: 24px; +} + + +.icon-circle img { + width: 100%; + height: 100%; + border-radius: 50%; +} + +/* Styles for the "Leverage Edu Advantage" section */ +.advantage-card { + display: flex; + align-items: center; + gap: 15px; + background-color: #ffffff; + border: 1px solid #e0e0e0; + border-radius: 12px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); + transition: transform 0.3s ease, box-shadow 0.3s ease; + cursor: pointer; +} + +.advantage-card:hover { + transform: translateX(5px); + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); +} + +/* Styling for images in "Leverage Edu Advantage" cards */ +.advantage-image { + width: 30px; + height: 30px; +} + +.advantage-card p { + margin: 0; + font-size: 1rem; + font-weight: 600; + color: #4b4b4b; +} + +/* Responsive adjustments for smaller screens */ +@media (max-width: 768px) { + .section-title { + font-size: 2rem; + } + .advantage-card { + flex-direction: row; + text-align: left; + padding: 20px; + } + .advantage-icon { + margin-bottom: 0; + } +} diff --git a/images/advantage-img1.png b/images/advantage-img1.png new file mode 100644 index 00000000..d87e669b Binary files /dev/null and b/images/advantage-img1.png differ diff --git a/images/advantage-img2.png b/images/advantage-img2.png new file mode 100644 index 00000000..fa1b18bc Binary files /dev/null and b/images/advantage-img2.png differ diff --git a/images/advantage-img3.png b/images/advantage-img3.png new file mode 100644 index 00000000..06286a70 Binary files /dev/null and b/images/advantage-img3.png differ diff --git a/images/advantage-img4.png b/images/advantage-img4.png new file mode 100644 index 00000000..e502acf8 Binary files /dev/null and b/images/advantage-img4.png differ diff --git a/images/advantage-img5.png b/images/advantage-img5.png new file mode 100644 index 00000000..7b46ea8a Binary files /dev/null and b/images/advantage-img5.png differ diff --git a/images/advantage-img6.png b/images/advantage-img6.png new file mode 100644 index 00000000..40e9f941 Binary files /dev/null and b/images/advantage-img6.png differ diff --git a/images/chooseus-img1.png b/images/chooseus-img1.png new file mode 100644 index 00000000..7d44ffbf Binary files /dev/null and b/images/chooseus-img1.png differ diff --git a/images/chooseus-img2.png b/images/chooseus-img2.png new file mode 100644 index 00000000..95955060 Binary files /dev/null and b/images/chooseus-img2.png differ diff --git a/images/chooseus-img3.png b/images/chooseus-img3.png new file mode 100644 index 00000000..0cdbaeb7 Binary files /dev/null and b/images/chooseus-img3.png differ diff --git a/images/chooseus-img4.png b/images/chooseus-img4.png new file mode 100644 index 00000000..0477aa02 Binary files /dev/null and b/images/chooseus-img4.png differ diff --git a/index.html b/index.html index 1b076f21..0eb88766 100644 --- a/index.html +++ b/index.html @@ -1,81 +1,95 @@ + EduVeera - - + + - + - + + - +
-
EduVeera - -
- + - + - +
- - - -
  • Universities
      -
    • UK
    • -
    • USA
    • -
    • Canada
    • +
    • Amity University
    • +
    • Manipal University Jaipur
    • +
    • Sikkim Manipal University
    • +
    • MAHE
    • +
    • Lovely Professional University
    • +
    • Jain University
    • +
    • Sharda University
    • +
    • Uttaranchal University
    • +
    • Kurushetra University
    • +
    • D.Y Patil University
    • +
    • Vivekanand Global University
    • +
    • UPES University
    • +
    • GLA University
    • +
    • Vignan University
    • +
    • NMIMS University
    • +
    • Chandigarh University
    • +
    • Amrita University
  • -
  • Courses
      -
    • Engineering
    • -
    • Medicine
    • -
    • Business
    • +
    • MBA
    • +
    • MCA
    • +
    • MA
    • +
    • BBA
    • +
    • BCA
    • +
    • B.COM
    • +
    • BA
  • -
  • Blogs
- -
- + - + @@ -86,85 +100,229 @@
- -
-
- Slide 1 - Slide 2 - Slide 3 + +
+
+
+ + Slide 1 + Slide 2 + Slide 3 +
+ +
+
+

Register Now

+ + +
+ +
+
+ +
    +
  • India (+91)
  • +
+
+ +
+
+ + + + + + + + +
+
-
-
-

Register Now

- - + +
+

+ + Why Choose + Eduveera? +

-
- -
-
- -
    -
  • India (+91)
  • -
  • USA (+1)
  • -
  • UK (+44)
  • -
  • UAE (+971)
  • -
+
+
+
+
+ + University Partners icon +
+

850+ University Partners

+
+
+
+
+
+ + Success Stories icon +
+

45,000+ Success Stories

+
+
+
+
+
+ + Scholarship icon +
+

Scholarship up to 50%*

+
+
+
+
+
+ + Courses icon +
+

Courses starting at ₹8 Lakhs*

+
- -
+
- - - - - - - - + +
+

+ + EduVeera + Advantage +

- - +
+
+
+ + Program Finder icon +

Finding the Program That’s Right for You

+
+
+
+
+ + Expert Assistance icon +

Curated Expert-led Application Assistance

+
+
+
+
+ + +

English Assessment Test Prep On-the-go

+
+
+
+
+ + +

Hacking thy Interviews & the All-important VISA

+
+
+
+
+ + Financial Aid icon +

Solving for Money Money Money!

+
+
+
+
+ + Stay Well icon +

Making Sure You Stay Right, And Stay Well

+
+
+
-
+ +
+
+
+
+
Quick Links
+
    +
  • Home
  • +
  • About Us
  • +
  • Contact
  • +
  • Blogs
  • +
+
+
+
Services
+
    +
  • MBA
  • +
  • BBA
  • +
  • B.Com
  • +
  • Online Courses
  • +
+
+
+
Contact Info
+
    +
  • info@eduveera.com
  • +
  • +91 99999 99999
  • +
  • 123 EduVeera Lane, Knowledge City, India
  • +
+
+ + + +
+
+
+
+
+
+

© 2025 EduVeera. All Rights Reserved.

+
+
+
+
- + - - - - + - + + \ No newline at end of file