/********************************************/
/************ For Multiple Page *************/
/********************************************/
/*<!-- CSS for two-corner design -->*/
 .corner-accent {
   position: relative;
   overflow: hidden;
 }
 .corner-accent::before,
 .corner-accent::after {
   content: "";
   position: absolute;
   width: 30px;   /* size of accent */
   height: 30px;
   z-index: 1;
 }
 .corner-accent::before {
   top: 0;
   left: 0;
   background-color: #FFD700; /* golden */
   border-bottom-right-radius: 8px;
 }
 .corner-accent::after {
   bottom: 0;
   right: 0;
   background-color: #00B4D8; /* teal blue */
   border-top-left-radius: 8px;
 }




/********************************************/
/**************** Home Page *****************/
/********************************************/
*{
    margin:0;
    padding:0;
}

.header-top{
    border-bottom: 5px solid rgb(234, 228, 228);
}

.header-bottom{
    background-color: #0a0933;
}

.header-bottom nav div div ul li a{
    font-size:22px;
    color:white;
}

.header-bottom nav div div ul li a:hover{
    color:red;
}
.navbar-brand:hover{
    color:red;
}

#navDemo a{
    text-decoration: none;
    list-style:none;
    color: orange;
    font-size:25px;
    padding-left:20px;
}





/* Second Container-fluid Design */
.carousel-item IMG{
    filter: blur(px);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: 800;
    color: white;
}





/* Notice Style */
#ContentNews_Newstick{
    background-color: hsl(142, 70%, 49%);
}

.tnews li:not(:first-child):before{
   padding: 0 15px;
   content: '|';
}

.topnews_headlines ul li a{
    color: white;
    text-decoration: none;
}





/* Custom Button Desgin*/
.view-all-btn {
   display: inline-block;
   background-color: #d4af37;
   color: #fff;
   padding: 12px 30px;
   border-radius: 30px;
   font-size: 1rem;
   text-align: center;
   margin: 50px auto 0;
   transition: background-color 0.3s;
}
.view-all-btn:hover {
   background-color: #00B4D8;
   color: #fff;
}





/* 5+ Years, Gradient Background & Counters */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 240px;
  min-height: 160px;
  margin: 10px auto;
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: #FFD700;
  color: #0d1b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.counter {
  font-size: 2rem;
  color: #00B4D8;
}

/* ✅ For tablets (900–1024px) — keep cards centered in 2x2 grid */
@media (min-width: 900px) and (max-width: 1024px) {
  .stats-row {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
  .stat-card {
    max-width: 280px;
    margin: 10px auto;
  }
}

/* ✅ For screens < 900px — center everything full width */
@media (max-width: 899px) {
  .stats-row {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
  }
  .stat-card {
    width: 90%;
    max-width: 320px;
    margin: 10px auto;
  }
}

/* ✅ For smaller phones */
@media (max-width: 600px) {
  .icon-circle {
    width: 50px;
    height: 50px;
  }
  .counter {
    font-size: 1.6rem;
  }
  .stat-card p {
    font-size: 0.9rem;
  }
  .stat-card {
    min-height: 130px;
  }
}





/* Cutting-Edge Technologies: Modern Software Solutions */
.tech-card {
    padding: 20px;                  /* Inner spacing */
    border-radius: 10px;            /* Rounded corners */
    width: 350px;                    /* Fixed width */
    border: 1px solid #ccc;          /* Light border */
    background-color: #fff;          /* White background */
    text-align: center;              /* Centered text */
    transition: all 0.3s ease;       /* Smooth hover transitions */
}

/* Hover effect for card */
.tech-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transform: translateY(-5px);                  /* Slight lift */
    border-color: #00B4D8;                        /* Accent border color */
}

/* Images inside tech cards */
.tech-card img {
    display: block;                /* Block-level for centering */
    margin: 10px auto 0 auto;      /* Top spacing + centered */
    width: 100%;                    /* Full width of container */
    max-width: 200px;               /* Limit image size */
    height: auto;                   /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth hover scaling */
}

/* Image hover effect */
.tech-card:hover img {
    transform: scale(1.05);        /* Slight zoom */
}

/* Tech card title */
.tech-title {
    font-size: 1.25rem;            /* Slightly larger font */
    margin-bottom: 10px;           /* Space below title */
}

/* Tech card text */
.tech-text {
    color: #333;                    /* Dark gray text */
    margin-bottom: 15px;           /* Space below paragraph */
}

/* Gold-colored icons */
.gold-icon {
    filter: brightness(0) saturate(100%) invert(76%) sepia(62%) saturate(637%) hue-rotate(7deg) brightness(95%) contrast(95%);
}

/* H4 header color */
.h4-header {
    color: black;
}

/* Responsive behavior */
@media (max-width: 768px) {
    /* Tech card full width on small screens */
    .tech-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Image full width */
    .tech-card img {
        max-width: 100%;
    }

    /* Stack flex container vertically with spacing */
    .container-fluid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}





/* Book Free Consultation Section */
.consultation-section {
    background: linear-gradient(to bottom right, #f2f7fd, #e3f2fd); /* Light gradient background */
    border-radius: 16px; /* Rounded corners for section */
    padding: 50px 0; /* Vertical padding */
}

/* Section Heading */
.consultation-section h2 {
    font-weight: bold; /* Bold heading */
}

/* Features List Styling */
.features-list {
    list-style: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    font-size: 1rem; /* Standard font size */
}

.features-list li {
    margin-bottom: 8px; /* Space between list items */
    font-weight: 500; /* Medium font weight */
}

/* Animated Gradient Background    */
.bg-gradient-primary {
    background: linear-gradient(270deg, #00B4D8, #d4af37, #00B4D8); /* Gradient colors */
    background-size: 600% 600%; /* Large background for smooth animation */
    animation: gradientMove 5s ease infinite; /* Animate gradient */
    color: #fff; /* Text color to ensure readability on gradient */
}

/* Gradient Animation Keyframes */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Card Styling */
.card {
    border-radius: 18px; /* Rounded card corners */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* Subtle shadow for depth */
}

/* Buttons Styling */
.btn-success, .btn-primary {
    border-radius: 30px; /* Pill-shaped buttons */
    font-weight: bold; /* Bold text on buttons */
}

/* Form Controls Styling */
.form-control, .form-select {
    border-radius: 12px; /* Rounded input fields */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .consultation-section h2 { font-size: 1.5rem; } /* Smaller heading on tablets */
    .features-list { font-size: 0.95rem; } /* Slightly smaller list text */
    .card { border-radius: 12px; } /* Reduce card radius on smaller screens */
}











/********************************************/
/**************** About Page ****************/
/********************************************/
/*About Us Introduction */
 .agency-intro {
   padding: 60px 20px;
 }
 .agency-intro .container {
   max-width: 1200px;
   margin: auto;
 }
 /* Header Section */
 .intro-header {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
   margin-bottom: 40px;
   gap: 20px;
 }
 .intro-left {
   flex: 1;
   min-width: 300px;
 }
 .intro-right {
   flex: 1;
   min-width: 300px;
   color: #555;
   font-size: 15px;
   line-height: 1.7;
 }
 .tag {
   display: inline-block;
   background: #fff;
   color: #00B4D8;
   font-weight: 600;
   padding: 5px 15px;
   border-radius: 20px;
   font-size: 14px;
   box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
   margin-bottom: 15px;
 }
 .intro-left h2 {
   font-size: 36px;
   font-weight: 700;
   margin-bottom: 15px;
   color: #222;
   line-height: 1.3;
 }
 .intro-left h2 .highlight {
   color: #00B4D8;
 }
 .intro-left p {
   color: #555;
   font-size: 15px;
 }
  /* Features Section */
 .features {
   display: flex;
   justify-content: space-between;
   margin: 40px 0;
   gap: 20px;
   flex-wrap: wrap;
 }
 .feature-card {
   background: #fff;
   flex: 1;
   min-width: 250px;
   padding: 20px;
   border-radius: 12px;
   text-align: center;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
 }
 .feature-card:hover {
   transform: translateY(-5px);
 }
 .feature-card .icon {
   font-size: 28px;
   margin-bottom: 15px;
   width: 60px;
   height: 60px;
   line-height: 60px;
   border-radius: 50%;
   display: inline-block;
   color: #fff;
 }
 .feature-card .icon.vibrant {
   background: #00B4D8;
 }
 .feature-card .icon.dark {
   background: #222;
 }
 .feature-card h3 {
   font-size: 18px;
   margin-bottom: 10px;
   font-weight: 600;
 }
 .feature-card p {
   font-size: 14px;
   color: #666;
 }
 /* Media Section */
 .media-block {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   justify-content: center;
 }
 .image-main img,
 .video-preview img {
   width: 100%;
   border-radius: 12px;
   box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
 }
 .image-main {
   flex: 2;
 }
 .video-preview {
   flex: 1;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 .play-btn {
   position: absolute;
   width: 70px;
   height: 70px;
   background: #00B4D8;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 24px;
   cursor: pointer;
   transition: all 0.3s ease;
 }
 .play-btn:hover {
   background: #d62828;
 }
 /* Responsive */
 @media (max-width: 768px) {
   .intro-header {
     flex-direction: column;
     text-align: center;
   }
   .features {
     flex-direction: column;
   }
   .feature-card {
     text-align: center;
     justify-content: center;
   }
   .media-block {
     flex-direction: column;
   }
}





/*<!-- Why Choose Us -->*/
  .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  /* Left Images */
  .col-img-side {
    flex: 1;
    position: relative;
    min-width: 300px;
  }
  .about-images {
    display: flex;
    gap: 18px;
  }
  .about-images .big-img {
    width: 60%;
    border-radius: 50px 0 50px 0;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .about-images .side-imgs {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
  }
  .about-images .small-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }
  .tag-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f4a300;
    color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  /* Right Card */
  .col-content-side {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .about-right-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 0 0 0 30px;
    padding: 30px;
  }
  .about-right-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .about-right-card h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #00B4D8;
  }
  .about-right-card h2 span {
    color: #f4a300;
  }
  .about-right-card > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .info-icon {
    width: 46px;
    height: 46px;
    background: #ffeeca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #f4a300;
    font-size: 20px;
    flex-shrink: 0;
  }
  .info-text h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #222;
  }
  .info-text p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  .stat-row {
    margin: 28px 0 0 0;
  }
  .stat-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #444;
    border-left: 5px solid #f4a300;
  }

  .button-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  .btn-discover {
    background: #f4a300;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(244,163,0,0.2);
    transition: all 0.3s ease;
  }
  .btn-discover:hover {
    background: #e19100;
  }

  /* Timeline */
  .timeline {
    position: relative;
    width: 900px;
    max-width: 100%;
    margin: 60px auto;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: #ddd;
  }
  section.timeline-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
  }
  section.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  .content-box {
    background: #00B4D8;
    color: #fff;
    padding: 20px 30px;
    border-radius: 40px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  section.timeline-step:nth-child(2) .content-box,
  section.timeline-step:nth-child(4) .content-box,
  section.timeline-step:nth-child(6) .content-box,
  section.timeline-step:nth-child(8) .content-box,
  section.timeline-step:nth-child(10) .content-box,
  section.timeline-step:nth-child(12) .content-box{
    background: #f4a300;
  }
  .content-box h3 {
    margin: 0;
    font-size: 18px;
  }
  .content-box p {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
  }
  .icon-circle {
    background: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    z-index: 1;
  }
  .icon-circle i { color: #d4af37; font-size: 30px; }

  .step-label {
    font-size: 32px;
    font-weight: 900;
    color: #00B4D8;
    margin: 0 20px;
  }
  section.timeline-step:nth-child(2) .step-label,
  section.timeline-step:nth-child(4) .step-label,
  section.timeline-step:nth-child(6) .step-label,
  section.timeline-step:nth-child(8) .step-label,
  section.timeline-step:nth-child(10) .step-label,
  section.timeline-step:nth-child(12) .step-label{
    color: #f4a300;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .row { flex-direction: column; }
    .tag-box { position: static; margin-top: 15px; }
    .about-right-card { margin: 20px 0 0 0; }
  }
  @media (max-width: 900px) {
    .timeline::before { left: 30px; transform: none; }
    section.timeline-step {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 90px;
      margin: 50px 0;
    }
    .icon-circle {
      position: absolute;
      left: 0;
      top: 0;
      width: 70px;
      height: 70px;
    }
    .step-label {
      position: absolute;
      left: 0;
      top: 80px;
      font-size: 15px;
    }
    .content-box {
      width: 100%;
      margin-top: 25px;
      border-radius: 25px;
    }
  }










/********************************************/
/************ IT-Training Page *************/
/********************************************/
/* GENERAL STYLING */
.Just-Train-IT .jtit-heading {
    margin-bottom: 20px;
}

.Just-Train-IT .jtit-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* GRID STYLING */
.Just-Train-IT .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.Just-Train-IT .grid-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.Just-Train-IT .grid-box i {
    font-size: 30px;
    color: #3DDC84;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.Just-Train-IT .grid-box p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.Just-Train-IT .grid-box:hover {
    background-color: #e6f3f3;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.Just-Train-IT .grid-box:hover i {
    color: #d4af37;
}
/**/
.Just-Train-IT .right {
    width: 100%;
    text-align: center;
}

.Just-Train-IT .right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.Just-Train-IT .right img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}


/* RESPONSIVE STYLING */
/* Large Desktops & Laptops (≥1200px) */
@media (min-width: 1200px) {
    .Just-Train-IT .jtit-description {
        font-size: 16px;
    }

    /* Image: only large screens have min-height */
    .Just-Train-IT .right img {
        min-height: 550px;
    }
}

/* Laptops and below (<1200px) */
@media (max-width: 1200px) {
    .Just-Train-IT .jtit-heading {
        font-size: 42px;
    }

    .Just-Train-IT .jtit-description {
        font-size: 15px;
    }
}

/* Tablets (<992px) */
@media (max-width: 992px) {
    .Just-Train-IT .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .Just-Train-IT .jtit-heading {
        font-size: 36px;
    }

    .Just-Train-IT .jtit-description {
        font-size: 14px;
    }

    .Just-Train-IT .right img {
        min-height: unset; /* remove fixed height */
    }

    .Just-Train-IT .right {
        margin-top: 30px;
    }
}

/* Small Tablets & Large Phones (<768px) */
@media (max-width: 768px) {
    .Just-Train-IT .grid {
        grid-template-columns: 1fr;
    }

    .Just-Train-IT .jtit-heading {
        font-size: 30px;
    }

    .Just-Train-IT .jtit-description {
        font-size: 14px;
    }

    .Just-Train-IT .right img {
        min-height: unset;
    }
}

/* Mobile Devices (<576px) */
@media (max-width: 576px) {
    .Just-Train-IT .jtit-heading {
        font-size: 26px;
    }

    .Just-Train-IT .jtit-description {
        font-size: 13px;
    }

    .Just-Train-IT .grid-box {
        padding: 20px 10px;
    }

    .Just-Train-IT .right img {
        min-height: unset;
    }
}










/********************************************/
/************ IT-Training Page *************/
/********************************************/