  /* BACKGROUND - PREMIUM DARK THEME */
.content-wrapper {
  background: radial-gradient(circle at top, #0b1220, #050814);
  padding: 80px 0;
  color: #fff;
  font-family: system-ui, sans-serif;
}

/* HERO GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

/* TITLE - BRAND ORANGE GRADIENT */
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #f15b26, #ff8a4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

/* TEXT */
.hero-text {
  margin-top: 20px;
  font-size: 16px;
  color: #b6c2d9;
  line-height: 1.8;
  max-width: 550px;
}

/* BUTTONS */
.hero-btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* PRIMARY BUTTON - BRAND ORANGE */
.btn-primary,
.btn-outline {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(90deg, #f15b26, #ff7a45);
  color: #fff;
  box-shadow: 0 12px 30px rgba(241, 91, 38, 0.25);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(241, 91, 38, 0.35);
}

/* OUTLINE */
.btn-outline {
  border: 1px solid rgba(241, 91, 38, 0.4);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(241, 91, 38, 0.12);
  border-color: #f15b26;
}

/* IMAGE PREMIUM */
.hero-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(241, 91, 38, 0.25));
  animation: float 4s ease-in-out infinite;
  transition: 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.04);
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }
}
.content-wrapper {
  background:
    radial-gradient(circle at 20% 20%, rgba(241, 91, 38, 0.25), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255, 138, 76, 0.18), transparent 40%),
    radial-gradient(circle at bottom, #070b16, #03050c);

  position: relative;
  /*padding: 80px 0;*/
  color: #fff;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

/* subtle glow noise overlay for luxury feel */
.content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.05;
  pointer-events: none;
}


/*....................................*/


.image-box{
    height:388px;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0px;
    display:block;
    

    /* ONLY TOP PREMIUM LIGHT SHADOW */
    box-shadow:
        0 -10px 25px rgba(0,0,0,0.10),   /* top shadow */
        0 -2px 6px rgba(0,0,0,0.06);     /* soft top depth */

    transition:none !important;
    transform:none !important;
}

/* no hover effect */
.image-box img:hover{
    transform:none !important;
    filter:none !important;

    box-shadow:
        0 -10px 25px rgba(0,0,0,0.10),
        0 -2px 6px rgba(0,0,0,0.06);
        
}



/*...........................................................*/

/* Section */
.corporate-training-section{
    padding:90px 0;
    background:#e5e5e5;
}

/* Badge */
.section-badge{
    display:inline-block;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#fff;
    font-weight:700;
    margin-bottom:14px;
}

/* Title */
.title{
    font-size:23px;
    font-weight:800;
    line-height:1.15;
    color:#0f172a;
    margin-bottom:10px;
}

/* underline accent */
.title-line{
    width:80px;
    height:3px;
    background:linear-gradient(90deg,#f15b26,#f15b26);
    margin:18px 0 28px;
    border-radius:5px;
}

/* Description */
.desc{
    font-size:16px;
    line-height:1.9;
    color:#475569;
    margin-bottom:18px;
}

/* Button */
.cta-btn{
    display:inline-block;
    padding:14px 34px;
    background:#f15b26;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    letter-spacing:.3px;
    transition:0.3s ease;
}

.cta-btn:hover{
    background:#f15b26;
    color:#fff;
    transform:translateY(-2px);
}

/* Image box */
.image-box{
    padding:16px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow:0 20px 50px rgba(15,23,42,0.10);
    border-radius:6px;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:4px;
}
.desc{
    font-size:16px;
    line-height:1.9;
    color:#475569;
    text-align:justify;
    text-justify:inter-word;
    margin-bottom:18px;
    letter-spacing:0.2px;
}
.corporate-training-section .heading-line {
    margin-bottom: 10px !important;
}

.corporate-training-section .desc {
    margin-top: 5px !important;
}
.corporate-training-section .heading {
    margin-bottom: 0 !important;
}

.corporate-training-section .desc:first-of-type {
    margin-top: 0 !important;
}
/* better spacing between paragraphs */
.desc + .desc{
    margin-top:10px;
}

/*...............................................*/

/* =========================
   HERO STYLE COUNTER SECTION
========================= */
.project-counter {
  padding: 100px 20px;
  font-family: system-ui, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 61, 0.25), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(77, 163, 255, 0.18), transparent 45%),
    radial-gradient(circle at bottom, #070b16, #03050c);
}

/* glow */
.project-counter::before,
.project-counter::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(140px);
  opacity: 0.25;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}

.project-counter::before {
  background: #ff6a3d;
  top: -120px;
  left: -120px;
}

.project-counter::after {
  background: #4da3ff;
  bottom: -150px;
  right: -120px;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(40px); }
}

/* heading */
.heading {
  color: #fff;
  margin-bottom: 50px;
}

.heading-title {
  /*font-size: 2.2rem;*/
  margin-bottom: 10px;
}

.heading-text {
  color: #1f2937;;
  max-width: 600px;
  margin: auto;
}

/* container */
.counter-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  position: relative;
  z-index: 2;
}

/* card */
.counter-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 138, 76, 0.15);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px 20px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.counter-box:hover {
  transform: translateY(-10px);
  border-color: #ff8a4c;
  box-shadow: 0 25px 60px rgba(255, 106, 61, 0.18);
}

/* number */
.counter-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff8a4c;
  display: inline-block;
}

/* text */
.counter-box p {
  color: #a7b0c6;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* glow */
.counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,138,76,0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.counter-box:hover::before {
  opacity: 1;
}


/*..........................................*/
.socials {
  display: flex;
  gap:1px;
  align-items: center;
}

.social__item {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Boxy look */
  border-radius: 0px; 
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  
  text-decoration: none;
  /* Hover animation remove kar di gayi hai */
  transition: border-color 0.25s ease;
}

/* ICON centered perfectly */
.icon {
  width: 14px; /* Icon ko box size ke hisaab se adjust kiya */
  height: 14px;
  stroke: #ffffff;
  stroke-width: 1.6;
  fill: none;
}

/* Hover band, bas halka sa border color change (optional) */
.social__item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/*testimonial*/
/*.......................*/

 .testimonial-premium {
        padding: 100px 0;
        background: #e5e5e5;
    }

    .title {
        font-size: 36px;
        color: #111;
        font-family: 'Playfair Display', serif;
        margin-bottom: 10px;
    }

    .divider-gold {
        width: 60px;
        height: 1px;
        background: #f15b26;
    }

    .testimonial-card {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
    }

    .quote-icon {
        font-size: 80px;
        color: black;
        font-family: serif;
        margin-bottom: -20px;
        line-height: 1;
    }

    .testimonial-card .text {
        font-size: 22px;
        line-height: 1.8;
        color: #333;
        font-style: italic;
        font-family: 'Playfair Display', serif;
        margin-bottom: 35px;
    }

    .author-box .name {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }

    .author-box .role {
        font-size: 11px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: sans-serif;
    }

    .swiper-pagination {
        margin-top: 30px !important;
        position: relative !important;
    }

    .swiper-pagination-bullet-active {
        background: Black; !important;
    }
    .testimonial-premium .section-title {
    margin-bottom: 0 !important;
}

.testimonial-premium .heading {
    margin-bottom: 0 !important;
}

.testimonial-premium .heading-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 8px 0 !important;
}

.testimonial-premium .testimonial-wrapper {
    margin-top: 10px !important;
}
    /*..................................................*/
   
    