/********** Template CSS **********/
:root {
    --primary: #ff6501;;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    padding:10px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 5px 0px 5px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}
    .navbar-expand-lg .navbar-nav {
        flex-wrap: wrap;
    }
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
      .logo-header{
            width:55px!important;
            height: 65px!important;
        }
        .logo-caption{
            font-size: 15px!important;
        }

}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
background: linear-gradient(rgba(255, 101, 1, 0.95), rgba(255, 101, 1, 0.95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}
#header-carousel{
    top:180px;
}
.list{
    list-style-type: none;
}
.text-success1{
    color: #ff6501;
}
.text-primary1{
    color: #ff6501;
}
.nav-tabs .nav-link.active{
    color:#ff6501!important;
}
.nav-tabs .nav-link{
    padding: 10px!important;
        font-size: 18px;
        color:#555!important;
}
.hdln{
    font-size: 32px;
}
 .btn-primary1{
    background-color: #ff6501;
    color:#fff;
 }
 .btn-primary1:hover{
     border:1px solid #ff6501;
 }
 .text-white1{
    color:#DFE4FD;
 }


    

        .faq-badge{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 110, 253, 0.08);
            color: var(--faq-primary);
            padding: 10px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .faq-title{
            font-size: 42px;
            line-height: 1.2;
            font-weight: 700;
            color: var(--faq-dark);
            margin-bottom: 16px;
        }

        .faq-subtitle{
            font-size: 17px;
            max-width: 540px;
            margin-bottom: 0;
        }

        .faq-side-card{
            background: var(--faq-card);
            border: 1px solid var(--faq-border);
            border-radius: var(--faq-radius);
            box-shadow: var(--faq-shadow);
            padding: 28px;
            height: 100%;
        }

        .faq-side-icon{
            width: 62px;
            height: 62px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0d6efd, #2563eb);
            color: #fff;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .faq-side-card h4{
            color: var(--faq-dark);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-side-card p{
            margin-bottom: 20px;
        }

        .faq-contact-list{
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .faq-contact-list li{
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--faq-dark);
            font-weight: 500;
        }

        .faq-contact-list i{
            color: var(--faq-primary);
            font-size: 18px;
        }

        .faq-wrap{
            background: rgba(255,255,255,0.65);
            border: 1px solid rgba(255,255,255,0.75);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 24px;
        }

        .accordion-item{
            border: 1px solid var(--faq-border) !important;
            border-radius: 16px !important;
            overflow: hidden;
            margin-bottom: 16px;
            background: var(--faq-card);
            box-shadow: var(--faq-shadow);
        }

        .accordion-button{
            background: #fff;
            color: var(--faq-dark);
            font-weight: 600;
            font-size: 17px;
            padding: 22px 24px;
            box-shadow: none !important;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .accordion-button:not(.collapsed){
            color: var(--faq-primary);
            background: #fff;
        }

        .accordion-button::after{
            display: none;
        }

        .faq-icon{
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(13, 110, 253, 0.08);
            color: var(--faq-primary);
            font-size: 18px;
        }

        .faq-arrow{
            margin-left: auto;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #f1f5f9;
            color: var(--faq-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .accordion-button:not(.collapsed) .faq-arrow{
            transform: rotate(180deg);
            background: var(--faq-primary);
            color: #fff;
        }

        .accordion-body{
            padding: 0 24px 24px 80px;
            color: var(--faq-text);
            font-size: 15.5px;
            line-height: 1.8;
        }

        .faq-footer-note{
            margin-top: 18px;
            font-size: 14px;
            color: #64748b;
        }

        @media (max-width: 991.98px){
            .faq-title{
                font-size: 32px;
            }

            .faq-side-card{
                margin-bottom: 24px;
            }
        }

        @media (max-width: 575.98px){
            .faq-section{
                padding: 60px 0;
            }

            .faq-wrap{
                padding: 14px;
                border-radius: 20px;
            }

            .accordion-button{
                padding: 18px 16px;
                font-size: 15px;
            }

            .accordion-body{
                padding: 0 16px 18px 16px;
            }

            .faq-icon{
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 15px;
            }

            .faq-title{
                font-size: 28px;
            }
        }

        .logo-header{
            width:85px;height: 95px;
        }

         .logo-caption{
            font-size:20px;
        }

        .semester-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: center; */
  align-items: stretch;
  /* padding: 20px; */
}

.semester-box {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.semester-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.semester-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0b4f6c;
}

.semester-box ol {
  padding-left: 20px;
  margin: 0;
}

.semester-box ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

 .course-wrapper {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 20px;
      /* padding: 20px; */
      max-width: 1200px;
      margin: auto;
      align-items: start;
    }

    .course-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .course-box:first-child {
      grid-row: span 3;
    }

    .course-box h2 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #0b4f6c;
      /* text-align: center; */
    }

    .course-box ol {
      margin: 0;
      padding-left: 20px;
    }

    .course-box ol li {
      margin-bottom: 10px;
      line-height: 1.6;
      color: #333;
    }

    @media (max-width: 768px) {
      .course-wrapper {
        grid-template-columns: 1fr;
      }

      .course-box:first-child {
        grid-row: auto;
      }
    }
    .team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
}

.team-card {
  width: 280px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.06);
}

.team-content {
  padding: 24px 20px;
  text-align: center;
}

.team-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #1e293b;
  font-weight: 600;
}

.designation {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.department {
  margin: 0;
  font-size: 15px;
  color: #ff6501;
  line-height: 1.6;
}

  .banner-section {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      margin: 40px 0;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .banner-section img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .banner-caption {
      color: #fff;
      max-width: 700px;
    }

    .banner-caption h1 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
          color: #fff;
    text-transform: uppercase;
    }

    .banner-caption p {
      font-size: 18px;
      margin-bottom: 0;
    }

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

    .gallery-card {
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
      transition: all 0.35s ease;
      background: #fff;
    }

    .gallery-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
    }

    .gallery-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

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

    @media (max-width: 768px) {
      .banner-section img {
        height: 280px;
      }

      .banner-caption h1 {
        font-size: 28px;
      }

      .banner-caption p {
        font-size: 15px;
      }

      .gallery-card img {
        height: 220px;
      }
    }

    .custom-split-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
}

.split-content {
  background: #011A41;

  min-height: 500px;
  padding: 40px;
}

.split-content h3 {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 420px;
  margin: 0 auto;
    color: #fff;
}

.lamp-icon {
  display: inline-block;
  margin-top: 30px;
  font-size: 2.2rem;
}

@media (max-width: 767.98px) {
  .split-image img,
  .split-content {
    min-height: 320px;
  }
  .split-content {
    padding: 30px 20px;
  }

  .split-content h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.custom-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .custom-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 575px) {
  .custom-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

  .contact-wrapper {
      width: 100%;
   
    }

    .premium-form {
      background: #ffffff;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .premium-form h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 8px;
    }

    .premium-form p {
      color: #6b7280;
      margin-bottom: 28px;
      font-size: 15px;
    }

    .form-control {
      height: 40px;
      border-radius: 14px;
      border: 1px solid #d9e1ec;
      padding: 14px 18px;
      font-size: 16px;
      color: #111827;
      background-color: #fff;
      box-shadow: none;
    }

    textarea.form-control {
      height: 100px;
      resize: none;
      padding-top: 16px;
    }

    .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.12);
    }

    .form-control::placeholder {
      color: #6b7280;
      opacity: 1;
    }

    .form-control::-webkit-input-placeholder {
      color: #6b7280;
      opacity: 1;
    }

    .form-control:-ms-input-placeholder {
      color: #6b7280;
    }

    .form-control::-ms-input-placeholder {
      color: #6b7280;
    }

    .word-count {
      font-size: 14px;
      color: #6c757d;
      margin-top: 8px;
    }

    .btn-premium {
      color:#ff6501;
      border: none;
      border-radius: 14px;
      padding: 14px 30px;
      font-size: 16px;
      font-weight: 600;
      transition: 0.3s ease;
      border:1px solid #d9e1ec;
         background-color: #fff;
    }

    .btn-premium:hover {
      background: #111827;
      color: #fff;
      transform: translateY(-2px);
    }

    @media (max-width: 576px) {
      .premium-form {
        padding: 24px 18px;
        border-radius: 16px;
      }

      .premium-form h2 {
        font-size: 26px;
      }
    }
    .btn-outline-black{
        color:#000;
        border:1px solid #000;
    }
    .text-white1:hover, .text-black:hover{
        color:#ff6501!important;
    }
     .btn-outline-black:hover{
        color:#fff;
        background-color: #000;
    }
     .btn-primary1:hover{
        background-color: #fff;
        color:#ff6501;
    }



    .image-card {
      height: 100%;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
      position: relative;
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: 450px;
      object-fit: cover;
      display: block;
    }

    .tabs-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
      height: 100%;
    }

    .custom-tabs {
      border-bottom: 1px solid #e5e7eb;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .custom-tabs .nav-link {
      border: 1px solid transparent;
      border-radius: 14px 14px 0 0;
      color: #374151;
      font-weight: 500;
      font-size: 18px;
      padding: 14px 18px;
      background: transparent;
      transition: all 0.3s ease;
    }

    .custom-tabs .nav-link:hover {
      color: #ea580c;
      background: #fff7ed;
    }

    .custom-tabs .nav-link.active {
      color: #ea580c;
      background: #fff;
      border-color: #e5e7eb #e5e7eb #fff;
    }

    .tab-content h3 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 18px;
      color: #111827;
    }

    .tab-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #4b5563;
      margin-bottom: 0;
    }

    .tab-pane {
      animation: fadeIn 0.35s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 991.98px) {
      .image-card img {
        min-height: 360px;
      }

      .tabs-card {
        margin-top: 24px;
      }

      .tab-content h3 {
        font-size: 26px;
      }

      .custom-tabs .nav-link {
        font-size: 16px;
        padding: 12px 14px;
      }
    }
 
    