/* ===================================================================
   Silver Edge IT Solutions - Main Stylesheet
   Colors: #1D4059 (Primary Navy), #C4A65B (Gold Accent)
   Fonts: Inter (headings), Roboto (body)
   =================================================================== */

/* ---------- CSS Custom Properties ---------- */
/* :root {
  --primary: #1D4059;
  --primary-dark: #152f43;
  --primary-light: #2a5a7e;
  --gold: #C4A65B;
  --gold-light: #d4bc7a;
  --gold-dark: #a8893e;
  --dark: #0d1b2a;
  --navy: #1b2838;
  --light-bg: #f8f9fa;
  --section-bg: #f0f4f8;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --border-color: #e0e6ed;
  --shadow: 0 4px 20px rgba(29, 64, 89, 0.08);
  --shadow-hover: 0 12px 40px rgba(29, 64, 89, 0.15);
  --shadow-gold: 0 4px 20px rgba(196, 166, 91, 0.25);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
} */
:root {
  --primary: #0d2f5d;
  --primary-dark: #152f43;
  --primary-light: #14427c;
  --gold: #2F94DB;
  --gold-light: #37b9ec;
  --gold-dark: #0582db;
  --dark: #0d1b2a;
  --navy: #1b2838;
  --light-bg: #f8f9fa;
  --section-bg: #f0f4f8;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --border-color: #e0e6ed;
  --shadow: 0 4px 20px rgba(29, 64, 89, 0.08);
  --shadow-hover: 0 12px 40px rgba(29, 64, 89, 0.15);
  --shadow-gold: 0 4px 20px rgba(196, 166, 91, 0.25);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

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

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--section-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/*.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}*/

.section-header p {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 18px;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-primary-custom {
  background-color: var(--primary) !important;
}

/* ---------- Top Header Bar ---------- */
.top-header {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid var(--gold);
}

.top-header a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.top-header a:hover {
  color: var(--gold);
}

.top-header .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 6px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-header .social-icons a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.top-header i {
  margin-right: 5px;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  padding: 12px 0;
  transition: var(--transition);
  box-shadow: none;
  z-index: 1050;
}

.header-wrapper-section {
  position: sticky;
  top: 0;
  /* left: 0;
  width: 100%; */
  z-index: 1050;
  transition: all 0.3s ease-in-out;
}

.navbar-scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(29, 64, 89, 0.1);
  padding: 8px 0;
}

.navbar-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 60px;
}

.navbar-brand .brand-text {
  line-height: 1.2;
}

.navbar-brand .brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  /* color: var(--light-bg); */
  padding: 8px 18px;
  position: relative;
  transition: var(--transition);
}

@media screen and (min-width:1024px) {
  .navbar .nav-link {
    padding: 8px 18px !important;
  }
}


.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 36px);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold);

}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border: none;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 166, 91, 0.4);
}

.btn-nav-cta::after {
  display: none !important;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
  z-index: -1;
}

.btn-primary-custom:hover {
  color: var(--white);
  /* transform: translateY(-3px); */
  box-shadow: var(--shadow-hover);
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-gold:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 34px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 34px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: var(--transition);
  /* width: 40px;
  height: 40px; */
  background-color: rgba(235, 250, 255, 0.76);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  /* transform: translateY(-2px); */
}

/* ---------- Hero Section ---------- */
.hero-section {
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 60%, #0a1628 100%); */
  min-height: 80vh;
  display: flex;
  /* align-items: center; */
  position: relative;
  overflow: hidden;
  /* padding-top: 60px; */
  flex-direction: column;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000b0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 10px;
  text-align: center;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h1 span {
  color: var(--gold);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 35px;
  /* max-width: 550px; */
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Hero particles / grid animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle, rgb(65, 116, 150) 1px, transparent 2px)
    /* ,radial-gradient(circle, rgba(255, 255, 255, 0.377) 1px, transparent 1px); */
  ;
  background-size: 60px 60px, 40px 40px;
  background-position: 0 0, 20px 20px;
  animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-60px, -60px);
  }
}

.hero-content-wrapper .hero-content {
  padding-top: 120px;
}

@media screen and (max-width:768px) {
  .hero-content-wrapper .hero-content {
    padding-top: 80px;
  }

  .hero-section {
    min-height: auto;
  }
}

/* ---------- About Preview Section ---------- */
.about-preview {
  position: relative;
}

.about-preview .about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-preview .about-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 64, 89, 0.1), rgba(196, 166, 91, 0.05));
}

.about-preview .experience-badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}

.about-preview .experience-badge h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.about-preview .experience-badge p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.about-list li i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Course Cards ---------- */
/* ---------- Course Cards ---------- */
.course-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}



    .course-card:hover {
        /* transform: translateY(-8px); */
        box-shadow: var(--shadow-hover);
        border-color: transparent;
        border-color: var(--gold);
    }

        .course-card:hover::before {
            transform: scaleX(1);
        }

    .course-card .card-icon {
        width: 100px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: var(--transition);
        /* border: 1px solid rgb(226, 226, 226); */
        /* padding-bottom: 16px; */
        /* border-radius: 8px; */
        /* background: linear-gradient(135deg, rgba(29, 64, 89, 0.08), rgba(196, 166, 91, 0.08)); */
    }

    .course-card:hover .card-icon {
        /* background: linear-gradient(135deg, var(--primary), var(--primary-light)); */
        /* background: transparent; */
        /* border: 1px solid var(--gold); */
    }

    .course-card .card-icon i {
        font-size: 2rem;
        color: var(--primary);
        transition: var(--transition);
    }

    .course-card:hover .card-icon i {
        color: var(--white);
    }

    .course-card .card-icon img {
        /* width: 50px; */
        height: 80px;
        object-fit: contain;
    }

    .course-card h4 {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .course-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .course-card .btn-sm {
        padding: 8px 22px;
        font-size: 16px;
        width: 100%;
        display: block;
    }
/* ---------- Why Choose Us ---------- */
.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--border-color);
}

.why-choose-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateX(5px);
}

.why-choose-item .icon-box {
  min-width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(29, 64, 89, 0.08), rgba(196, 166, 91, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-choose-item:hover .icon-box {
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.why-choose-item .icon-box i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-choose-item:hover .icon-box i {
  color: var(--white);
}

.why-choose-item h5 {
  margin-bottom: 5px;
  font-size: 20px;
}

.why-choose-item p {
  font-size: 18px;
  margin: 0;
}

/* ---------- Process / How We Work ---------- */
.process-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 90%, rgba(196, 166, 91, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(196, 166, 91, 0.05) 0%, transparent 40%);
}

.process-section .section-header h2 {
  color: var(--white);
}

.process-section .section-header h2::after {
  background: var(--gold);
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.process-step .step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(196, 166, 91, 0.3);
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(196, 166, 91, 0.5);
}

.process-step h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.process-connector {
  position: absolute;
  top: 55px;
  right: -30px;
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 2;
}

/* ---------- Industries ---------- */
.industry-card {
  text-align: center;
  padding: 35px 20px;
  /* border-radius: var(--radius); */
  background: var(--white);
  border-bottom: 1px dashed rgb(156, 156, 156);
  transition: var(--transition);
  height: 100%;
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: 72px 1fr;
  margin-right: 20px;
}

.industry-card:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: var(--shadow-hover); */
  border-color: var(--gold);
}

.industry-card .industry-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 64, 89, 0.08), rgba(196, 166, 91, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 18px; */
  transition: var(--transition);
  border: 1px solid rgb(226, 226, 226);
}

.industry-card:hover .industry-icon {
  /* background: linear-gradient(135deg, var(--primary), var(--gold)); */
  border: 1px solid var(--gold);
}

.industry-card .industry-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.industry-card:hover .industry-icon i {
  color: var(--white);
}

.industry-card h5 {
  font-size: 20px;
}

/* ---------- Stats / Counters ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(29, 64, 89, 0.2) 0%, transparent 50%);
}

.stat-item {
  text-align: center;
  padding: 30px 15px;
  position: relative;
  z-index: 2;
}

.stat-item .stat-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: rgb(247, 247, 247);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  /* transform: translateY(-5px); */
  /* border-color: var(--primary-light); */
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 25px;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-card .testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-card .client-name {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.testimonial-card .client-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Partners / Collaborative Network ---------- */
.partners-section .partner-logo {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  min-height: 100px;
}

.partners-section .partner-logo:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  /* transform: scale(1.05); */
}

.partners-section .partner-logo img {
  width: auto;
  max-height: 50px;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: var(--transition);
}

.partners-section .partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.partner-logo:hover .partner-logo-text {
  color: var(--primary);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 166, 91, 0.08);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196, 166, 91, 0.05);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.7);
}

    .footer h5 {
        color: var(--white);
        font-size: 1.15rem;
        /* margin-bottom: 25px; */
        position: relative;
        padding-bottom: 8px;
    }

    /* .footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
} */


.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
}

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

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;

}

.footer .footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer .footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer .footer-contact li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: 1rem;
}

.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer .footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-3px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ---------- Page Header / Inner Banner ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(196, 166, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 64, 89, 0.3) 0%, transparent 50%);
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.page-header .breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.page-header .breadcrumb-item.active {
  color: var(--gold);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Filter Buttons (Courses) ---------- */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btns .btn-filter {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btns .btn-filter:hover,
.filter-btns .btn-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 25px;
}

.blog-card .blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-card .blog-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.blog-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h4 a {
  color: var(--primary);
}

.blog-card h4 a:hover {
  color: var(--gold);
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.contact-info-card .contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 64, 89, 0.08), rgba(196, 166, 91, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.contact-info-card .contact-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon i {
  color: var(--white);
}

.contact-form {
  background: #f0f4f8;
  border-radius: var(--radius);
  padding: 15px 25px 25px;
  border: 1px solid gainsboro;
}

.contact-form .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 64, 89, 0.1);
}

.contact-form textarea.form-control {
  /* min-height: 140px; */
  resize: vertical;
}

/* ---------- About Page Specific ---------- */
.mission-vision-card {
  padding: 35px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.mission-vision-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.mission-vision-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;

}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
  /* transform: translateY(-5px); */
}

.team-card .team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 80px;
  margin: 0 auto 20px;
  /* background: linear-gradient(135deg, var(--primary), var(--gold)); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
}

.team-card h5 {
  margin-bottom: 5px;
}

.team-card .role {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.team-card .team-social {
  margin-top: 15px;
}

.team-card .team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(29, 64, 89, 0.08);
  color: var(--primary);
  margin: 0 3px;
  transition: var(--transition);
}

.team-card .team-social a:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Solutions Page ---------- */
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.solution-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.solution-card .solution-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(29, 64, 89, 0.08), rgba(196, 166, 91, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.solution-card:hover .solution-icon {
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.solution-card .solution-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.solution-card:hover .solution-icon i {
  color: var(--white);
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.solution-card ul li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-card ul li i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---------- Consultation Modal ---------- */
.modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius) var(--radius) 0 0;
  border: none;
}

.modal-title {
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding-top: 40px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .process-connector {
    display: none;
  }

  .about-preview .experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 15px 20px;
  }

  .about-preview .experience-badge h3 {
    font-size: 2rem;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .page-header {
    padding: 100px 0 40px;
  }

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

  .contact-form {
    padding: 25px;
  }

  .top-header .d-flex {
    flex-direction: column;
    align-items: center !important;
    gap: 5px;
  }
}

/* ---------- Contact Mega Card ---------- */
.contact-mega-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(13, 47, 93, 0.1);
  border: 1px solid var(--border-color);
}

.contact-info-side {
  background: linear-gradient(135deg, var(--primary) 0%, #152f43 100%);
  color: var(--white);
  padding: 50px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-side::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(47, 148, 219, 0.1);
  z-index: 0;
}

.contact-info-side .info-content {
  position: relative;
  z-index: 1;
}

.contact-info-side .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-side .icon-box {
  min-width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-info-side .info-item:hover .icon-box {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-info-side .text-box h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-side .text-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.contact-info-side .text-box p a {
  color: inherit;
}

.contact-info-side .social-links {
  display: flex;
  gap: 15px;
}

.contact-info-side .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-info-side .social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-5px);
}

.contact-form-side {
  padding: 50px;
  background: var(--white);
}

.contact-form-side .form-control,
.contact-form-side .form-select {
  border: 1px solid #e0e6ed;
  background-color: #f8f9fa;
  padding: 12px 15px;
  height: auto;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-form-side .form-control:focus,
.contact-form-side .form-select:focus {
  background-color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(47, 148, 219, 0.1);
}

.contact-form-side .form-floating>label {
  color: #8c98a4;
  padding-left: 15px;
}

.contact-form-side .form-floating>.form-control:focus~label,
.contact-form-side .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--gold);
  opacity: 0.8;
}

@media (max-width: 991.98px) {

  .contact-info-side,
  .contact-form-side {
    padding: 40px;
  }
}

@media (max-width: 767.98px) {

  .contact-info-side,
  .contact-form-side {
    padding: 30px 20px;
  }

  .contact-info-side .info-item {
    gap: 15px;
    margin-bottom: 25px;
  }

  .contact-info-side .icon-box {
    min-width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .filter-btns .btn-filter {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Glow effect for cards on hover */
.glow-on-hover:hover {
  box-shadow: 0 0 20px rgba(196, 166, 91, 0.15), 0 8px 30px rgba(29, 64, 89, 0.1);
}

/* Carousel custom styles */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
}

/* smooth loading */
.page-loaded .hero-content {
  animation: fadeInUp 0.8s ease forwards;

}


/* ===placement-css===== */

.placement-card {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid rgb(190, 190, 190);

}

.placement-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--gold);
}

/* Header Gradient */
.card-header {
  top: 10px;
  left: 15px;
  position: absolute;
}

.company-logo-box {
  display: none;
}

/* Company Logo */
.company-logo {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 45px;
  height: 45px;
  object-fit: contain;
  background: var(--white);
  padding: 6px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Placed Badge */
.placed-badge {
  position: absolute;
  top: 5px;
  left: -7px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.2;
}

#placements .card-body {
  padding: 8px 20px;
  padding-top: 15px;
}

:is(#placements, #testimonials, #partners) .placement-company {
  margin-bottom: 0px;
}

:is(#placements, #testimonials, #partners) .owl-stage-outer {
  padding-bottom: 30px;
}

.owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px
}

:is(#placements, #testimonials, #partners) .owl-nav button.owl-prev,
:is(#placements, #testimonials, #partners) .owl-nav button.owl-next,
.custom-nav-icons {
  border: 2px solid var(--primary);
  width: 35px;
  height: 35px;
  border-radius: 40px;
  display: grid;
  place-items: center;
}


.custom-nav-icons i {
  color: var(--primary);
}

.container-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
}


.custom-dropdown {
  position: relative;
}

.drop-down-links {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1060;
}

.drop-down-links li a {
  display: block;
  padding: 10px 25px;
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.drop-down-links li a i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.drop-down-links li a:hover {
  color: var(--primary) !important;
  padding-left: 30px;
  background: rgba(47, 148, 219, 0.05);
}

@media (min-width: 992px) {
  .custom-dropdown:hover .drop-down-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .drop-down-links {
    position: static;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 5px 0 5px 15px;
  }

  .drop-down-links.show {
    display: block !important;
    animation: fadeIn 0.3s ease;
  }

  .drop-down-links li a {
    padding: 8px 15px;
  }

  .drop-down-links li a:hover {
    padding-left: 20px;
  }
}

.mobile-dropdown-toggle {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.rotate {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.category-card .btn-primary-custom {
  font-size: 14px;
  font-weight: 400;
}

.category-card .category-sub-title {
  font-size: 17px;
  text-align: start;
}

.custom-course-card .category-img-wrapper img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.category-card>h6 {
  text-align: start;
}

.custom-course-card {
  display: flex;
  flex-direction: column;
}


/* ======new-footer-css======== */

.inquiry-card {
  /* background: var(--white); */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* padding: 40px; */
  transition: var(--transition);
  background-color: #21344e;
}

.inquiry-card {
  padding: 26px;
  /* background-color: #132a528a */
}

.inquiry-card:hover {
  box-shadow: var(--shadow-hover);
}

/* Title */
.inquiry-title {
  margin-bottom: 25px;
}

.inquiry-title h2 {
  color: var(--primary);
  font-weight: 700;
}

.inquiry-title p {
  color: var(--text-muted);
}

/* Form Controls */
.form-control,
.form-select {
  border-radius: 6px;
  /* border: 1px solid var(--border-color); */
  padding: 6px 8px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgba(47, 148, 219, 0.25);
}

.inquiry-card input:focus,
.inquiry-card select:focus,
.inquiry-card textarea:focus {
  background-color: #21344e;
  color: white;

}

/* Button */
.btn-custom {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
}

.btn-custom:hover {
  background: var(--gold-dark);
}

.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea {
  font-size: 14px;
  background-color: #21344e;
  color: white;
  border: 1px solid #61656b;
}

.inquiry-card input::placeholder,
.inquiry-card textarea::placeholder,
.inquiry-card select::placeholder {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.452);
}

.inquiry-title h3 {
  color: white;
  font-weight: 700;
}


@media screen and (max-width:991px) {
  .show-dropownd-mobile {
    display: block !important;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #ebeaea;
    /* padding-bottom: 10px; */
  }

  .drop-down-links li {
    border-bottom: 1px solid #ebeaea;
  }

  .nav-item:last-child,
  .drop-down-links li:last-child {
    border-bottom: none;
  }

  .nav-item .nav-link {
    padding: 10px 15px;
    text-align: start;
  }

  /* .navbar-nav .nav-link {
    padding: 10px 15px;
  } */
  .navbar .nav-link::after {
    position: static;
  }

  .drop-down-links li a {
    padding: 8px;
  }

  .navbar .nav-link {
    padding: 8px;
  }
}