
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: #4285f4;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background-color: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  color: #4285f4;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

.logo p {
  color: #666;
  font-size: 0.9rem;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4285f4;
  transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: #4285f4;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1527689368864-4dbcf03fe2c7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

/* Features Section */
.features {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.features h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: #333;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
  font-size: 2.5rem;
  color: #4285f4;
  margin-bottom: 20px;
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Course Preview Section */
.course-preview {
  padding: 80px 0;
  background-color: #f5f7fa;
  text-align: center;
}

.course-preview h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.course-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.course-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.data-analysis {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.web-dev {
  background-image: url('https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.generative-ai {
  background-image: url('https://images.unsplash.com/photo-1677442135968-6bdabae7a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
}

.course-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.course-card p {
  padding: 0 20px 20px;
  color: #666;
}

.center {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 30px;
  border-radius: 10px;
  background-color: #f5f7fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  position: relative;
}

.testimonial p:before {
  content: '\201C';
  font-size: 60px;
  position: absolute;
  left: -20px;
  top: -20px;
  color: #ddd;
}

.student-info {
  text-align: right;
}

.student-name {
  font-weight: bold;
  color: #333;
}

.course-taken {
  font-size: 0.9rem;
  color: #777;
}

/* Footer Styles */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4285f4;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: #4285f4;
  transform: translateY(-5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #ccc;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Courses Page Styles */
.courses-section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.courses-section:nth-child(even) {
  background-color: #f5f7fa;
}

.course-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.course-image {
  flex: 1 1 300px;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.data-analysis-img {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.cloud-computing-img {
  background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.c-cpp-img {
  background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.web-dev-img {
  background-image: url('https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.digital-marketing-img {
  background-image: url('https://images.unsplash.com/photo-1535303311164-664fc9ec6532?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.tally-img {
  background-image: url('https://images.unsplash.com/photo-1554224154-26032ffc0910?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.dca-img {
  background-image: url('https://images.unsplash.com/photo-1550439062-609e1531270e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.cpct-img {
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.ai-img {
  background-image: url('https://images.unsplash.com/photo-1677442135968-6bdabae7a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
}

.course-info {
  flex: 1 1 600px;
}

.course-info h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #333;
}

.course-description {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.1rem;
}

.course-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.detail {
  background-color: #f0f4f8;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #555;
}

.detail i {
  margin-right: 5px;
  color: #4285f4;
}

.course-syllabus {
  margin-bottom: 30px;
}

.course-syllabus h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.course-syllabus ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.course-syllabus ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.course-syllabus ul li:before {
  content: '•';
  color: #4285f4;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* About Page Styles */
.about-section {
  padding: 60px 0;
  background-color: #fff;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 400px;
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.about-text p {
  margin-bottom: 15px;
  color: #666;
  font-size: 1.1rem;
}

.mission-section {
  padding: 60px 0;
  background-color: #f5f7fa;
}

.mission-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mission-box, .vision-box {
  flex: 1 1 500px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box {
  background-color: #4285f4;
  color: #fff;
}

.vision-box {
  background-color: #fff;
}

.mission-box h2, .vision-box h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.values-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.values-section h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #f5f7fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card i {
  font-size: 2.5rem;
  color: #4285f4;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.team-section {
  padding: 60px 0;
  background-color: #f5f7fa;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-member {
  flex: 1 1 300px;
  max-width: 350px;
  padding-bottom: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.director {
  background-image: url('director.jpg');
}

.academic-head {
  background-image: url('neha.jpeg');
}

.tech-head {
  background-image: url('');
}

.team-member h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.designation {
  color: #4285f4;
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  padding: 0 20px;
  color: #666;
}

.facilities-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.facilities-section h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.facilities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.facility {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #f5f7fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.facility:hover {
  transform: translateY(-10px);
}

.facility i {
  font-size: 2.5rem;
  color: #4285f4;
  margin-bottom: 20px;
}

.facility h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.achievements-section {
  padding: 60px 0;
  background-color: #4285f4;
  text-align: center;
  color: #fff;
}

.achievements-section h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.achievements-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.achievement {
  flex: 1 1 220px;
  max-width: 280px;
}

.count {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
  background-color: #fff;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1 1 400px;
  background-color: #f5f7fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #333;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.8rem;
  color: #4285f4;
  margin-right: 20px;
  margin-top: 5px;
}

.info-item h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-item p {
  color: #666;
}

.social-media {
  margin-top: 30px;
}

.social-media h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1 1 500px;
}

.contact-form h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #4285f4;
  outline: none;
}

.map-section {
  padding: 60px 0;
  background-color: #f5f7fa;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.google-map {
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-section {
  padding: 60px 0;
  background-color: #fff;
}

.enquiry-section h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333;
}

.enquiry-section p {
  margin-bottom: 30px;
  color: #666;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1 1 300px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 20px;
    justify-content: center;
  }

  nav ul li {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .page-banner h1 {
    font-size: 2.3rem;
  }

  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 8px 20px;
  }
}
