  body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff8f3;
    }
    .hero {
      /* background: linear-gradient(to right, #A91D54, #DBA28F); */
      background: linear-gradient(to right, #313C4A, #FF6714);
      color: white;
      padding: 80px 20px;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .section-title {
      color: #A91D54;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .what-learn i {
      font-size: 2rem;
      color: #A91D54;
    }
    .card:hover {
      transform: scale(1.03);
      transition: 0.3s ease-in-out;
    }
    .cta-buttons .btn {
      margin: 10px;
      border-radius: 50px;
    }
    .career-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 15px;
    }
    .why-us {
      background-color: #fff0e6;
      padding: 40px;
      border-radius: 20px;
    }
    .sticky-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }
    .sticky-cta a {
      font-weight: bold;
    }
 
    .social-icon {
        background-color: #313C4A;
        text-decoration: none;

    }
 .social-icon:hover {
  background-color: #FF6714; /* Or your brand color */
  color: #000 !important;
  border-color: #FF6714;
  transition: all 0.3s ease;
}
 
        .navbar {
            /* background-color: #FFCD35;; */
            /* background-color: #333333; */
            /* background-color: #FFCD35; */
            /* background-color: #FFCD35; */
            /* background-color: #ff6714; */
            /* background-color: #313C4A; */
            background-color: #FFFFFF;
        }

        .card-title {
            font-size: 22px;
        }

        .navbar-brand,
        .nav-link {
            color: #313C4A !important;
        }

        .hero-section {
            background-color: #FEEFDF;
            padding: 5px 0;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #ff6714;
        }

        .hero-form {
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background-color: #ff6714;
            border: none;
        }

        .btn-primary:hover {
            background-color: #313C4A;
        }

        footer {
            background-color: #ff6714;
            color: white;
            padding: 20px 0;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 24px;
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section-title {
            color: #ff6714;
            ;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .section-title-2 {
            color: #313C4A;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .college-name {
            font-size: 2rem;
            color: #FFFFFF;
            animation: glowZoom 2s ease-in-out infinite alternate;
        }

        @keyframes glowZoom {
            0% {
                text-shadow: 0 0 5px #DBA28F, 0 0 10px #FFCD35;
                ;
                transform: scale(1);
            }

            100% {
                text-shadow: 0 0 15px #FFC800, 0 0 25px #FFCD35;
                ;
                transform: scale(1.05);
            }
        }

.hero-section {
            position: relative;
        }

        /* Dark overlay on carousel images */
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            /* Adjust opacity as needed */
            z-index: 1;
        }

        /* Hero text */
        .hero-text {
            position: absolute;
            top: 40%;
            left: 5%;
            z-index: 2;
            color: #fff;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-top: 10px;
        }

        /* Form styling */
        .hero-form-container {
            position: absolute;
            top: 30px;
            right: 50px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 10px;
            width: 320px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {

            .hero-form-container,
            .hero-text {
                position: static;
                width: 100%;
                margin: 20px auto;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }
        }

        .program-overview {
            background-color: #313C4A;
            padding: 50px 20px;
            text-align: center;
        }

        /* .program-overview h2 {
      color: white;
      font-size: 2rem;
      margin-bottom: 40px;
    } */

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .feature-box {
            width: 180px;
            height: 180px;
            border: 2px dashed white;
            border-radius: 50%;
            padding: 20px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .feature-box p{
            font-weight: 600;
        }

        /*.feature-box::before {*/
        /*    content: "";*/
        /*    position: absolute;*/
        /*    top: -8px;*/
        /*    left: -8px;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    border-radius: 50%;*/
        /*    border-top: 6px solid #ffffff;*/
        /*    border-right: 6px solid transparent;*/
        /*    border-bottom: 6px solid transparent;*/
        /*    border-left: 6px solid transparent;*/
        /*    animation: rotateArc 3s linear infinite;*/
        /*}*/

        @keyframes rotateArc {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .feature-box h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .feature-box p {
            font-size: 0.9rem;
            line-height: 1.2;
        }

        .pathway-line {
            height: 3px;
            background: #ccc;
            position: relative;
            margin: 50px 0;
        }

        .pathway-line .circle {
            width: 25px;
            height: 25px;
            border: 4px solid white;
            background: #6c5ce7;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .pathway-line .circle:nth-child(1) {
            left: 20%;
            background: #6c5ce7;
        }

        .pathway-line .circle:nth-child(2) {
            left: 50%;
            background: #fdcb6e;
        }

        .pathway-line .circle:nth-child(3) {
            left: 80%;
            background: #00b894;
        }

        .card-custom {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            border-radius: 20px;
            padding: 30px;
            margin: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card-custom.orange {
            background: linear-gradient(135deg, #fd7e14, #ffa502);
        }

        .card-custom.green {
            background: linear-gradient(135deg, #00b894, #55efc4);
        }

        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
        }

        .arrow {
            font-size: 50px;
            margin: 20px 0;
            color: white;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li::before {
            content: "\f111";
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 10px;
            font-size: 10px;
            color: white;
        }

        @media (max-width: 768px) {
            .pathway-line {
                display: none;
            }

            .arrow {
                transform: rotate(90deg);
            }
        }


        .pipeline-step {
            text-align: center;
            margin: 1rem;
        }

        .pipeline-step img {
            width: 60px;
            margin-bottom: 0.5rem;
            background-color: #FFCD35;
            border-radius: 50%;
        }

        .pipeline-line {
            border-top: 2px dashed white;
            margin: 1rem 0;
        }

        .character-img {
            max-width: 250px;
            border-radius: 50%;
            background: #fff;
            padding: 1rem;
            margin: 1rem auto;
            display: block;
        }

        .cta-video-section {
            height: 30vh;
            overflow: hidden;
            position: relative;
            background-color: #FF6714;
        }

        .bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
        }

        .bg-fallback {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .content-container {
            z-index: 2;
        }

        .overlay {
            z-index: 1;
        }

        .cta-video-section h2,
        .cta-video-section p {
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .btn-warning {
            background-color: #ffcf00;
            border: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .btn-warning:hover {
            transform: scale(1.05);
            background-color: #ffc107;
        }

        .contact-section {
            background-image: url('your-background.jpg');
            /* Replace with your background */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            color: #fff;
        }

        .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }

        .contact-section .container {
            z-index: 2;
        }

        .contact-section input,
        .contact-section textarea {
            transition: all 0.3s ease;
        }

        .contact-section input:focus,
        .contact-section textarea:focus {
            border-color: #ffc107;
            box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
        }

        .contact-section .btn-warning {
            background-color: #ffc107;
            border: none;
            transition: all 0.3s ease;
        }

        .contact-section .btn-warning:hover {
            background-color: #ffca2c;
            transform: scale(1.05);
        }


        /* style.css */

        /* Parallax Background */
        .parallax-bg {
            background: url('your-parallax-background.jpg') no-repeat center center;
            background-size: cover;
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100%;
            z-index: 0;
            opacity: 0.2;
            pointer-events: none;
        }

        /* Feature Cards */
        .feature-card {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            background-color: #FF6714;
            color: white;
            margin: 10px;
            padding: 20px 10px;
            font-weight: bold;
            text-align: center;
            border-radius: 12px;
            min-height: 200px;
            min-width: 80px;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-card:hover {
            background-color: white;
            color: #FF6714;
            transform: rotate(180deg) scale(1.05);
            box-shadow: 0 0 20px #FF6714;
        }

        /* Card Image Styling */
        .card img {
            object-fit: cover;
            height: 250px;
        }

        /* Section background */
        /* section {
  background: linear-gradient(135deg, #313C4A 0%, #212832 100%);
  position: relative;
  overflow: hidden;
} */

        .enquiry-modal {
            background: linear-gradient(135deg, #1e1e60, #7f00ff);
            color: white;
            border-radius: 1rem;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-light {
            font-weight: 600;
        }
         /* Course Section */
        .course-section {
            /* background: linear-gradient(to right, #111, #330f15); */
            background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
            /* background: linear-gradient(to right, #3a1c71, #d76d77, #ffaf7b); */
            padding: 50px 0;
            margin-bottom: 10px;
        }

        .course-container {
            display: flex;
            max-width: 1200px;
            margin: auto;
            gap: 40px;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .course-image img {
            max-width: 100%;
            border-radius: 5px;
        }

        .course-content {
            flex: 1;
            color: #fff;
        }

        .course-content h2 {
            font-size: 30px;
            color: #ffc107;
            margin-bottom: 15px;
        }

        .course-content p {
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .course-content hr {
            border: 0;
            border-top: 1px solid #770d2b;
            margin: 20px 0;
        }

        .course-content h4 {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .join-btn {
            background: transparent;
            border: 2px solid #ffc107;
            color: #ffc107;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 25px;
            cursor: pointer;
            transition: 0.3s;
        }

        .join-btn:hover {
            background-color: #ffc107;
            color: #000;
        }

        .framed {
            box-shadow: -50px -50px 0 -40px var(--red), 50px 50px 0 -40px var(--red);
        }