/* ===========================
   Global Styles
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* === Reuse of Common Button Style === */
.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #094191;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f9a925;
    color: #000;
}
/* === Secondary Button Style === */
.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #f9a925; /* primary yellow base */
    color: #000;
    font-size: 14px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #094191;
    color: #fff;
}
.btn-border {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #094191; /* Primary Blue */
    color: #094191;
    background-color: transparent;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-border:hover {
    background-color: #094191;
    color: #fff;
}

/* ===========================
   Top Bar
=========================== */
.top-bar {
    background: #094191;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

/* ===========================
   Header & Navigation
=========================== */
.navbar {
    background: white;
    border-bottom: 1px solid #eee;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo img {
    height: 50px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links li a {
    color: #094191;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links li a:hover {
    color: #f9a925;
}

/* Mobile menu toggle */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: #094191;
        position: absolute;
        top: 60px;
        right: 15px;
        width: 200px;
        padding: 20px;
        border-radius: 8px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li a {
        color: white;
    }
    .hamburger {
        display: block;
    }
}

/* ===========================
   Hero Section with Dots
=========================== */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.slides {
    position: relative;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide-content {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.slide-content .btn {
    background: #f9a925;
    color: #ffffff;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 30px;
}

/* Hero Dots Navigation */
.hero-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dot {
    width: 12px;
    height: 12px;
    background: #ffffffaa;
    border-radius: 50%;
    cursor: pointer;
}
.hero-dot.active {
    background: #f9a925;
}
/* ===========================
   About Section
=========================== */

.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.about-content {
    flex: 1 1 50%;
    padding: 0 20px;
}

.about-content h2 {
    font-size: 36px;
    color: #094191;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

/*.about-content .btn {
    display: inline-block;
    background-color: #f9a925;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.about-content .btn:hover {
    background-color: #d68900;
}*/

.about-image {
    flex: 1 1 40%;
    padding: 0 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-content .btn {
        margin-top: 10px;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

/* === Services Overview Section === */
/* === Services Overview Section === */
.services-overview {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.services-overview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #094191;
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.feature-card img {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* === Courses Section === */
.courses {
    padding: 60px 20px;
    background-color: #ffffff;
}

.courses h2 {
    text-align: center;
    font-size: 32px;
    color: #094191;
    margin-bottom: 40px;
    font-weight: 700;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.course-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.course-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.course-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.courses .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #094191; /* btn-primary color */
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin: 40px auto; /* Auto margins will center the button */
    transition: background 0.3s ease;
    text-align: center;
}

.courses .container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center; /* Optional: if you want text in center */
    flex-direction: column; /* Align items vertically */
}

/* Stats Section */
.stats.section {
    background-color: #094191; /* Deep Blue */
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.counters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-box {
    flex: 1 1 200px;
}

.counter {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.counter-box p {
    font-size: 18px;
    color: #f9f9f9;
}


/* Testimonials Section */

/* === Testimonials Section === */
.testimonials {
  background-color: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #094191;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #f9a925;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
  z-index: 1;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #f9a925;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial strong {
  color: #222;
  font-weight: 600;
  display: block;
}

/* Dots Navigation */
.testimonial-dots {
/*  text-align: center;
  margin-top: 25px;
*/
position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  pointer-events: all;
}

.testimonial-dots .dot {
  /*display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;*/
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: #094191;
}

.testimonial-dot.active {
  background: #094191;
}

/* ---- Client Logos Section Styles ---- */
/* ---- Clients Section Styles ---- */

.clients {
  background-color: #fef7e0;
  padding: 60px 0;
  text-align: center;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #094191;
  position: relative;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.client-logo img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%);
}

/* ================================
   CTA (Call to Action) Section
   ================================ */
/* ================================
   CTA Section – Black Theme
   ================================ */
.cta {
  background-color: #094191;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  box-shadow: 0 -3px 10px rgba(255, 255, 255, 0.1);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background-color: #f9a925; /* TrainoCorp yellow */
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background-color: #e08d1c;
}

.partners-area {
  padding: 60px 20px;
  background-color: #fff;
}

.partner-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.partner-text {
  flex: 1 1 300px;
  max-width: 400px;
}

.partner-text h2 {
  font-size: 2.2rem;
  color: #222;
  font-weight: 700;
}

.underline {
  width: 140px;
  height: 6px;
  background-color: #f9a925;
  margin: 10px 0 20px 0;
  border-radius: 3px;
}

.partner-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.partner-btn {
  display: inline-block;
  padding: 10px 20px;
  color: #094191;
  border: 2px solid #094191;
  background-color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-btn:hover {
  background-color: #094191;
  color: #fff;
}

.partner-logos {
  flex: 1 1 600px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.logo-row img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.05);
}

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

  .partner-logos {
    width: 100%;
    text-align: center;
  }

  .logo-row {
    justify-content: center;
  }
}


/* ================================
   WhatsApp Floating Button
   ================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}



/* ===========================
   Footer
=========================== */
/* ===== Footer Section ===== */
.site-footer {
  background-color: #021d3a;
  color: #ffffff;
  padding: 60px 0 40px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f9a925;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f9a925;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.msme-badge {
  max-width: 100px;
  margin: 12px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-column .social-icons {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 10px;
}

.footer-column .social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.footer-column .social-icons a:hover {
  background-color: #f1f1f1;
  color: #094191; /* Your brand blue or adjust accordingly */
  transform: translateY(-2px);
}

    /* ==== Services Page ==== */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #094191;
}

.alt-bg {
  background: #f4f7fb;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #094191;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.why-card h4 {
  margin-bottom: 10px;
  color: #094191;
}

/* ==== Hero Small ==== */
.hero-small {
  background: linear-gradient(rgba(9,65,145,0.8), rgba(9,65,145,0.8)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.hero-small h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-small p {
  font-size: 1.2rem;
  opacity: 0.9;
}
