/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9fb;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAVBAR */
.new-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease; /* smooth hide/show */
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.3rem 1rem; /* smaller padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-logo .logo-icon {
  height: 100px;  /* adjust this value as needed */
  width: auto;
  display: block;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: 1.2rem;
  /*background:	#151269;*/
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(255, 164, 71, 0.2);
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  background: #1c3366;
  color:white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* HOME SECTION */
#home {
  background: linear-gradient(135deg,#182b5c);
  color: white;
  padding: 20px 20px;
}

.home-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-col-1 {
  max-width: 600px;
}

.home-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

#t2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.home-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
}

.home-btn {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #0052cc;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.home-btn:hover {
  background-color: #e6e6e6;
  color: #003d99;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px;
  gap: 40px;
}

.left {
  position: relative;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.orange-bg {
  background-color: #e55b00;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* 🔽 Updated student-img with scroll animation */
.student-img {
  width: 550px;
  z-index: 1;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* 🔽 Triggered when scrolled into view */
.student-img.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.student-counter {
  position: absolute;
  top: 90px;
  left: -40px;
  background: #fff;
  border: 2px dashed #3182ce;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.student-counter h2 {
  margin: 0;
  font-size: 32px;
  color: #2b6cb0;
  font-weight: bold;
}

.student-counter p {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.right {
  flex: 1.2;
  min-width: 300px;
}

.intro {
  font-size: 20px;
  color: #2b6cb0;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.right h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.right p {
  font-size: large;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #edf2f7;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  min-width: 180px;
}

.feature img {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
}

.feature.blue img {
  background-color: #2563eb;
}

.feature.light-blue img {
  background-color: #60a5fa;
}

.feature.orange img {
  background-color: #f97316;
}

.feature.dark-blue img {
  background-color: #1e3a8a;
}

.highlights-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  margin-bottom: 0%;
  flex-wrap: wrap;
  background-color: #f5f9fc; /* Optional: light background */
}

.highlight-card {
  text-align: center;
  width: 220px;
  height: 220px;
  background-color: #182b5c;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.highlight-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* makes icon white */
}

.highlight-card h2 {
  font-size: 32px;
  color: #ffffff;
  margin: 0;
}

.highlight-card .counter {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
}

.highlight-card p {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 5px;
}


/* FORM */
.home-col-2 {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  flex: 1;
  max-width: 490px;
  min-width: 280px;
  color: #333;
}

.home-col-2 label#text {
  font-size: 20px;
  font-weight: bold;
  color: #1c3366;
  display: block;
  margin-bottom: 15px;
}

.home-col-2 form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.home-col-2 input,
.home-col-2 select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-btn {
  background: #1c3366;
  color: white;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-btn:hover {
  background: #e55b00;
  transform: scale(1.03);
}

.vision-mission-section {
  /*background: url("https://static.vecteezy.com/system/resources/previews/003/396/738/non_2x/businessman-clicks-on-virtual-screen-mission-photo.jpg") no-repeat center center/cover;*/
  background-color: white;
  padding: 60px 20px;
  color: white;
  position: relative;
  text-align: center;
  margin-top: 60px;
}

.vision-mission-section .overlay {
 /* background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  padding: 60px 20px;
  border-radius: 10px;
}

.vision-mission-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
  color: black;
}

.vision-mission-section p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card-box {
  background-color: #fff;
  color: #111;
  padding: 30px 25px;
  border-radius: 20px;
  border: 2px dashed #1c3366;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.card-box.animate-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.card-box.animate-right {
  animation: slideInRight 0.8s ease-out forwards;
}
.card-box:hover {
  transform: translateY(-5px);
}

.card-title {
  background-color:#1c3366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: default;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* COURSES */
.courses-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.courses-swiper {
  max-width: 1000px;
  margin: 0 auto;
}

.course-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease;
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.course-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1c3366;
}

.course-card p {
  font-size: 16px;
  color: #555;
}

.course-card:hover {
  transform: translateY(-10px);
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background: #e55b00;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #1c3366;
  opacity: 1;
}

/* View Courses Button Styling */
.view-courses-btn-container {
  margin-top: 30px;
}

.view-courses-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #e55b00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.view-courses-btn:hover {
  background-color: #c24c00;
}

/*.course-meta span:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -8px;
  color: #bbb;
  padding-left: 8px;
}*/
/* PROMO SECTION WITH BACKGROUND IMAGE 
.promo-section {
  position: relative;
  background: linear-gradient(rgba(255,106,0,0.1), rgba(255,149,0,0.3)),
              url('https://i.pinimg.com/736x/ce/1f/4c/ce1f4cbdeb685bbaed90e6ec6d19f7c6.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.promo-container {
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.promo-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.promo-text {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #f9f9f9;
}

.promo-btn {
  display: inline-block;
  background: white;
  color: #ff6a00;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.promo-btn:hover {
  background: #ff6a00;
  color: white;
  transform: scale(1.05);
}*/
/* INFO CARDS SECTION */
.info-cards-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.info-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-card p {
  font-size: 15px;
  color: #fff;
}

.dark-card {
  background: linear-gradient(135deg, #004e4e, #026b6b);
  color: white;
}

.dark-card p {
  color: #e0e0e0;
}

.card-image img {
  width: 100px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.9;
}

.light-card {
  background: linear-gradient(135deg, #f9f9fb, #f1f1f9);
  color: #222;
}

.light-card p {
  color: #444;
}

.card-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.card-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;

  /* Animation setup */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.testimonials-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonials-title span {
  color: #ff6a00;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.testimonial-slide {
  display: none;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.testimonial-slide p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ff6a00;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: bold;
  color: #ff6a00;
}

.author-rating {
  color: #ffb400;
}

.testimonial-controls {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.testimonial-btn {
  background: white;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  font-size: 20px;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: #ff6a00;
  color: white;
}


/* OFFERINGS SECTION */
.offerings-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.offerings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.offerings-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.offerings-title span {
  color: #ff6a00;
}

.offerings-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* keep two cards per row */
  column-gap: 30px;
  row-gap: 40px;
  justify-content: center; /* centers the entire grid */
  max-width: 1000px;       /* controls total grid width */
  margin: 0 auto;          /* centers grid inside section */
}


@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

.offering-card {
  perspective: 1000px;
  flex: 1;
  min-width: 240px;
  max-width: 450px;
  height: 180px; /* reduced height */
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1); /* subtle border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* soft shadow */
}

.offering-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* smoother, bouncy flip */
}

.offering-card:hover .offering-card-inner {
  transform: rotateY(180deg);
}

.offering-card-front, .offering-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 12px;
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offering-card-front h3, .offering-card-back h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.offering-card-back {
  transform: rotateY(180deg);
}

.offering-card-back ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

/* Alternate card colors: odd navy, even orange */
.offerings-grid .offering-card:nth-child(odd) .offering-card-front,
.offerings-grid .offering-card:nth-child(odd) .offering-card-back {
  background: #1c3366; /* navy */
}

.offerings-grid .offering-card:nth-child(even) .offering-card-front,
.offerings-grid .offering-card:nth-child(even) .offering-card-back {
  background: #ff6a00; /* orange */
}


.site-footer {
  background: #0C1220;/*linear-gradient(135deg, #ff512f, #f09819);*/
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-about {
  flex: 1 1 30%;
  margin-bottom: 40px;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-columns {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-start;
  gap: 40px; /* smaller gap like Intern Vision */
}
.contact-col {
  margin-left: 0px; /* moves Contact closer to Quick Links */
}
.footer-column {
  flex: 1;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6a00;
  transform: translateX(5px);
}

.footer-logo {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
.footer-logo-img {
  max-width: 160px;
  margin-bottom: 15px;
  display: block;
}
.contact-col {
  margin-left: 20px;
}
.footer-brand {
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 60px;
}

.footer-bottom a {
  color: #fff;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}