/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: #1a3064;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  /*background-color: #1a3064;*/
  padding: 15px 20px;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.headcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: auto;
}

.logo img {
  height: 60px;
}

.contact-button .contact-us {
  background-color: #ffc905;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.contact-button .contact-us:hover {
  background-color: #fad85f;
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  background-color: #f0f4f8;
  padding: 60px 0;
  background-image: url("images/mainbanner.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 48, 100, 0.7);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 0 55%;
  color: white;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
}

.imggrid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0px;
}

.imggrid-item {
  flex: 1 0 80px;
  margin: 10px;
  max-width: 200px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.imggrid-item:hover {
  transform: translateY(-5px);
}

.imggrid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: white;
  padding: 20px;
}

.hero-form {
  flex: 0 0 40%;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1a3064;
  font-size: 24px;
}

.label {
  display: block;
  margin-bottom: 5px;
}
select option {
  color: black !important;
}

input {
  margin-bottom: 10px !important;
  width: 100%;
  padding: 8px;
}
select {
  width: calc(100%);
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 8px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

input[type="submit"] {
  background-color: #1e4b60 !important ;
  margin-top: 5px;
  color: #fff !important;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Statistics Section Styles */
.statistics {
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: white;
}

.stat-card h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: white;
}

.green {
  background-color: #28a745;
}

.blue {
  background-color: #0d6efd;
}

.yellow {
  background-color: #ffc107;
  color: #333;
}

.yellow h2 {
  color: #333;
}

.red {
  background-color: #dc3545;
}

/* Career Enhancement Section Styles */
.career {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.career-content {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.career h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.career p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
}

.career-image {
  flex: 1;
}

.career-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Program Fees Section Styles */
.program-fees {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.fees-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admissions-banner {
  background-color: #f15a74;
  color: white;
  padding: 15px 0;
  text-align: center;
  font-size: 1.3rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.fees-content {
  padding: 2rem;
}

.fees-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.fee-highlight-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
  margin-bottom: 1rem;
}

.fee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.fee-icon.green {
  background-color: #8cd48c;
}

.fee-icon.blue {
  background-color: #6aa5e4;
}

.fee-icon.yellow {
  background-color: #ffd056;
}

.fee-details h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.fee-details p {
  color: #666;
  font-size: 1rem;
}

.view-more {
  color: #666;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.semester-fees h2 {
  color: #2e4374;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.semester-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.semester-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1rem;
}

.semester-column h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.semester-column p {
  color: #666;
}

.eligibility-criteria h2 {
  color: #2e4374;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.eligibility-criteria ul {
  list-style: none;
}

.eligibility-criteria li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.eligibility-criteria li::before {
  content: "✓";
  color: #8cd48c;
  margin-right: 0.5rem;
}

/* Program Overview Section Styles */
.program-overview {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-header h2 span {
  color: #666;
  font-weight: normal;
  font-size: 1.4rem;
}

.overview-image {
  flex: 0 0 30%;
}

.semester-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.semester-col {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.semester-col h4 {
  margin-bottom: 15px;
  color: #1a3064;
}

.semester-col ul {
  list-style-type: none;
}

.semester-col ul li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.semester-col ul li:last-child {
  border-bottom: none;
}

/* Why Choose Section Styles */
.why-choose {
  padding: 60px 0;
  background-color: #f0f4f8;
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Why Choose Section Styles (continued) */
.feature-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  height: 60px;
  width: 60px;
  background-color: #f1f5fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a3064;
  font-size: 24px;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
}

/* Accreditations Section Styles */
.accreditations {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.accreditations h2 {
  text-align: center;
  /*margin-bottom: 15px;*/
  /*color: #333;*/
}

.accreditations > .container > p {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.accreditation-logos {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.accreditation-item {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-align: center;
}

.logo-circle {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.logo-circle img {
  max-width: 80%;
  max-height: 80%;
}

.accreditation-item p {
  max-width: 260px;
  color: #444;
  font-size: 16px;
  line-height: 1.4;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: #1a3c6e;
}

.alumni-showcase-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* recruitment section */
        .alumni-showcase-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .alumni-showcase-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0d2a4c;
            /*text-transform: uppercase;*/
            letter-spacing: 1px;
        }
        
        /* Logo grid layout */
        .alumni-employer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            justify-items: center;
            align-items: center;
        }
        
        .employer-logo-wrapper {
            max-width: 180px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .employer-logo-wrapper:hover {
            transform: scale(1.05);
        }
        
        .employer-logo-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }


/* Testimonials Section Styles */
.testimonials {
  padding: 60px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
}

.testimonial-image {
  flex: 0 0 30%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 0 0 70%;
  padding: 20px;
  position: relative;
}

.testimonial-content h4 {
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.video-play {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #1a3064;
  font-size: 20px;
  cursor: pointer;
}

.video-play:hover {
  color: #ff5a5f;
}

/* FAQ Section Styles */
.faq {
  padding: 60px 0;
  background-color: #f0f4f8;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 16px;
  color: #1a3064;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

/* Footer Styles */
footer {
  background-color: #1a3064;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff5a5f;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .accreditation-item {
    flex: 0 0 50%;
  }
  
  .alumni-employer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
            
            .employer-logo-wrapper {
                max-width: 150px;
            }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-form {
    flex: 0 0 100%;
  }

  .hero-text {
    margin-bottom: 40px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .semester-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-card {
    flex: 0 0 calc(50% - 20px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .accreditation-logo {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .imggrid-item img {
      padding:5px;
  }
  .imggrid-item {
    flex: 1 0 calc(20% - 10px);
  }
  .imgstats-grid {
    grid-template-columns: 1fr;
  }

  .fees-highlights {
    flex-direction: column;
  }

  .fee-highlight-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .semester-grid {
    flex-direction: column;
  }

  .semester-column {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .fees-content {
    padding: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .accreditation-item {
    flex: 0 0 100%;
  }
  .section-header {
    flex-direction: column;
  }

  .overview-image {
    margin-top: 20px;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-image {
    flex: 0 0 200px;
  }

  .footer-content {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }
  .career-container {
    flex-direction: column;
  }

  .career-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
 
  
   .alumni-showcase-title {
                font-size: 2rem;
            }
            
            .alumni-employer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .logo img {
    height: 40px;
}

.header {
    padding:15px 5px;
}

.contact-button .contact-us {
    padding:4px 10px;
    font-size:12px;
}

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header h2 span {
    font-size: 1.2rem;
  }

.stat-card h2 {
    font-size: 1.2rem;
}
  .semester-columns {
    grid-template-columns: 1fr;
  }

  .semester-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-logo {
    flex: 0 0 100%;
  }
  
    .alumni-showcase-title {
                font-size: 1.5rem;
            }
            
           
            
            .employer-logo-wrapper {
                max-width: 180px;
            }
}
