    :root {
      --brand-blue: #2974bb;
      --brand-orange: #ef5b29;
      --text-dark: #333;
      --text-light: #555;
    }

    body {
      background-color: #ffffff !important;
    }

    .navbar {
      background-color: #f2f9ff;
      position: relative;
    }

    .logo {
      height: 40px;
    }

    .btn-demo {
      background: linear-gradient(to right, #267ac4, #ec6332);
      color: rgb(255, 255, 255);
      font-weight: bold;
      padding: 8px 20px;
      border-radius: 6px;
    }

    .btn-demo:hover {
      opacity: 0.9;
      color: white;
    }


    @media (max-width: 991px) {
      .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      }

      .navbar-nav .nav-link {
        padding: 10px 15px;
      }
    }


    .btn-demo:hover {
      background-color: #e64a19;
    }

    @media(min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    .form-section {
      background: #f1f3fb;
      border-radius: 15px;
      padding: 30px;
    }

    .form-section h2 {
      font-weight: 700;
      background: linear-gradient(to right, #2974bb, #ef5b29);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn-gradient {
      background: linear-gradient(to right, #2974bb, #ef5b29);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 10px;
    }

    .btn-gradient:hover {
      opacity: 0.9;
    }

    .image-box {
      text-align: center;
    }

    .image-box img {
      max-width: 100%;
      border-radius: 20px;
    }

    .card-img {
      transition: transform 0.5s ease;
    }

    .card:hover .card-img {
      transform: scale(1.1);
    }

    .badge-top {
      position: absolute;
      top: 15px;
      left: 15px;
      padding: 6px 12px;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
      border-radius: 6px;
    }

    .badge-purple {
      background: #7b2cbf;
    }

    .badge-blue {
      background: #0077b6;
    }

    .badge-orange {
      background: #f77f00;
    }

    .program-card {
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .program-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .overlay-info {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.7);
      color: #fff;
      padding: 8px;
      font-size: 14px;
      text-align: center;
    }


    .section-title {
      text-align: center;
      padding: 40px 20px 20px;
    }

    .section-title h2 {
      font-size: 28px;
      font-weight: 700;
      color: #333;
    }

    .section-title h2 span {
      color: #0070e9;
    }

    .section-title p {
      font-size: 16px;
      color: #666;
      margin-top: 8px;
    }

    .section-title .divider {
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #006ee4, #ef572b);
      margin: 12px auto;
      border-radius: 2px;
    }

    .owl-carousel .item {
      padding: 10px;
    }

    .owl-carousel .item img {
      width: 100%;
      height: 120px;
      object-fit: contain;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .owl-carousel .item img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .owl-dots {
      display: none !important;
    }


    .service-section {
      padding: 60px 0;
    }

    /* For mobile devices (max width 768px) */
    @media (max-width: 768px) {
      .image-box img {
        width: 100% !important;
      }
    }

    .image-box img {
      width: 80%;
      max-height: 450px;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .image-box img:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    .content-box {
      padding: 20px 10px;
    }

    .content-box h2 {
      font-weight: 700;
      font-size: 30px;
      background: linear-gradient(to right, #2974bb, #ef5b29);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    .content-box p {
      color: #444;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .btn-gradient {
      background: linear-gradient(to right, #2974bb, #ef5b29);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 12px 25px;
      font-size: 16px;
      text-decoration: none;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-gradient:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    .feature-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .feature-card .icon {
      font-size: 40px;
      color: #e63946;
      margin-bottom: 15px;
      transition: all 0.5s ease;
    }

    .feature-card h5 {
      font-weight: bold;
      margin-bottom: 12px;
      transition: all 0.5s ease;
    }

    .feature-card p {
      color: #444;
      font-size: 15px;
      transition: all 0.5s ease;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #2974bb, #ef5b29);
      z-index: 0;
      transition: all 1s ease;
    }

    .feature-card:hover::before {
      left: 0;
    }

    .feature-card:hover .icon,
    .feature-card:hover h5,
    .feature-card:hover p {
      color: #fff !important;
      position: relative;
      z-index: 1;
    }

    #about {
      background: #f9f9f9;
    }

    #about h2 {
      font-size: 2.2rem;
      line-height: 1.3;
    }

    #about h2 span.blue {
      color: var(--brand-blue);
    }

    #about h2 span.orange {
      color: var(--brand-orange);
    }

    #about p {
      color: var(--text-light);
      font-size: 1rem;
      line-height: 1.8;
      text-align: justify;
    }

    #about .btn-blue,
    #about .btn-orange {
      border-radius: 50px;
      padding: 12px 28px;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    #about .btn-blue {
      background: var(--brand-blue);
      color: #fff;
    }

    #about .btn-blue:hover {
      background: #1e5a91;
      transform: translateY(-2px);
    }

    #about .btn-orange {
      background: var(--brand-orange);
      color: #fff;
    }

    #about .btn-orange:hover {
      background: #c9451e;
      transform: translateY(-2px);
    }

    #about .stats-box {
      background: #fff;
      border-radius: 16px;
      padding: 25px 15px;
      transition: all 0.3s ease;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    }

    #about .stats-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
    }

    #about .stats-box h4 {
      margin: 0;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--brand-blue);
    }

    #about .stats-box small {
      display: block;
      margin-top: 5px;
      font-size: 0.85rem;
      color: var(--text-light);
    }

    /* 3D Hover Image Effect */
    #about .tilt-img {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      transform-style: preserve-3d;
      perspective: 1000px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      border-radius: 15px;
    }

    #about .tilt-img:hover {
      box-shadow: 0 20px 40px rgba(41, 116, 187, 0.4),
        0 0 50px rgba(239, 91, 41, 0.5);
    }


    @media (min-width: 768px) and (max-width: 991px) {
      .image-box img {
        object-fit: contain;
      }
    }



    @media (min-width: 768px) and (max-width: 991px) {
      #about img {
        height: 660px;
        object-fit: cover;
      }
    }

    /* Background Overlay */
    .contact-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgb(209 212 214);
      z-index: 0;
    }

    /* Contact Card (3D Glass Effect) */
    .contact-form-box {
      z-index: 1;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      transform-style: preserve-3d;
      transition: all 0.4s ease-in-out;
    }

    .contact-form-box:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    }

    .contact-form-box .form-control {
      border-radius: 8px;
      border: 1px solid #ddd;
      padding: 12px;
      font-size: 15px;
      color: #333;
      transition: all 0.3s ease;
    }

    .contact-form-box .form-control:focus {
      border-color: #2974bb;
      box-shadow: 0 0 12px rgba(41, 116, 187, 0.4);
    }

    .contact-form-box button {
      background: linear-gradient(135deg, #2974bb, #ef5b29);
      border: none;
      border-radius: 10px;
      padding: 12px;
      font-size: 16px;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(239, 91, 41, 0.5);
      transition: all 0.3s ease;
    }

    .contact-form-box button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(239, 91, 41, 0.7);
    }

    /* Info Boxes */
    .info-box {
      background: linear-gradient(135deg, #2974bb, #1a4c80);
      border-radius: 12px;
      z-index: 1;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease-in-out;
    }

    .info-box:hover {
      background: linear-gradient(to right, #2974bb, #ef5b29);
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

    .info-box i {
      transition: transform 0.3s ease;
    }

    .info-box:hover i {
      transform: rotateY(360deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-form-box {
        padding: 20px;
      }

      .info-box {
        text-align: left;
      }
    }

    .footer {
      margin-top: 0%;
      background: #f3f8fc;
      color: #333;
      padding: 50px 0;
    }

    .footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
      color: #0d6efd;
    }

    .footer a {
      color: #333;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: 0.3s;
    }

    .footer a:hover {
      color: #0d6efd;
      padding-left: 5px;
    }

    .footer .social-icons a {
      font-size: 18px;
      color: #fff;
      background: #0d6efd;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 10px;
      transition: 0.3s;
    }

    .footer .social-icons a:hover {
      background: #0b5ed7;
      transform: scale(1.1);
    }

    .footer .logo img {
      max-width: 300px;
      margin-bottom: 20px;
    }

    .footer p {
      margin-top: 10%;
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #ddd;
      font-size: 14px;
    }

    .bg-primary-custom {
      background-color: #2974bb !important;
    }

    .text-accent {
      color: #ef5b29;
      font-weight: bold;
    }

    .highlight {
      background: linear-gradient(90deg, #006ce1 40%, #ef5b29 100%);
      color: #fff;
      padding: 2px 8px;
      border-radius: .25rem;
      font-weight: bold;
    }

    .banner {
      background-color: #2974bb;
      border-radius: 1rem 1rem 0 0;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .card-custom {
      box-shadow: 0 4px 24px rgba(41, 116, 187, .06);
      border-radius: 1rem;
      border: none;
      padding: 2rem;
      background: #fff;
    }

    .card-custom h2,
    .card-custom h5 {
      color: #2974bb;
      font-weight: bold;
    }

    @media (max-width: 767.98px) {
      .card-custom {
        padding: 1rem;
      }
    }