
   /* Top Bar */
    .top-bar {
      background-color:#14548a;
      color: #fff;
      font-size: 14px;
      padding: 1px 0;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
      font-weight: 500;
    }

    .top-bar a:hover {
      text-decoration: underline;
    }

.mr-rit{margin-right: -62px !important;}
.mr-mintop{margin-top: -2px;}
.pulse {
  background: #16568a;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-block;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.08); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .blink-fade,
  .blink-step,
  .blink-color,
  .pulse {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

    /* Main Navbar */
    .navbar {
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .navbar-brand img {
      height: 66px;
    }

    .nav-link {
      color: #000 !important;
      font-weight: 500;
      padding: 10px 12px !important;
    }

    .nav-link:hover, .dropdown-item:hover {
      color: #f68d3e !important;
    }

    /* Login/Register Buttons */
    .btn-outline-danger {
      border-radius: 25px;
      padding: 5px 20px;
      font-weight: 500;
    }

    .dropdown-menu.mega-menu {
    width: 59%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 100%;
    border-top: 3px solid #f68d3e;
    padding: 20px 40px;
    background-color: #fff;
}

    .mega-menu .col {
      min-width: 200px;
    }

    .mega-menu h6 {
      font-weight: 700;
      color: #d9232d;
    }

    .mega-menu a {
      color: #333;
      text-decoration: none;
      display: block;
      padding: 5px 0;
    }

    .mega-menu a:hover {
      color:#f68d3e;
    }

    /* Social Icons */
    .social-icons a {
      color: #d9232d;
      font-size: 18px;
      margin-left: 10px;
      text-decoration: none;
    }

.serviecs-drop{}
.serviecs-drop .bi{color: #f68d3e;}

    /* Responsive Fix */
    @media (max-width: 992px) {
      .dropdown-menu.mega-menu {
        position: static !important;
        border: none;
        padding: 15px;
        width: 99%;
      }
    }
    /* Hero Section */
    .hero-section {
background: #43C6AC;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #191654, #43C6AC);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #191654, #43C6AC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section h1 {
      font-weight: 700;

      font-size: 2rem;
    }

    .hero-section p {
      color: #f48a3b;
      font-size: 1.1rem;
    }
    .or-clr{color: #f48a3b;}

    .learn-btn {
      background: #cb681f;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      padding: 10px 30px;
      border: none;
      transition: all 0.3s ease;
    }

    .learn-btn:hover {
      background: #145589;
      transform: translateY(-2px);
    }

    /* Animated Boxes */
    .animated-box {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .animated-box:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .animated-box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .animated-box:hover img {
      transform: scale(1.1);
    }

    /* Floating Animation */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .floating {
      animation: float 3s ease-in-out infinite;
    }


     /* Section styling */
    .about-section {
      padding: 60px 0;
      position: relative;
      background-color: #fafbfb;
      overflow: hidden;
    }

    .about-title {
      color: #16568a;
      font-weight: 700;
      font-size: 2.5rem;
      line-height: 1.3;
    }

    .highlight {
      color: #c24b5a;
    }

    .about-section p {
      color: #5f5f5f;
      font-size: 16px;
      margin-bottom: 1rem;
    }

    .about-section .btn-custom {
      background-color: #cb681f;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }

    .about-section .btn-custom:hover {
      background-color: #a83948;
      transform: translateY(-3px);
      color: #fff;
    }

    /* Image box animation */
    .image-box {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      transition: all 0.4s ease-in-out;
/*      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);*/
    }

    .image-box:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    }

    .image-box img {
      width: 69%;
      height: auto;
      transition: all 0.5s ease;
      border-radius: 20px;
    }

    .image-box:hover img {
      transform: scale(1.1);
    }

    /* Decorative corners */
    .decor-line {
      position: absolute;
      border: 3px solid #c24b5a;
      border-radius: 10px;
    }

    .decor-left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
    border-left: none;
    border-bottom: none;
    border-top: none;
    position: absolute;

}

    .decor-right {
      right: 118px;
      top: 30px;
      width: 130px;
      height: 130px;
      border-left: none;
      position: absolute;
      border-bottom: none;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .about-section {
        text-align: center;
      }
      .decor-left, .decor-right {
        display: none;
      }
      .image-box {
        margin-top: 30px;
      }
    }



    .features-section {
      background-color: #023588;
      padding: 80px 0 0px;
      position: relative;
      overflow: hidden;
    }

    .feature-box {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      border-radius: 12px;
      background-color: #f8f9fa;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 rgba(0,0,0,0);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      background-color: #eef3ff;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
      background-color: #e8ecf9;
      color: #0d3b8c;
      font-size: 28px;
      border-radius: 50%;
      padding: 15px;
      transition: all 0.3s ease;
    }

    .feature-box:hover .feature-icon {
      background-color: #0d3b8c;
      color: #fff;
      transform: rotate(10deg);
    }

    .feature-title {
      font-weight: 700;
      color: #0d3b8c;
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .feature-text {
      color: #555;
      font-size: 0.95rem;
      margin: 0;
    }

    .center-image {
      position: relative;
      text-align: center;
    }

    .center-image img {
      max-width: 80%;
      border-radius: 12px;
      transition: all 0.4s ease-in-out;
    }

    .center-image img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 992px) {
      .feature-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
      }
      .center-image {
        margin-top: 40px;
        margin-bottom: 40px;
      }
      .feature-icon {
        margin-bottom: 10px;
      }
    }

    .title{}

    .title h2{color: #16568a; font-size: 36px; font-weight: bold;}


 .choose-section {
      padding: 80px 0;
      position: relative;
            background-color:#14548a;
    }

    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      width: 60px;
      height: 60px;
      border: 3px solid #f5d78b;
      border-radius: 5px;
    }

    .choose-section::before {
      top: 40px;
      left: 40px;
      border-right: none;
      border-bottom: none;
    }

    .choose-section::after {
      bottom: 40px;
      right: 40px;
      border-left: none;
      border-top: none;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 2.3rem;
      color: #fff;
    }

    .section-title h2 span {
      color:#f68d3e;
    }

    .choose-card {
      background: #fff;
      color: #000;
       min-height: 419px;
      border-radius: 15px;
      padding: 26px 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: all 0.4s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    .choose-card img {
/*      width: 70px;
      height: 70px;*/
      margin-bottom: 15px;
      transition: transform 0.4s ease;
    }

    .choose-card:hover img {
      transform: scale(1.2) rotate(5deg);
    }

    .choose-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .choose-card p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 0;
    }

    .choose-card:hover {
      transform: translateY(-10px);
      background: linear-gradient(135deg, #fff, #fbe4d8);
      box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }
    .line{width: auto !important; height: auto !important;}

    @media (max-width: 991px) {
      .choose-section {
        padding: 60px 20px;
      }
    }

 .carousel-section {
  background: url(../images/bg-blue.jpg) no-repeat;
    /*  background-color: #14548a;*/
    background-attachment: fixed;
      color: #fff;
      padding: 70px 0 90px;
      position: relative;
    }

    .carousel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .carousel-title {
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
    }

    /* Custom Navigation Buttons */
    .custom-nav {
      position: absolute;
      top: -34px;
      right: 50px;
      display: flex;
      gap: 10px;
      z-index: 20;
    }

    .custom-nav button {
      background: #fff;
      color: #14548a;
      border: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .custom-nav button:hover {
      background: #0d3c66;
      color: #fff;
      transform: scale(1.1);
    }

    .owl-carousel .item {
      background: #fff;
      color: #333;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      margin: 10px;
    }

    .owl-carousel .item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }

    .item img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .item-content {
      padding: 15px;
      text-align: center;
    }

    .item-content h5 {
      color: #14548a;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .item-content p {
      color: #555;
      font-size: 0.9rem;
      margin-bottom: 0;
    }

.banner-career {
      background: url('../images/career.jpg') center/cover no-repeat;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    .banner-career h1 {
      font-size: 48px;
      font-weight: 700;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .career-section {
      padding: 60px 0;
    }

    .career-img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .career-box {
      background: #ffffff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
    }

    label {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .btn-career {
      background-color: #0d6efd !important;
      color: #fff !important;
      font-weight: 600 !important;
      padding: 10px 25px !important;
      border-radius: 8px !important;
      width: 100% !important;
    }

    /* About us page Css */
    .about-uspage {
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), 
                  url('../images/about-usbanner.jpg') no-repeat;
                  background-size: cover;
                  background-position:top center;
      color: #fff;
      text-align: center;
      padding: 146px 20px;
      position: relative;
      background-attachment: fixed;
    }

      .about-uspage  h1 {
      font-weight: 700;
      font-size: 3rem;
      animation: fadeInDown 1s ease;
    }

      .about-uspage p {
      font-size: 1.2rem;
      margin-top: 15px;
      animation: fadeInUp 1.5s ease;
    }

    /* Section Styling */
    .ab-section {
      padding: 80px 0;
    }

    .about-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      animation: fadeIn 1.2s ease;
    }

    /* Vision & Mission Section */
    .vm-section {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 40px 30px;
      text-align: center;
    }

    .vm-section:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .vm-section i {
      font-size: 3rem;
      color: #0d6efd;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .vm-section:hover i {
      transform: rotate(10deg) scale(1.1);
    }

    .vm-section h3 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #0d6efd;
    }

    /* Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }



     /* Engagement models page CSS */
    .engmodels-section {
      position: relative;
      background: url('../images/engagement-models-banner.png') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 120px 20px 150px;
      background-attachment: fixed;
    }

    .engmodels-section h1 {
      font-size: 2.8rem;
      font-weight: 700;
      animation: fadeInDown 1s ease-in-out;
    }

    .engmodels-section p {
      font-size: 1.2rem;
      margin-top: 15px;
      animation: fadeInUp 1s ease-in-out;
    }

    /* Card Section */
    .model-card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      background: #fff;
      overflow: hidden;
    }

    .model-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }

    .model-icon {
      font-size: 50px;
      color:#1d5883;
      margin-bottom: 15px;
    }

    .card-title {
      font-weight: 600;
      color: #333;
    }

    .card-text {
      color: #555;
    }

    /* Fade animation */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Scroll animation */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }


 /* Privacy and Terms page CSS*/
    .privacy-section {
      background: linear-gradient(to right, #002b5c, #0056b3);
      color: #fff;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

       .privacy-section h1 {
      font-weight: 700;
      letter-spacing: 1px;
      animation: fadeInDown 1s ease-in-out;
    }

       .privacy-section p {
      font-size: 1.1rem;
      opacity: 0.9;
      animation: fadeInUp 1s ease-in-out;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Content Section */
    .content-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .content-box {
      background: #ffffff;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }

    .content-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .content-box i {
      font-size: 50px;
      color: #0056b3;
      margin-bottom: 20px;
      transition: transform 0.4s ease;
    }

    .content-box:hover i {
      transform: rotate(10deg) scale(1.1);
    }

    .content-box h2 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .content-box p {
      color: #555;
      line-height: 1.8;
    }

    /* Fade Animation on Scroll */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }



    /* Responsive */
    @media (max-width: 768px) {
        .about-uspage h1 { font-size: 2.2rem; }
      .vm-section { margin-bottom: 20px; }
    }

 /* Resposnive css */

    @media (max-width: 768px) {
      .carousel-section .custom-nav {
              top: 18px;
        right: auto;
        left: 40%;
      }
      .navbar-brand img {height: auto;width: 250px;}
      .philosophy-content .text-left{text-align: center !important;}
      .header-section h1{font-size: 2.3rem !important;}
      .principle .custom-nav{top: -47px !important;}
   .top-bar{display: none;}
   #goTopBtn{bottom: 96px !important;}
footer{text-align: center;}
    }
     /* Resposnive css  end*/

    .pt-dding{padding: 26px 11px !important;}

        /* Styling for the main header section, mimicking the image */
        .header-section {
            background-color: ##6a0e1c;
            padding: 5rem 0;
            color: #ffffff;
        }

        .header-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .header-section .subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 0.5rem;
        }

        .header-section .accent-text {
            color:#f68d3e;
        }

        .header-section .divider {
            width: 150px;
            height: 3px;
            background-color:#f1b7c1;
            margin-top: 1.5rem;
        }

          .hero {
            position: relative;
            padding: 60px 20px;
            background-color: #eee;
            background-size: cover;
            color: #333;
        }
        .content-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            padding: 40px 20px;
        }
        .text-content {
            flex: 1;
            min-width: 300px;
        }
        .text-content h1 {
          color: #16568a;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .text-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        .btn-learn {
             display: inline-block !important;
            background-color: #f68d3e;
            color: #fff !important;
            padding: 10px 30px !important;
            display: inline-block !important;
            border: none;
            text-decoration: none !important;
            border-radius: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-learn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
        }

        .image-content {
            flex: 1;
            min-width: 300px;
            text-align: right;
        }
        .image-content img {
    max-width: 66%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
        .image-content img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }
        .animated {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @media (max-width: 768px) {
            .text-content h1 {
                font-size: 2rem;
            }
            .content-row {
                flex-direction: column;
                text-align: center;
            }
            .image-content {
                text-align: center;
            }
        }


 /* Parallax Section Background */
    .philosophy-section {
background: url(../images/bg-blue.jpg) no-repeat;
    /* background-color: #14548a; */
    background-attachment: fixed;
    color: #fff;
    padding: 70px 0 90px;
    position: relative;
          background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      color: #fff;
      padding: 100px 0;
    }

    /* Overlay for readability */
    .philosophy-overlay {
/*      background: #023588;*/
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .philosophy-content {
      position: relative;
      z-index: 2;
    }

    .section-title {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .para{    font-size: 15px;
    text-transform: initial;}

    /* Cards */
    .philosophy-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 30px;
      transition: all 0.4s ease;
      backdrop-filter: blur(5px);
      transform: translateY(30px);

    }

    .philosophy-box h4 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .philosophy-box p {
      color: #ddd;
    }

    /* Hover Animation */
    .philosophy-box:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Fade-up animation */
    .fade-up {
      animation: fadeUp 1s ease forwards;
    }

    @keyframes fadeUp {
      0% {
        transform: translateY(30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

.principle .custom-nav { top: -61px; right: 11px}

.principle .choose-card {
    min-height: auto !important;
    padding: 16px !important;
    min-height: 349px !important;
}
.text-left{text-align: left !important;}
.organe-clr{color: #f68d3e;}


  .service-grid {  padding: 0 1rem;
        }
        .service-box {
            background: #fff;
            padding: 0px 0px 1.5rem 0px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        .service-box i {
            font-size: 2rem;
            color: #6c757d;
            margin-bottom: 1rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .service-box:hover i {
            transform: scale(1.2);
            color: #007bff;
        }
        .service-box h5 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .service-box p {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .service-box a {
            color: #6c757d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .service-box a:hover {
            color: #007bff;
        }
        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            .service-box {
                padding: 1rem;
            }
        }

 .list-section {
            flex: 1;
            padding-right: 20px;
        }
        .image-section {
            flex: 1;
            text-align: center;
        }
        .list-section h2 {
      
        }
        .list-section ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        .list-section li {
            margin-bottom: 10px;
            cursor: pointer;
        }
        .list-section li:hover {
            color: #007bff;
        }
        .custom-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            transition: opacity 0.5s ease;
        }
        .fade-out {
            opacity: 0;
        }
        .fade-in {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .container-custom {
                flex-direction: column;
                text-align: center;
            }
            .list-section {
                padding-right: 0;
                margin-bottom: 20px;
            }
        }

.modular-services{background-color:#023588;
 padding: 30px 0px 80px;}

/* Go to top button styling */
   #goTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    display: none;
    background-color: #16568a;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    #goTopBtn:hover {
      background-color: #0b5ed7;
      transform: scale(1.1);
    }



 /* Corporate Solutions Section */
        .solutions-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .solution-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1a3a5f, #f5a623);
        }
        
        .solution-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .solution-icon {
            font-size: 2.5rem;
            color:#16588c;
            margin-bottom: 1.5rem;
        }
        

/*-----advisory css-----*/

        .advisory-section {
            padding: 60px 0;
            background-color:#fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

       

        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 1s ease-out;
        }

        .card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Different styles for each section */
        .advisory-card {
           background-color: #023588 !important;
            color:#fff;
        }

        .coaching-card {
/*            background: linear-gradient(135deg, #28a745, #20c997);
*/            
           background-color: #878787 !important;
            color:#fff;
        }

        .pricing-card {
/*            background: linear-gradient(135deg, #6f42c1, #9d4edd);
*/              background-color: #023588 !important;
            color:#fff;
        }

        .card-title {
            font-size: 1.6rem !important;
            font-weight: 600;
            margin-bottom: 27px !important;
        }

        .card-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .list-group-item {
            background-color: transparent !important;
            border: none !important;
            font-size: 1rem !important;
            padding: 10px 0  0px !important;
            color: #fff !important;
            transition: padding-left 0.3s ease !important;
        }

        .list-group-item:hover {
            padding-left: 15px !important;
        }

        .list-group-item i {
            margin-right: 10px !important;
            transition: color 0.3s ease !important;
        }

        .list-group-item:hover i {
            color: #ffd700 !important;/* Gold color on hover for icon */
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
          .mba-title {
                font-size: 2rem;
            }
        }


   /* Main Contact Section */
    .contact-section {

      align-items: center;
      justify-content: center;
      padding: 60px 0;
    }

    .contact-image img {
      width: 100%;
      border-radius: 8px;
    }

    .contact-form {
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 30px;
    }

    .contact-heading small {
      color: #6c757d;
      font-weight: 500;
    }

    .contact-heading h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1d273b;
    }

    .form-control, .form-select {
      border-radius: 6px;
      padding: 10px 12px;
    }

    .captcha {
      font-weight: bold;
      font-size: 1.3rem;
      letter-spacing: 5px;
      color: #6f42c1;
      background: #f8f9fa;
      padding: 8px 15px;
      border-radius: 6px;
      display: inline-block;
      user-select: none;
    }

    .btn-primary {
      background-color: #007bff;
      border: none;
      font-weight: 600;
      padding: 10px 25px;
    }

    .btn-primary:hover {
      background-color: #0056b3;
    }

    /* Floating "Enquire Now" Button */
    .enquire-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #4368a3;
    color: #fff;
    padding: 12px 11px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    letter-spacing: 1px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s 
ease;
}

    .enquire-btn:hover {
      background-color: #007bff;
      color: #fff;
      transform: translateY(-50%) scale(1.05);
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        text-align: center;
      }

      .contact-image {
        margin-bottom: 30px;
      }

      .enquire-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
        writing-mode: horizontal-tb;
        border-radius: 30px;
        padding: 10px 18px;
      }
    }
 .service-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            text-align: center;
            padding: 20px;
            width: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .service-card p{color: #fff;}
        .service-card:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #fff;
            transition: transform 0.3s ease;
        }
        .service-card:hover .service-icon {
            transform: rotate(360deg);
            color: #f48a3b;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .service-card {
            animation: fadeIn 1s ease-in-out;
        }

/* services page css */
    .services-page{
      background-image:
       linear-gradient(180deg, rgba(13,110,253,0.06), rgba(13,110,253,0.02)), url('../images/growth.jpg');
      background-size:cover;
      background-position:center;
      padding:5.5rem 0 10rem;
      color: #0b1a2b;
    }
   .services-page .lead{opacity:0.95}

    /* Service cards */
    .service-boxn{
      border: none;
      border-radius: 12px;
      transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
      box-shadow: var(--soft-shadow);
      background: linear-gradient(180deg,#fff,#fbfdff);
      min-height: 220px;
      display:flex;
      text-align: left;
      flex-direction:column;
    }
     .service-boxn:hover{
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 16px 40px rgba(13,110,253,0.12);
    }
    .service-icons{
      width:64px;height:64px;border-radius:12px;
      display:grid;place-items:center;
      font-size:28px;
      background:linear-gradient(135deg,#0d6efd,#6c63ff);
      color:#fff;box-shadow:0 6px 18px rgba(12,85,179,0.12);
    }
        .service-icons i{color: #fff;}
 .service-boxn:hover i {
            transform: scale(1.2);
            color: #efeae6;
        }
    .service-meta{flex:1}

    /* deliverables list */
    .deliverables{list-style:none;padding-left:0}
    .deliverables li:before{content:'\2022';color:var(--accent);display:inline-block;width:1em;margin-left:-1em;margin-right:.6em}

   /* filters */
    .chip{border-radius:999px;padding:.35rem .8rem;border:1px solid rgba(13,110,253,0.12);cursor:pointer;transition:all .18s}
    .chip.active{background:#0d6efd;color:#fff;border-color:transparent}

.btn-dis{line-height: 30px !important;
    background: #f48a3a !important;
    color: #fff !important;
    border-color: #f48a3a !important;}

    .explo-ser{    background-color: #205d90 !important;
    border-color: #205d90 !important;}


    @media (max-width:767px){
       .services-page{padding:3rem 0}
    }

/* ==============================
   SECTION BACKGROUND
============================== */
.leadership-wrapper {
    background: linear-gradient(135deg, #023588, #16568a);
    padding: 80px 0;
}

/* ==============================
   LEFT IMAGE PANEL
============================== */
.left-image-panel {
    /* height: 100%; */
    min-height: auto;
    /* background-image: url(https://via.placeholder.com/600x900); */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ==============================
   MAIN WHITE CONTENT CARD
============================== */
.content-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Title */
.section-title-leader {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ==============================
   EDUCATION TIMELINE
============================== */
.timeline {
    border-left: 3px solid #023588;
    margin-left: 10px;
    padding-left: 25px;
}
.timeline-item {
    margin-bottom: 28px;
    position: relative;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -22px;
    background: #023588;
    border: 3px solid #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* ==============================
   TECH EXPERTISE TAGS
============================== */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-tags span {
    background: #023588;
    padding: 8px 18px;
    font-size: 14px;
    color: #fff;
    border-radius: 25px;
    transition: .3s;
}
.tech-tags span:hover {
    background: #16568a;
    transform: scale(1.05);
}

/* ==============================
   Fade In Animation
============================== */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== Hero Section ===== */
    .eng-model {
      position: relative;
      background: url('../images/our-approach.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 180px 20px 150px;
      background-attachment: fixed;
    }

    .eng-model::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
      z-index: 1;
    }

    .eng-model h1, .eng-model p {
      position: relative;
      z-index: 2;
    }

    .eng-model h1 {
      font-size: 3.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      animation: fadeInDown 1s ease forwards;
    }

    .eng-model p {
      font-size: 1.2rem;
      opacity: 0.95;
      margin-top: 10px;
      animation: fadeInUp 1.5s ease forwards;
    }



    /* ===== Animations ===== */
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .eng-model {
        padding: 140px 20px;
        background-attachment: scroll;
      }

      .eng-model h1 { font-size: 2.2rem; }
     
    }

/* Banner Section */
    .contact-banner {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('../images/contact-usbanner.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 100px 20px;
      animation: fadeIn 2s ease-in-out;
    }
    .contact-banner h1 {
      font-size: 3rem;
      font-weight: 600;
    }

    .contact-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-sectionn {

      margin: 60px auto;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }

    .contact-info {
      background: linear-gradient(135deg, #003580, #0056d6);
      color: #fff;
      flex: 1 1 45%;
      padding: 40px;
      transition: all 0.5s ease;
    }

    .contact-info:hover {
      transform: scale(1.02);
    }

    .contact-info h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact-info p {
      opacity: 0.9;
      margin-bottom: 25px;
    }

    .contact-info .info-item {
      margin-bottom: 20px;
    }

    .contact-info .info-item i {
      font-size: 22px;
      margin-right: 10px;
      color: #fff;
    }

    .contact-info .map-btn {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      padding: 12px 25px;
      transition: all 0.4s ease;
    }

    .contact-info .map-btn:hover {
      background-color: #0056d6;
      transform: translateY(-3px);
    }

    .contact-form-page {
      flex: 1 1 55%;
      padding: 40px;
    }

   .contact-form-page h3 {
      font-weight: 700;
      margin-bottom: 25px;
    }

      .contact-form-page .form-control {
      border-radius: 8px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

      .contact-form-page .form-control:focus {
      box-shadow: 0 0 5px rgba(0,86,214,0.5);
      transform: scale(1.02);
    }

      .contact-form-page .btn-send {
      background: linear-gradient(135deg, #003580, #0056d6);
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 20px;
      transition: all 0.4s ease;
    }

      .contact-form-page .btn-send:hover {
      background: #0045b0;
      transform: translateY(-3px);
    }

    @media (max-width: 992px) {
      .contact-section {
        flex-direction: column;
      }
.contact-form-page {
        flex: 1 1 100%;
      }
    }

    /* ===== Consult Md Page Css ===== */
    .consult-md-banner {
    background: linear-gradient(rgba(0, 0, 80, 0.6), rgba(0, 0, 50, 0.8)), url(https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1600&q=80) center / cover;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
    .consult-md-banner h1 {
      font-size: 3rem;
      font-weight: 600;
    }

     .consult-md-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
    }




    /* ===== Faq Banner Section ===== */
    .faq-banner {
      position: relative;
      width: 100%;
      height: 60vh;
      background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .faq-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .faq-banner-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.5s ease;
    }

    .faq-banner h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .faq-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* ===== FAQ Section ===== */
    .faq-section {
      max-width: 950px;
      margin: 60px auto;
      background: #fff;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
      animation: fadeInUp 1.5s ease;
    }

    .accordion-button {
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .accordion-button:hover {
      color: #007bff;
      background-color: #f1f7ff;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #ddd;
    }

    .accordion-button::after {
      transition: transform 0.3s ease;
    }

    .accordion-button.collapsed::after {
      transform: rotate(0deg);
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    /* ===== Animations ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== Icon Animation ===== */
    .faq-icon {
      font-size: 3rem;
      color: #f48a3b;
      animation: bounce 2s infinite;
    }
     .faq-icon i{color: #fff;}

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }

   

    @media (max-width: 767px) {
      .faq-banner {
        height: 45vh;
      }
      .faq-banner h1 {
        font-size: 2rem;
      }
      .faq-banner p {
        font-size: 1rem;
      }
    }


 /* Modal Animations */
    .modal.fade .modal-dialog {
      transform: scale(0.8) translateY(20px);
      opacity: 0;
      transition: all 0.3s ease-in-out;
    }
    .modal.fade.show .modal-dialog {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    .modal-content {
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      border: none;
    }
    .modal-header {
      background: linear-gradient(135deg, #0d6efd, #6c63ff);
      color: #fff;
      border-bottom: none;
    }
    .modal-body {
      background: #f9fbff;
    }
    .modal-footer {
      border-top: none;
      background: #f9fbff;
    }






     footer {
      background-color: #16568a;
      color: #fff;
    }
    footer a {
      color: #dbe8f5;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
      transition: color 0.3s ease;
      font-size: 0.95rem;
    }
    footer a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .email{display: inline !important;
    font-size: 14px !important;
    margin: 0px !important;
    font-style: initial;}

    .social-icons a {
      color: #fff;
      font-size: 1.4rem;
      margin-left: 12px;
      display: inline-block;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      color: #f1c40f;
      transform: scale(1.1);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 25px;
      padding-top: 15px;
      font-size: 0.9rem;
      color: #dbe8f5;
    }



      .thankyou-main {
      background: linear-gradient(135deg, #16568a, #4f3974);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    .thank-box {
      background: #ffffff;
      color: #333;
      padding: 40px;
      max-width: 500px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      animation: fadeIn 1.2s ease-in-out;
    }

    .thank-icon {
      font-size: 70px;
      color: #28a745;
      margin-bottom: 20px;
      animation: bounce 1.5s infinite;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .btn-home {
      background:#205186 !important;
      padding: 12px 28px !important;
      font-size: 16px !important;
      border-radius: 30px !important;
      color: #fff !important;
      transition: 0.3s !important;
    }

    .btn-home:hover {
      background: #0056b3 !important;
      color: #fff !important;
    }